From eff4b89cff4e1b8fcceb23c54cb62ec636ce62fe Mon Sep 17 00:00:00 2001 From: Lukasz Kasprzak Date: Wed, 19 Aug 2026 07:47:30 +0200 Subject: feat(render): per-flavour escaping and RFC 5545 line folding Six flavours: latex, groff, html, xml, ics, none. Markdown, AsciiDoc and plain text map to none deliberately -- their metacharacters are context-dependent and escaping them aggressively produces worse output than not escaping. An unrecognised extension returns None rather than falling back to none: guessing the flavour wrong produces malformed output that looks fine until it does not. Folding backs off to a non-continuation byte, so a fold never splits a UTF-8 sequence -- the failure mode that would corrupt Polish and Latin names in a published feed. --- test/dune | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/dune') diff --git a/test/dune b/test/dune index e20450b..1ef1b57 100644 --- a/test/dune +++ b/test/dune @@ -1,6 +1,6 @@ (test (name test_colitur) - (libraries colitur_kernel rite_ef alcotest qcheck qcheck-alcotest sexplib) + (libraries colitur_kernel colitur_render rite_ef alcotest qcheck qcheck-alcotest sexplib) (deps ../data/ef/sanctoral.sexp ../data/ef/adjustments.sexp -- cgit v1.3 From 27a8fbdf738f7fdb4c9a42ec99f08855dbed440b Mon Sep 17 00:00:00 2001 From: Lukasz Kasprzak Date: Wed, 19 Aug 2026 09:47:41 +0200 Subject: feat(templates): ordo booklet in six flavours, pinned by goldens LaTeX and groff are the print paths; HTML carries a print stylesheet; AsciiDoc, Markdown and plain text are the plain-consumer paths. AsciiDoc and Markdown use flavour none, and say so in a comment: their metacharacters are context-dependent and escaping them aggressively produces worse output than not escaping. The consequence is real and documented -- a feast name containing * renders as emphasis. Golden tests pin all six byte-for-byte for 2027. They prove the templates RENDER, not that they TYPESET; compiling needs TeX and groff, which is Task 13's opt-in make check-templates. --- templates/ef/ordo.adoc | 25 + templates/ef/ordo.html | 28 + templates/ef/ordo.md | 23 + templates/ef/ordo.ms | 27 + templates/ef/ordo.tex | 33 + templates/ef/ordo.txt | 10 + test/dune | 14 +- test/golden/ordo-2027.adoc | 2365 +++++++++++++++++++++++++++++ test/golden/ordo-2027.html | 1859 +++++++++++++++++++++++ test/golden/ordo-2027.md | 2122 ++++++++++++++++++++++++++ test/golden/ordo-2027.ms | 3604 ++++++++++++++++++++++++++++++++++++++++++++ test/golden/ordo-2027.tex | 2737 +++++++++++++++++++++++++++++++++ test/golden/ordo-2027.txt | 1986 ++++++++++++++++++++++++ test/test_colitur.ml | 3 +- test/test_render_golden.ml | 40 + 15 files changed, 14874 insertions(+), 2 deletions(-) create mode 100644 templates/ef/ordo.adoc create mode 100644 templates/ef/ordo.html create mode 100644 templates/ef/ordo.md create mode 100644 templates/ef/ordo.ms create mode 100644 templates/ef/ordo.tex create mode 100644 templates/ef/ordo.txt create mode 100644 test/golden/ordo-2027.adoc create mode 100644 test/golden/ordo-2027.html create mode 100644 test/golden/ordo-2027.md create mode 100644 test/golden/ordo-2027.ms create mode 100644 test/golden/ordo-2027.tex create mode 100644 test/golden/ordo-2027.txt create mode 100644 test/test_render_golden.ml (limited to 'test/dune') diff --git a/templates/ef/ordo.adoc b/templates/ef/ordo.adoc new file mode 100644 index 0000000..13d09ec --- /dev/null +++ b/templates/ef/ordo.adoc @@ -0,0 +1,25 @@ +// colitur ordo booklet -- AsciiDoc. flavour: none (see man colitur-overlay) +// AsciiDoc's own metacharacters (*, _, +, `, ...) are context-dependent, so +// this template's flavour deliberately does NOT escape interpolated values. +// A feast name containing `*` or `_` will render as emphasis. That is a +// documented limitation, not a bug to fix. +// +// Day label falls back to the slug when the day carries no Latin name (most +// temporal days, and most sanctoral entries, which are Latin-less in the +// shipped data) -- see ordo.tex's own comment for why the fallback is +// written as a name-section wrapping a plain var and its inverse, rather +// than a single dotted lookup and its inverse. += Ordo {{year}} · {{rite}} +:toc: + +{{#months}} +== {{name.la}} + +{{#days}} +*{{dom}}* {{#name}}{{la}}{{^la}}{{slug}}{{/la}}{{/name}} + +{{rank}} · {{colour}} + +{{#first}}Ep. {{first}} {{/first}}{{#gospel}}Ev. {{gospel}}{{/gospel}} +{{#comms}} + +Com. {{slug}}{{/comms}} + +{{/days}}{{/months}} diff --git a/templates/ef/ordo.html b/templates/ef/ordo.html new file mode 100644 index 0000000..e516816 --- /dev/null +++ b/templates/ef/ordo.html @@ -0,0 +1,28 @@ + + + + +Ordo {{year}} + +

Ordo {{year}} · {{rite}}

+{{#months}}

{{name.la}}

+{{#days}}
+ {{dom}}{{#name}}{{la}}{{^la}}{{slug}}{{/la}}{{/name}} +
{{rank}} · {{colour}}{{#first}} · Ep. {{first}}{{/first}}{{#gospel}} · Ev. {{gospel}}{{/gospel}}
+ {{#comms}}
Com. {{slug}}
{{/comms}} +
+{{/days}}{{/months}} + diff --git a/templates/ef/ordo.md b/templates/ef/ordo.md new file mode 100644 index 0000000..606ea01 --- /dev/null +++ b/templates/ef/ordo.md @@ -0,0 +1,23 @@ + + + +# Ordo {{year}} · {{rite}} + +{{#months}} +## {{name.la}} + +{{#days}} +**{{dom}}** {{#name}}{{la}}{{^la}}{{slug}}{{/la}}{{/name}} +`{{rank}}` · {{colour}}{{#first}} · Ep. {{first}}{{/first}}{{#gospel}} · Ev. {{gospel}}{{/gospel}} +{{#comms}} +- Com. {{slug}} +{{/comms}} + +{{/days}}{{/months}} diff --git a/templates/ef/ordo.ms b/templates/ef/ordo.ms new file mode 100644 index 0000000..db9b9fc --- /dev/null +++ b/templates/ef/ordo.ms @@ -0,0 +1,27 @@ +.\" colitur ordo booklet -- groff ms. flavour: groff +.\" Build: colitur table --year 2027 --template ordo.ms | groff -ms -Tpdf > ordo.pdf +.\" +.\" Day label falls back to the slug when the day carries no Latin name (most +.\" temporal days, and most sanctoral entries, which are Latin-less in the +.\" shipped data) -- see ordo.tex's own comment for why the fallback is +.\" written as a name-section wrapping a plain var and its inverse, rather +.\" than a single dotted lookup and its inverse. +.TL +ORDO {{year}} \(bu {{rite}} +{{#months}} +.SH +{{name.la}} +.LP +{{#days}} +.IP "{{dom}}" 4 +{{#name}}{{la}}{{^la}}{{slug}}{{/la}}{{/name}} +.br +\s-2{{rank}} \(bu {{colour}}\s+2 +{{#first}}.br +\s-2Ep. {{first}}\s+2 +{{/first}}{{#gospel}}.br +\s-2Ev. {{gospel}}\s+2 +{{/gospel}}{{#comms}}.br +\s-2Com. {{slug}}\s+2 +{{/comms}}{{/days}} +{{/months}} diff --git a/templates/ef/ordo.tex b/templates/ef/ordo.tex new file mode 100644 index 0000000..6012753 --- /dev/null +++ b/templates/ef/ordo.tex @@ -0,0 +1,33 @@ +% colitur ordo booklet -- LaTeX. flavour: latex +% Build: colitur table --year 2027 --template ordo.tex > ordo.tex && pdflatex ordo.tex +% +% Day label falls back to the slug when the day carries no Latin name (most +% temporal days, and most sanctoral entries, which are Latin-less in the +% shipped data). The fallback is written as a name-section wrapping a plain +% var and its inverse, deliberately NOT as a single dotted-path lookup +% followed by its own inverse: a dotted lookup that misses climbs to the +% enclosing scope for the WHOLE path, and the month object also carries a +% same-named key one level up, so the naive form would render the month's +% own Latin name on every day lacking one, and never fall back at all. +\documentclass[10pt,twoside]{article} +\usepackage[a5paper,margin=15mm]{geometry} +\usepackage[T1]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage{fancyhdr} +\pagestyle{fancy} +\fancyhead[C]{ORDO {{year}} \textperiodcentered\ {{rite}}} +\setlength{\parindent}{0pt} +\begin{document} +{{#months}} +\section*{ {{name.la}} } +{{#days}} +\textbf{ {{dom}} } \quad {{#name}}{{la}}{{^la}}{{slug}}{{/la}}{{/name}}\\ +\small {{rank}} \textperiodcentered\ {{colour}}\\ +{{#first}}\small Ep. {{first}}\quad{{/first}}{{#gospel}}\small Ev. {{gospel}}{{/gospel}}\\ +{{#comms}}\small Com. {{slug}}\\ +{{/comms}} +\medskip + +{{/days}} +{{/months}} +\end{document} diff --git a/templates/ef/ordo.txt b/templates/ef/ordo.txt new file mode 100644 index 0000000..aba121a --- /dev/null +++ b/templates/ef/ordo.txt @@ -0,0 +1,10 @@ +{{#months}} +{{name.la}} {{year}} +{{#days}} +{{dom}} {{slug}} + {{rank}} · {{colour}} +{{#first}} Ep. {{first}} +{{/first}}{{#gospel}} Ev. {{gospel}} +{{/gospel}}{{#comms}} Com. {{slug}} +{{/comms}}{{/days}} +{{/months}} diff --git a/test/dune b/test/dune index 1ef1b57..504a639 100644 --- a/test/dune +++ b/test/dune @@ -12,7 +12,19 @@ fixtures/lectio-ef-2005-2050.txt fixtures/missalemeum-ef-2026-2027.txt fixtures/missalemeum-ef-2038.txt - fixtures/missalemeum-ef-2035.txt) + fixtures/missalemeum-ef-2035.txt + ../templates/ef/ordo.tex + ../templates/ef/ordo.ms + ../templates/ef/ordo.html + ../templates/ef/ordo.adoc + ../templates/ef/ordo.md + ../templates/ef/ordo.txt + golden/ordo-2027.tex + golden/ordo-2027.ms + golden/ordo-2027.html + golden/ordo-2027.adoc + golden/ordo-2027.md + golden/ordo-2027.txt) (preprocess (pps ppx_sexp_conv))) diff --git a/test/golden/ordo-2027.adoc b/test/golden/ordo-2027.adoc new file mode 100644 index 0000000..5a8e2f5 --- /dev/null +++ b/test/golden/ordo-2027.adoc @@ -0,0 +1,2365 @@ +// colitur ordo booklet -- AsciiDoc. flavour: none (see man colitur-overlay) +// AsciiDoc's own metacharacters (*, _, +, `, ...) are context-dependent, so +// this template's flavour deliberately does NOT escape interpolated values. +// A feast name containing `*` or `_` will render as emphasis. That is a +// documented limitation, not a bug to fix. +// +// Day label falls back to the slug when the day carries no Latin name (most +// temporal days, and most sanctoral entries, which are Latin-less in the +// shipped data) -- see ordo.tex's own comment for why the fallback is +// written as a name-section wrapping a plain var and its inverse, rather +// than a single dotted lookup and its inverse. += Ordo 2027 · ef +:toc: + + +== Ianuarius + + +*1* ef-circumcision + +class-1 · white + +Ep. Titus 2:11-15 Ev. Luke 2:21 + + + +*2* Officium sanctae Mariae in sabbato + +class-4 · white + +Ep. Titus 3:4-7 Ev. Luke 2:15-20 + + + +*3* Sanctissimi Nominis Iesu + +class-2 · white + +Ep. Acts 4:8-12 Ev. Luke 2:21 + + + +*4* ef-christmas-1-monday + +class-4 · white + +Ep. Titus 2:11-15 Ev. Luke 2:21 + + + +*5* ef-christmas-1-tuesday + +class-4 · white + +Ep. Titus 2:11-15 Ev. Luke 2:21 + + +Com. telesphorus-pope-and-martyr + + +*6* ef-epiphany + +class-1 · white + +Ep. Isa 60:1-6 Ev. Matt 2:1-12 + + + +*7* ef-christmas-2-thursday + +class-4 · white + +Ep. Isa 60:1-6 Ev. Matt 2:1-12 + + + +*8* ef-christmas-2-friday + +class-4 · white + +Ep. Isa 60:1-6 Ev. Matt 2:1-12 + + + +*9* Officium sanctae Mariae in sabbato + +class-4 · white + +Ep. Titus 3:4-7 Ev. Luke 2:15-20 + + + +*10* Sanctae Familiae Iesu, Mariae, Ioseph + +class-2 · white + +Ep. Col 3:12-17 Ev. Luke 2:42-52 + + + +*11* ef-time-after-epiphany-1-monday + +class-4 · white + +Ep. Rom 12:1-5 Ev. Luke 2:42-52 + + +Com. hyginus-pope-and-martyr + + +*12* ef-time-after-epiphany-1-tuesday + +class-4 · white + +Ep. Rom 12:1-5 Ev. Luke 2:42-52 + + + +*13* commemoration-of-the-baptism-of-the-lord + +class-2 · white + +Ep. Isa 60:1-6 Ev. John 1:29-34 + + + +*14* hilary + +class-3 · white + +Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 + + +Com. felicis + + +*15* paul-the-first-hermit + +class-3 · white + +Ep. Phil 3:7-12 Ev. Matt 11:25-30 + + +Com. maur-abbot + + +*16* marcellus-i + +class-3 · red + +Ep. 1 Pet 5:1-4; 5:10-11. Ev. Matt 16:13-19 + + + +*17* ef-time-after-epiphany-sunday-2 + +class-2 · green + +Ep. Rom 12:6-16 Ev. John 2:1-11 + + + +*18* ef-time-after-epiphany-2-monday + +class-4 · green + +Ep. Rom 12:6-16 Ev. John 2:1-11 + + +Com. prisca + + +*19* ef-time-after-epiphany-2-tuesday + +class-4 · green + +Ep. Rom 12:6-16 Ev. John 2:1-11 + + +Com. canute-martyr + +Com. sts-marius-martha-audifax-abachum + + +*20* sts-fabian-sebastian + +class-3 · red + +Ep. Heb 11:33-39 Ev. Luke 6:17-23 + + + +*21* agnes + +class-3 · red + +Ep. Sir 51:1-8; 51:12 Ev. Matt 25:1-13. + + + +*22* sts-vincent-anastasius + +class-3 · red + +Ep. Wis 3:1-8 Ev. Luke 21:9-19 + + + +*23* raymond-of-pe-afort + +class-3 · white + +Ep. Sir 31:8-11 Ev. Luke 12:35-40 + + +Com. emerentiana + + +*24* ef-septuagesima-sunday-1 + +class-2 · violet + +Ep. 1 Cor. 9:24-27; 10:1-5 Ev. Matt 20:1-16 + + + +*25* conversion-of-st-paul + +class-3 · white + +Ep. Acts 9:1-22 Ev. Matt 19:27-29. + + +Com. peter + + +*26* polycarp + +class-3 · red + +Ep. 1 John 3:10-16 Ev. Matt 10:26-32. + + + +*27* john-chrysostom + +class-3 · white + +Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 + + + +*28* peter-nolasco + +class-3 · white + +Ep. 1 Cor. 4:9-14 Ev. Luke 12:32-34 + + +Com. agnes-secundo + + +*29* francis-de-sales + +class-3 · white + +Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 + + + +*30* martina + +class-3 · red + +Ep. Sir 51:1-8; 51:12 Ev. Matt 25:1-13. + + + +*31* ef-septuagesima-sunday-2 + +class-2 · violet + +Ep. 2 Cor. 11:19-33; 12:1-9 Ev. Luke 8:4-15 + + + +== Februarius + + +*1* ignatius-of-antioch + +class-3 · red + +Ep. Rom 8:35-39 Ev. John 12:24-26 + + + +*2* purification-of-the-blessed-virgin-mary + +class-2 · white + +Ep. Mal 3:1-4 Ev. Luke 2:22-32 + + + +*3* ef-septuagesima-2-wednesday + +class-4 · violet + +Ep. 2 Cor. 11:19-33; 12:1-9 Ev. Luke 8:4-15 + + +Com. blaise + + +*4* andrew-corsini + +class-3 · white + +Ep. Sir 44:16-27; 45:3-20 Ev. Matt 25:14-23 + + + +*5* agatha + +class-3 · red + +Ep. 1 Cor. 1:26-31 Ev. Matt 19:3-12. + + + +*6* titus + +class-3 · white + +Ep. Sir 44:16-27; 45:3-20 Ev. Luke 10:1-9 + + +Com. dorothy + + +*7* ef-septuagesima-sunday-3 + +class-2 · violet + +Ep. 1 Cor. 13:1-13 Ev. Luke 18:31-43 + + + +*8* john-of-matha + +class-3 · white + +Ep. Sir 31:8-11 Ev. Luke 12:35-40 + + + +*9* cyril-of-alexandria + +class-3 · white + +Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 + + +Com. appollonia + + +*10* ef-ash-wednesday + +class-1 · violet + +Ep. Joel 2:12-19 Ev. Matt 6:16-21 + + + +*11* ef-lent-after-ashes-thursday + +class-3 · violet + +Ep. Isa 38:1-6 Ev. Matt 8:5-13 + + +Com. our-lady-of-lourdes + + +*12* ef-lent-after-ashes-friday + +class-3 · violet + +Ep. Isa 58:1-9 Ev. Matt 5:43-48; 6:1-4 + + +Com. seven-holy-servite-founders + + +*13* ef-lent-after-ashes-saturday + +class-3 · violet + +Ep. Isa 58:9-14 Ev. Mark 6:47-56 + + + +*14* ef-lent-sunday-1 + +class-1 · violet + +Ep. 2 Cor. 6:1-10 Ev. Matt 4:1-11 + + + +*15* ef-lent-1-monday + +class-3 · violet + +Ep. Ezech 34:11-16 Ev. Matt 25:31-46 + + +Com. sts-faustinus-jovita + + +*16* ef-lent-1-tuesday + +class-3 · violet + +Ep. Isa 55:6-11 Ev. Matt 21:10-17 + + + +*17* ef-lent-ember-wed + +class-2 · violet + +Ep. 3 Kgs. 19:3-8 Ev. Matt 12:38-50 + + + +*18* ef-lent-1-thursday + +class-3 · violet + +Ep. Ezech 18:1-9 Ev. Matt 15:21-28 + + +Com. simeon + + +*19* ef-lent-ember-fri + +class-2 · violet + +Ep. Ezech 18:20-28 Ev. John 5:1-15 + + + +*20* ef-lent-ember-sat + +class-2 · violet + +Ep. 1 Thess. 5:14-23 Ev. Matt 17:1-9 + + + +*21* ef-lent-sunday-2 + +class-1 · violet + +Ep. 1 Thess. 4:1-7 Ev. Matt 17:1-9 + + + +*22* chair-of-st-peter + +class-2 · white + +Ep. 1 Pet 1:1-7 Ev. Matt 16:13-19 + + +Com. ef-lent-2-monday + +Com. paul + + +*23* ef-lent-2-tuesday + +class-3 · violet + +Ep. 3 Kings 17:8-16 Ev. Matt 23:1-12 + + +Com. peter-damien + + +*24* matthias + +class-2 · red + +Ep. Acts 1:15-26 Ev. Matt 11:25-30 + + +Com. ef-lent-2-wednesday + + +*25* ef-lent-2-thursday + +class-3 · violet + +Ep. Jer 17:5-10 Ev. Luke 16:19-31 + + + +*26* ef-lent-2-friday + +class-3 · violet + +Ep. Gen 37:6-22 Ev. Matt 21:33-46 + + + +*27* ef-lent-2-saturday + +class-3 · violet + +Ep. Gen 27:6-40 Ev. Luke 15:11-32 + + +Com. gabriel-of-our-lady-of-sorrows + + +*28* ef-lent-sunday-3 + +class-1 · violet + +Ep. Eph 5:1-9 Ev. Luke 11:14-28 + + + +== Martius + + +*1* ef-lent-3-monday + +class-3 · violet + +Ep. 4 Kings 5:1-15 Ev. Luke 4:23-30 + + + +*2* ef-lent-3-tuesday + +class-3 · violet + +Ep. 4 Kings 4:1-7 Ev. Matt 18:15-22 + + + +*3* ef-lent-3-wednesday + +class-3 · violet + +Ep. Ex 20:12-24 Ev. Matt 15:1-20 + + + +*4* ef-lent-3-thursday + +class-3 · violet + +Ep. Jer 7:1-7 Ev. Luke 4:38-44. + + +Com. casimir + +Com. lucius + + +*5* ef-lent-3-friday + +class-3 · violet + +Ep. Num 20:1, 3; 6-13. Ev. John 4:5-42 + + + +*6* ef-lent-3-saturday + +class-3 · violet + +Ep. Dan 13:1-9, 15-17, 19-30, 33-62. Ev. John 8:1-11 + + +Com. sts-felicitas-perpetua + + +*7* ef-lent-sunday-4 + +class-1 · rose + +Ep. Gal 4:22-31 Ev. John 6:1-15 + + + +*8* ef-lent-4-monday + +class-3 · violet + +Ep. 3 Kings 3:16-28 Ev. John 2:13-25 + + +Com. john-of-god + + +*9* ef-lent-4-tuesday + +class-3 · violet + +Ep. Ex 32:7-14 Ev. John 7:14-31 + + +Com. frances-rome + + +*10* ef-lent-4-wednesday + +class-3 · violet + +Ep. Isa. 1:16-19 Ev. John 9:1-38 + + +Com. forty-holy-martyrs-of-sebaste + + +*11* ef-lent-4-thursday + +class-3 · violet + +Ep. 4 Kings 4:25-38 Ev. Luke 7:11-16 + + + +*12* ef-lent-4-friday + +class-3 · violet + +Ep. 3 Kings 17:17-24 Ev. John 11:1-45 + + +Com. gregory-the-great + + +*13* ef-lent-4-saturday + +class-3 · violet + +Ep. Isa 49:8-15 Ev. John 8:12-20 + + + +*14* ef-passion-sunday + +class-1 · violet + +Ep. Heb 9:11-15. Ev. John 8:46-59. + + + +*15* ef-passiontide-1-monday + +class-3 · violet + +Ep. Jonas 3:1-10 Ev. John 7:32-39 + + + +*16* ef-passiontide-1-tuesday + +class-3 · violet + +Ep. Dan 14:27, 28-42 Ev. John 7:1-13 + + + +*17* ef-passiontide-1-wednesday + +class-3 · violet + +Ep. Lev 19:1-2, 11-19, 25 Ev. John 10:22-38 + + +Com. patrick + + +*18* ef-passiontide-1-thursday + +class-3 · violet + +Ep. Dan 3:25, 34-45. Ev. Luke 7:36-50 + + +Com. cyril-of-jerusalem + + +*19* joseph-spouse-of-the-bl-virgin-mary + +class-1 · white + +Ep. Ecclus 45:1-6 Ev. Matt 1:18-21 + + +Com. ef-passiontide-1-friday + + +*20* ef-passiontide-1-saturday + +class-3 · violet + +Ep. Jer 18:18-23 Ev. John 12:10-36 + + + +*21* ef-palm-sunday + +class-1 · violet + +Ep. Phil 2:5-11 Ev. Matt. 26:36-75; 27:1-60. + + + +*22* ef-passiontide-2-monday + +class-1 · violet + +Ep. Isa 50:5-10 Ev. John 12:1-9 + + + +*23* ef-passiontide-2-tuesday + +class-1 · violet + +Ep. Jer 11:18-20 Ev. Mark 14:32-72; 15, 1-46 + + + +*24* ef-passiontide-2-wednesday + +class-1 · violet + +Ep. Isa 53:1-12 Ev. Luke 22:39-71; 23:1-53 + + + +*25* Feria V in Cena Domini + +class-1 · white + +Ep. 1 Cor 11:20-32 Ev. John 13:1-15 + + + +*26* Feria VI in Passione et Morte Domini + +class-1 · black + +Ep. Ex 12:1-11 Ev. John 18:1-40; 19:1-42 + + + +*27* Sabbato sancto + +class-1 · violet + +Ep. Col 3:1-4 Ev. Matt 28:1-7 + + + +*28* ef-easter-sunday + +class-1 · white + +Ep. 1 Cor 5:7-8 Ev. Mark 16:1-7 + + + +*29* ef-easter-1-monday + +class-1 · white + +Ep. Acts 10:37-43. Ev. Luke 24:13-35 + + + +*30* ef-easter-1-tuesday + +class-1 · white + +Ep. Acts 13:16; 13:26-33 Ev. Luke 24:36-47 + + + +*31* ef-easter-1-wednesday + +class-1 · white + +Ep. Acts 3:13-15; 3:17-19 Ev. John 21:1-14 + + + +== Aprilis + + +*1* ef-easter-1-thursday + +class-1 · white + +Ep. Acts 8:26-40 Ev. John 20:11-18 + + + +*2* ef-easter-1-friday + +class-1 · white + +Ep. 1 Pet 3:18-22 Ev. Matt 28:16-20 + + + +*3* ef-easter-1-saturday + +class-1 · white + +Ep. 1 Pet 2:1-10 Ev. John 20:1-9 + + + +*4* ef-low-sunday + +class-1 · white + +Ep. 1 John 5:4-10 Ev. John 20:19-31 + + + +*5* annunciation-of-the-blessed-virgin-mary + +class-1 · white + +Ep. Isa 7:10-15 Ev. Luke 1:26-38 + + + +*6* ef-easter-2-tuesday + +class-4 · white + +Ep. 1 John 5:4-10 Ev. John 20:19-31 + + + +*7* ef-easter-2-wednesday + +class-4 · white + +Ep. 1 John 5:4-10 Ev. John 20:19-31 + + + +*8* ef-easter-2-thursday + +class-4 · white + +Ep. 1 John 5:4-10 Ev. John 20:19-31 + + + +*9* ef-easter-2-friday + +class-4 · white + +Ep. 1 John 5:4-10 Ev. John 20:19-31 + + + +*10* Officium sanctae Mariae in sabbato + +class-4 · white + +Ep. Ecclus 24:14-16 Ev. John 19:25-27 + + + +*11* ef-easter-sunday-3 + +class-2 · white + +Ep. 1 Pet 2:21-25 Ev. John 10:11-16 + + + +*12* ef-easter-3-monday + +class-4 · white + +Ep. 1 Pet 2:21-25 Ev. John 10:11-16 + + + +*13* hermenegild + +class-3 · red + +Ep. Wis 10:10-14 Ev. Luke 14:26-33. + + + +*14* justin + +class-3 · red + +Ep. 1 Cor 1:18-25; 1:30; Ev. Luke 12:2-8 + + +Com. sts-tiburtius-valerian-et-maximus-martyrs + + +*15* ef-easter-3-thursday + +class-4 · white + +Ep. 1 Pet 2:21-25 Ev. John 10:11-16 + + + +*16* ef-easter-3-friday + +class-4 · white + +Ep. 1 Pet 2:21-25 Ev. John 10:11-16 + + + +*17* Officium sanctae Mariae in sabbato + +class-4 · white + +Ep. Ecclus 24:14-16 Ev. John 19:25-27 + + +Com. anicetus + + +*18* ef-easter-sunday-4 + +class-2 · white + +Ep. 1 Pet 2:11-19 Ev. John 16:16-22 + + + +*19* ef-easter-4-monday + +class-4 · white + +Ep. 1 Pet 2:11-19 Ev. John 16:16-22 + + + +*20* ef-easter-4-tuesday + +class-4 · white + +Ep. 1 Pet 2:11-19 Ev. John 16:16-22 + + + +*21* anselm + +class-3 · white + +Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 + + + +*22* sts-soter-caius + +class-3 · red + +Ep. 1 Pet 5:1-4; 5:10-11. Ev. Matt 16:13-19 + + + +*23* ef-easter-4-friday + +class-4 · white + +Ep. 1 Pet 2:11-19 Ev. John 16:16-22 + + +Com. george + + +*24* fidelis-of-sigmaringen + +class-3 · red + +Ep. Wis 5:1-5 Ev. John 15:1-7 + + + +*25* ef-easter-sunday-5 + +class-2 · white + +Ep. Jas 1:17-21 Ev. John 16:5-14 + + +Com. major-litanies + + +*26* sts-cletus-marcellinus + +class-3 · red + +Ep. 1 Pet 5:1-4; 5:10-11. Ev. Matt 16:13-19 + + + +*27* peter-canisius + +class-3 · white + +Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 + + + +*28* paul-of-the-cross + +class-3 · white + +Ep. 1 Cor 1:17-25. Ev. Luke 10:1-9 + + + +*29* peter-of-verona + +class-3 · red + +Ep. 2 Tim. 2:8-10; 3:10-12. Ev. Matt 10:34-42 + + + +*30* catherine-of-siena + +class-3 · white + +Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 25:1-13. + + + +== Maius + + +*1* joseph-the-workman + +class-1 · white + +Ep. Col. 3:14-15, 17, 23-24 Ev. Matt 13:54-58 + + + +*2* ef-easter-sunday-6 + +class-2 · white + +Ep. Jas 1:22-27 Ev. John 16:23-30 + + + +*3* ef-rogation-monday + +class-4 · violet + +Ep. Jas 1:22-27 Ev. John 16:23-30 + + +Com. sts-alexander-companions + + +*4* monica + +class-3 · white + +Ep. 1 Tim. 5:3-10. Ev. Luke 7:11-16 + + + +*5* ef-ascension-vigil + +class-2 · white + +Ep. Eph. 4:7-13. Ev. John 17:1-11. + + +Com. pius-v + + +*6* ef-ascension + +class-1 · white + +Ep. Acts 1:1-11 Ev. Mark 16:14-20 + + + +*7* stanislaus + +class-3 · red + +Ep. Wis 5:1-5 Ev. John 15:1-7 + + + +*8* Officium sanctae Mariae in sabbato + +class-4 · white + +Ep. Ecclus 24:14-16 Ev. John 19:25-27 + + + +*9* ef-easter-sunday-7 + +class-2 · white + +Ep. 1 Pet 4:7-11. Ev. John 15:26-27; 16:1-4. + + + +*10* antoninus + +class-3 · white + +Ep. Sir 44:16-27; 45:3-20 Ev. Matt 25:14-23 + + +Com. gordiano-and-epimacho + + +*11* sts-philip-james + +class-2 · red + +Ep. Wis. 5:1-5 Ev. John 14:1-13 + + + +*12* sts-nereus-achilleus-domitilla-pancras + +class-3 · red + +Ep. Wis. 5:1-5 Ev. John 4:46-53 + + + +*13* robert-bellarmine + +class-3 · white + +Ep. Wis 7:7-14. Ev. Matt 5:13-19 + + + +*14* ef-easter-7-friday + +class-4 · white + +Ep. 1 Pet 4:7-11. Ev. John 15:26-27; 16:1-4. + + +Com. boniface-martyr + + +*15* ef-pentecost-vigil + +class-1 · red + +Ep. Acts 19:1-8. Ev. John 14:15-21. + + + +*16* ef-pentecost + +class-1 · red + +Ep. Acts 2:1-11. Ev. John 14:23-31. + + + +*17* ef-easter-8-monday + +class-1 · red + +Ep. Acts 10:34, 42-48 Ev. John 3:16-21 + + + +*18* ef-easter-8-tuesday + +class-1 · red + +Ep. Acts 8:14-17. Ev. John 10:1-10. + + + +*19* ef-pentecost-ember-wed + +class-1 · red + +Ep. Acts 5:12-16 Ev. John 6:44-52. + + + +*20* ef-easter-8-thursday + +class-1 · red + +Ep. Acts 8:5-8 Ev. Luke 9:1-6 + + + +*21* ef-pentecost-ember-fri + +class-1 · red + +Ep. Joel 2:23-24; 26-27 Ev. Luke 5:17-26 + + + +*22* ef-pentecost-ember-sat + +class-1 · red + +Ep. Rom 5:1-5. Ev. Luke 4:38-44. + + + +*23* ef-trinity + +class-1 · white + +Ep. Rom 11:33-36. Ev. Matt 28:18-20 + + + +*24* ef-time-after-pentecost-1-monday + +class-4 · green + +Ep. 1 John 4:8-21 Ev. Luke 6:36-42 + + + +*25* gregory-vii + +class-3 · white + +Ep. 1 Pet 5:1-4; 5:10-11. Ev. Matt 16:13-19 + + +Com. urban-pope-and-martyr + + +*26* philip-neri + +class-3 · white + +Ep. Wis 7:7-14. Ev. Luke 12:35-40 + + +Com. eleutherius + + +*27* ef-corpus-christi + +class-1 · white + +Ep. 1 Cor 11:23-29 Ev. John 6:56-59 + + + +*28* augustine-of-canterbury + +class-3 · white + +Ep. 1 Thess 2:2-9 Ev. Luke 10:1-9 + + + +*29* mary-magdalene-de-pazzi + +class-3 · white + +Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 25:1-13. + + + +*30* ef-time-after-pentecost-sunday-2 + +class-2 · green + +Ep. 1 John 3:13-18. Ev. Luke 14:16-24. + + + +*31* queenship-of-the-blessed-virgin-mary + +class-2 · white + +Ep. Eccli 24:5; 14:7; 14:9-11; 24:30-31 Ev. Luke 1:26-33 + + +Com. petronilla + + +== Iunius + + +*1* angela-merici + +class-3 · white + +Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 25:1-13. + + + +*2* ef-time-after-pentecost-2-wednesday + +class-4 · green + +Ep. 1 John 3:13-18. Ev. Luke 14:16-24. + + +Com. sts-marcellinus-peter-erasmus + + +*3* ef-time-after-pentecost-2-thursday + +class-4 · green + +Ep. 1 John 3:13-18. Ev. Luke 14:16-24. + + + +*4* ef-sacred-heart + +class-1 · white + +Ep. Eph 3:8-12, 14-19 Ev. John 19:31-37 + + + +*5* boniface + +class-3 · red + +Ep. Ecclus 44:1-15 Ev. Matt 5:1-12 + + + +*6* ef-time-after-pentecost-sunday-3 + +class-2 · green + +Ep. 1 Pet. 5:6-11 Ev. Luke 15:1-10 + + + +*7* ef-time-after-pentecost-3-monday + +class-4 · green + +Ep. 1 Pet. 5:6-11 Ev. Luke 15:1-10 + + + +*8* ef-time-after-pentecost-3-tuesday + +class-4 · green + +Ep. 1 Pet. 5:6-11 Ev. Luke 15:1-10 + + + +*9* ef-time-after-pentecost-3-wednesday + +class-4 · green + +Ep. 1 Pet. 5:6-11 Ev. Luke 15:1-10 + + +Com. sts-primus-felicianus + + +*10* margaret-of-scotland + +class-3 · white + +Ep. Prov 31:10-31 Ev. Matt 13:44-52. + + + +*11* barnabas + +class-3 · red + +Ep. Acts 11:21-26; 13:1-3 Ev. Matt 10:16-22 + + + +*12* john-of-san-fecundo + +class-3 · white + +Ep. Sir 31:8-11 Ev. Luke 12:35-40 + + +Com. basilidus + + +*13* ef-time-after-pentecost-sunday-4 + +class-2 · green + +Ep. Rom 8:18-23 Ev. Luke 5:1-11 + + + +*14* basil-the-great + +class-3 · white + +Ep. 2 Tim 4:1-8 Ev. Luke 14:26-35 + + + +*15* ef-time-after-pentecost-4-tuesday + +class-4 · green + +Ep. Rom 8:18-23 Ev. Luke 5:1-11 + + +Com. vitus + + +*16* ef-time-after-pentecost-4-wednesday + +class-4 · green + +Ep. Rom 8:18-23 Ev. Luke 5:1-11 + + + +*17* gregory-barbarigo + +class-3 · white + +Ep. Sir 44:16-27; 45:3-20 Ev. Matt 25:14-23 + + + +*18* ephrem-of-syria + +class-3 · white + +Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 + + +Com. marcus-and-marcellianus + + +*19* julia-of-falconieri + +class-3 · white + +Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 25:1-13. + + +Com. sts-gervasius-and-protasius + + +*20* ef-time-after-pentecost-sunday-5 + +class-2 · green + +Ep. 1 Pet 3:8-15. Ev. Matt 5:20-24. + + + +*21* aloysius-gongzaga + +class-3 · white + +Ep. Sir 31:8-11 Ev. Matt 22:29-40 + + + +*22* paulinus-of-nola + +class-3 · white + +Ep. 2 Cor. 8:9-15 Ev. Luke 12:32-34 + + + +*23* vigil-of-the-nativity-of-st-john-the-baptist + +class-2 · violet + +Ep. Jer 1:4-10 Ev. Luke 1:5-17 + + + +*24* nativity-of-st-john-the-baptist + +class-1 · white + +Ep. Isa 49:1-3, 5-7. Ev. Luke 1:57-68 + + + +*25* william + +class-3 · white + +Ep. Ecclus 45:1-6 Ev. Matt 19:27-29. + + + +*26* sts-john-paul + +class-3 · red + +Ep. Eccli 44:10-15 Ev. Luke 12:1-8 + + + +*27* ef-time-after-pentecost-sunday-6 + +class-2 · green + +Ep. Rom 6:3-11. Ev. Mark 8:1-9 + + + +*28* vigil-of-sts-peter-paul + +class-2 · violet + +Ep. Acts 3:1-10 Ev. John 21:15-19 + + + +*29* sts-peter-paul + +class-1 · red + +Ep. Acts 12:1-11 Ev. Matt 16:13-19 + + + +*30* in-commemoratione-sancti-pauli-apostoli + +class-3 · red + +Ep. Gal 1:11-20 Ev. Matt 10:16-22 + + +Com. commemoration-of-st-peter + + +== Iulius + + +*1* precious-blood-of-our-lord-jesus-christ + +class-1 · red + +Ep. Heb 9:11-15. Ev. John 19:30-35 + + + +*2* visitation-of-the-blessed-virgin-mary + +class-2 · white + +Ep. Song 2:8-14 Ev. Luke 1:39-47 + + +Com. processus-and-martinian + + +*3* irenaeus + +class-3 · red + +Ep. 2 Tim. 3:14-17; 4:1-5 Ev. Matt 10:28-33 + + + +*4* ef-time-after-pentecost-sunday-7 + +class-2 · green + +Ep. Rom 6:19-23 Ev. Matt 7:15-21 + + + +*5* anthony-mary-zaccariah + +class-3 · white + +Ep. 1 Tim. 4:8-16 Ev. Mark 10:15-21 + + + +*6* ef-time-after-pentecost-7-tuesday + +class-4 · green + +Ep. Rom 6:19-23 Ev. Matt 7:15-21 + + + +*7* sts-cyril-methodius + +class-3 · white + +Ep. Heb 7:23-27 Ev. Luke 10:1-9 + + + +*8* elizabeth-of-portugal + +class-3 · white + +Ep. Prov 31:10-31 Ev. Matt 13:44-52. + + + +*9* ef-time-after-pentecost-7-friday + +class-4 · green + +Ep. Rom 6:19-23 Ev. Matt 7:15-21 + + + +*10* seven-holy-brothers-and-sts-rufina-secunda + +class-3 · red + +Ep. Prov 31:10-31 Ev. Matt 12:46-50 + + + +*11* ef-time-after-pentecost-sunday-8 + +class-2 · green + +Ep. Rom 8:12-17 Ev. Luke 16:1-9 + + + +*12* john-gualbert + +class-3 · white + +Ep. Ecclus 45:1-6 Ev. Matt 5:43-48 + + +Com. naboris-et-felicis + + +*13* ef-time-after-pentecost-8-tuesday + +class-4 · green + +Ep. Rom 8:12-17 Ev. Luke 16:1-9 + + + +*14* bonaventure + +class-3 · white + +Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 + + + +*15* henry-the-emperor + +class-3 · white + +Ep. Sir 31:8-11 Ev. Luke 12:35-40 + + + +*16* ef-time-after-pentecost-8-friday + +class-4 · green + +Ep. Rom 8:12-17 Ev. Luke 16:1-9 + + +Com. our-lady-of-mt-carmel + + +*17* Officium sanctae Mariae in sabbato + +class-4 · white + +Ep. Ecclus 24:14-16 Ev. Luke 11:27-28 + + +Com. alexis + + +*18* ef-time-after-pentecost-sunday-9 + +class-2 · green + +Ep. 1 Cor. 10:6-13 Ev. Luke 19:41-47 + + + +*19* vincent-de-paul + +class-3 · white + +Ep. 1 Cor. 4:9-14 Ev. Luke 10:1-9 + + + +*20* jerome-emiliani + +class-3 · white + +Ep. Isa 58:7-11 Ev. Matt 19:13-21 + + +Com. margaret + + +*21* laurence-of-brindisi + +class-3 · white + +Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 + + +Com. praxedis-virginis + + +*22* mary-magdalene + +class-3 · white + +Ep. Song 3:2-5; 8:6-7 Ev. Luke 7:36-50 + + + +*23* apollinaris + +class-3 · red + +Ep. 1 Pet. 5:1-11 Ev. Luke 22:24-30 + + +Com. liborii + + +*24* Officium sanctae Mariae in sabbato + +class-4 · white + +Ep. Ecclus 24:14-16 Ev. Luke 11:27-28 + + +Com. christina + + +*25* ef-time-after-pentecost-sunday-10 + +class-2 · green + +Ep. 1 Cor. 12:2-11 Ev. Luke 18:9-14 + + +Com. james-the-greater + + +*26* anne-mother-of-the-blessed-virgin + +class-2 · white + +Ep. Prov 31:10-31 Ev. Matt 13:44-52. + + + +*27* ef-time-after-pentecost-10-tuesday + +class-4 · green + +Ep. 1 Cor. 12:2-11 Ev. Luke 18:9-14 + + +Com. pantaleon + + +*28* sts-nazarius-celsus-st-victor-i-st-innocent-i + +class-3 · red + +Ep. Wis 10:17-20 Ev. Luke 21:9-19 + + + +*29* martha + +class-3 · white + +Ep. 2 Cor 10:17-18; 11:1-2 Ev. Luke 10:38-42 + + +Com. felicis-simplicii-faustini-et-beatricis + + +*30* ef-time-after-pentecost-10-friday + +class-4 · green + +Ep. 1 Cor. 12:2-11 Ev. Luke 18:9-14 + + +Com. sts-abdon-sennen + + +*31* ignatius-loyola + +class-3 · white + +Ep. 2 Tim. 2:8-10; 3:10-12. Ev. Luke 10:1-9 + + + +== Augustus + + +*1* ef-time-after-pentecost-sunday-11 + +class-2 · green + +Ep. 1 Cor. 15:1-10 Ev. Mark 7:31-37 + + + +*2* alphonsus-liguori + +class-3 · white + +Ep. 2 Tim. 2:1-7 Ev. Luke 10:1-9 + + +Com. stephen-i-pope-and-martyr + + +*3* ef-time-after-pentecost-11-tuesday + +class-4 · green + +Ep. 1 Cor. 15:1-10 Ev. Mark 7:31-37 + + + +*4* dominic + +class-3 · white + +Ep. 2 Tim. 4:1-8 Ev. Luke 12:35-40 + + + +*5* dedication-of-the-basilica-of-st-mary-major + +class-3 · white + +Ep. Ecclus 24:14-16 Ev. Luke 11:27-28 + + + +*6* transfiguration-of-our-lord + +class-2 · white + +Ep. 2 Pet. 1:16-19 Ev. Matt 17:1-9 + + +Com. pope-sixtus-ii-felicissimus-and-agapitus-martyrs + + +*7* cajetan + +class-3 · white + +Ep. Sir 31:8-11 Ev. Matt 6:24-33 + + +Com. donatus + + +*8* ef-time-after-pentecost-sunday-12 + +class-2 · green + +Ep. 2 Cor. 3:4-9 Ev. Luke 10:23-37 + + + +*9* vigil-of-st-lawrence + +class-3 · violet + +Ep. Ecclus 51:1-8, 12 Ev. Matt 16:24-27 + + +Com. romanus + + +*10* lawrence + +class-2 · red + +Ep. 2 Cor. 9:6-10 Ev. John 12:24-26 + + + +*11* ef-time-after-pentecost-12-wednesday + +class-4 · green + +Ep. 2 Cor. 3:4-9 Ev. Luke 10:23-37 + + +Com. sts-tiburtius-susanna + + +*12* clare + +class-3 · white + +Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 25:1-13. + + + +*13* ef-time-after-pentecost-12-friday + +class-4 · green + +Ep. 2 Cor. 3:4-9 Ev. Luke 10:23-37 + + +Com. sts-hippolytus-cassian + + +*14* vigil-of-the-assumption + +class-2 · violet + +Ep. Sir 24:23-31 Ev. Luke 11:27-28 + + +Com. eusebius-confessor + + +*15* assumption-of-the-blessed-virgin-mary + +class-1 · white + +Ep. Judith 13:22-25; 15:10 Ev. Luke 1:41-50 + + +Com. ef-time-after-pentecost-sunday-13 + + +*16* joachim-father-of-the-blessed-virgin + +class-2 · white + +Ep. Sir 31:8-11 Ev. Matt 1:1-16 + + + +*17* hyacinth + +class-3 · white + +Ep. Sir 31:8-11 Ev. Luke 12:35-40 + + + +*18* ef-time-after-pentecost-13-wednesday + +class-4 · green + +Ep. Gal 3:16-22 Ev. Luke 17:11-19 + + +Com. agapitus + + +*19* john-eudes + +class-3 · white + +Ep. Sir 31:8-11 Ev. Luke 12:35-40 + + + +*20* bernard-of-clairvaux + +class-3 · white + +Ep. Ecclus 39:6-14 Ev. Matt 5:13-19 + + + +*21* jane-frances-de-chantal + +class-3 · white + +Ep. Prov 31:10-31 Ev. Matt 13:44-52. + + + +*22* ef-time-after-pentecost-sunday-14 + +class-2 · green + +Ep. Gal 5:16-24 Ev. Matt 6:24-33 + + +Com. immaculate-heart-of-mary + + +*23* philip-benizi + +class-3 · white + +Ep. 1 Cor. 4:9-14 Ev. Luke 12:32-34 + + + +*24* bartholomew + +class-2 · red + +Ep. 1 Cor. 12:27-31 Ev. Luke 6:12-19 + + + +*25* louis-ix + +class-3 · white + +Ep. Wis 10:10-14 Ev. Luke 19:12-26 + + + +*26* ef-time-after-pentecost-14-thursday + +class-4 · green + +Ep. Gal 5:16-24 Ev. Matt 6:24-33 + + +Com. zephyrinus + + +*27* joseph-calasance + +class-3 · white + +Ep. Wis 10:10-14 Ev. Matt 18:1-5 + + + +*28* augustine + +class-3 · white + +Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 + + +Com. hermes + + +*29* ef-time-after-pentecost-sunday-15 + +class-2 · green + +Ep. Gal 5:25-26; 6:1-10 Ev. Luke 7:11-16 + + + +*30* rose-of-lima + +class-3 · white + +Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 25:1-13. + + +Com. sts-felix-and-adauctus + + +*31* raymond-nonnatus + +class-3 · white + +Ep. Sir 31:8-11 Ev. Luke 12:35-40 + + + +== September + + +*1* ef-time-after-pentecost-15-wednesday + +class-4 · green + +Ep. Gal 5:25-26; 6:1-10 Ev. Luke 7:11-16 + + +Com. giles + +Com. twelve-holy-brothers-martyrs + + +*2* stephen-of-hungary + +class-3 · white + +Ep. Sir 31:8-11 Ev. Luke 19:12-26 + + + +*3* pius-x + +class-3 · white + +Ep. 1 Thess. 2:2-8 Ev. John 21:15-17 + + + +*4* Officium sanctae Mariae in sabbato + +class-4 · white + +Ep. Ecclus 24:14-16 Ev. Luke 11:27-28 + + + +*5* ef-time-after-pentecost-sunday-16 + +class-2 · green + +Ep. Eph 3:13-21 Ev. Luke 14:1-11 + + + +*6* ef-time-after-pentecost-16-monday + +class-4 · green + +Ep. Eph 3:13-21 Ev. Luke 14:1-11 + + + +*7* ef-time-after-pentecost-16-tuesday + +class-4 · green + +Ep. Eph 3:13-21 Ev. Luke 14:1-11 + + + +*8* nativity-of-the-blessed-virgin-mary + +class-2 · white + +Ep. Prov 8:22-35 Ev. Matt 1:1-16 + + +Com. hadriani + + +*9* ef-time-after-pentecost-16-thursday + +class-4 · green + +Ep. Eph 3:13-21 Ev. Luke 14:1-11 + + +Com. gorgonius + + +*10* nicholas-of-tolentino + +class-3 · white + +Ep. 1 Cor. 4:9-14 Ev. Luke 12:32-34 + + + +*11* Officium sanctae Mariae in sabbato + +class-4 · white + +Ep. Ecclus 24:14-16 Ev. Luke 11:27-28 + + +Com. sts-protus-hyacinth + + +*12* ef-time-after-pentecost-sunday-17 + +class-2 · green + +Ep. Eph 4:1-6 Ev. Matt 22:34-46 + + + +*13* ef-time-after-pentecost-17-monday + +class-4 · green + +Ep. Eph 4:1-6 Ev. Matt 22:34-46 + + + +*14* exaltation-of-the-holy-cross + +class-2 · red + +Ep. Phil 2:5-11 Ev. John 12:31-36 + + + +*15* seven-sorrows-of-the-blessed-virgin-mary + +class-2 · white + +Ep. Judith 13:22; 13:23-25 Ev. John 19:25-27 + + +Com. nicomedes + + +*16* sts-cornelius-cyprian + +class-3 · red + +Ep. Wis 3:1-8 Ev. Luke 21:9-19 + + +Com. sts-euphemia-lucy-and-geminianus + + +*17* ef-time-after-pentecost-17-friday + +class-4 · green + +Ep. Eph 4:1-6 Ev. Matt 22:34-46 + + +Com. stigmata-of-st-francis + + +*18* joseph-of-cupertino + +class-3 · white + +Ep. 1 Cor 13:1-8 Ev. Matt 22:1-14 + + + +*19* ef-time-after-pentecost-sunday-18 + +class-2 · green + +Ep. 1 Cor. 1:4-8 Ev. Matt 9:1-8 + + + +*20* ef-time-after-pentecost-18-monday + +class-4 · green + +Ep. 1 Cor. 1:4-8 Ev. Matt 9:1-8 + + +Com. sts-eustace-companions + + +*21* matthew + +class-2 · red + +Ep. Ezek 1:10-14 Ev. Matt 9:9-13 + + + +*22* ef-september-ember-wed + +class-2 · violet + +Ep. 2 Esd. 8:1-10 Ev. Mark 9:16-28 + + +Com. thomas-of-villanova + + +*23* linus + +class-3 · red + +Ep. 1 Pet 5:1-4; 5:10-11. Ev. Matt 16:13-19 + + +Com. thecla + + +*24* ef-september-ember-fri + +class-2 · violet + +Ep. Osee 14:2-10 Ev. Luke 7:36-50 + + +Com. our-lady-of-ransom + + +*25* ef-september-ember-sat + +class-2 · violet + +Ep. Heb 9:2-12 Ev. Luke 13:6-17 + + + +*26* ef-time-after-pentecost-sunday-19 + +class-2 · green + +Ep. Eph 4:23-28 Ev. Matt 22:1-14 + + + +*27* sts-cosmas-damian + +class-3 · red + +Ep. Wis 5:16-20 Ev. Luke 6:17-23 + + + +*28* wenceslaus + +class-3 · red + +Ep. Wis 10:10-14 Ev. Matt 10:34-42 + + + +*29* dedication-of-st-michael-the-archangel + +class-1 · white + +Ep. Rev 1:1-5 Ev. Matt 18:1-10 + + + +*30* jerome + +class-3 · white + +Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 + + + +== October + + +*1* ef-time-after-pentecost-19-friday + +class-4 · green + +Ep. Eph 4:23-28 Ev. Matt 22:1-14 + + +Com. remigius + + +*2* holy-guardian-angels + +class-3 · white + +Ep. Exod 23:20-23 Ev. Matt 18:1-10 + + + +*3* ef-time-after-pentecost-sunday-20 + +class-2 · green + +Ep. Eph 5:15-21 Ev. John 4:46-53 + + + +*4* francis-of-assisi + +class-3 · white + +Ep. Gal 6:14-18 Ev. Matt 11:25-30 + + + +*5* ef-time-after-pentecost-20-tuesday + +class-4 · green + +Ep. Eph 5:15-21 Ev. John 4:46-53 + + +Com. placid-companions + + +*6* bruno + +class-3 · white + +Ep. Sir 31:8-11 Ev. Luke 12:35-40 + + + +*7* our-lady-of-the-rosary + +class-2 · white + +Ep. Prov 8:22-24, 32-35. Ev. Luke 1:26-38 + + +Com. mark-i + + +*8* bridget-of-sweden + +class-3 · white + +Ep. 1 Tim. 5:3-10. Ev. Matt 13:44-52. + + +Com. sergio-baccho-marcello-and-apulejo-martyrs + + +*9* john-leonardi + +class-3 · white + +Ep. 2 Cor 4:1-6; 4:15-18 Ev. Luke 10:1-9 + + +Com. dionysius-and-companions + + +*10* ef-time-after-pentecost-sunday-21 + +class-2 · green + +Ep. Eph 6:10-17 Ev. Matt 18:23-35 + + + +*11* maternity-of-the-blessed-virgin-mary + +class-2 · white + +Ep. Sir 24:23-31 Ev. Luke 2:43-51 + + + +*12* ef-time-after-pentecost-21-tuesday + +class-4 · green + +Ep. Eph 6:10-17 Ev. Matt 18:23-35 + + + +*13* edward + +class-3 · white + +Ep. Sir 31:8-11 Ev. Luke 12:35-40 + + + +*14* callistus-i + +class-3 · red + +Ep. 1 Pet 5:1-4; 5:10-11. Ev. Matt 16:13-19 + + + +*15* teresa-of-avila + +class-3 · white + +Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 25:1-13. + + + +*16* hedwig + +class-3 · white + +Ep. Prov 31:10-31 Ev. Matt 13:44-52. + + + +*17* ef-time-after-pentecost-sunday-22 + +class-2 · green + +Ep. Phil 1:6-11 Ev. Matt 22:15-21 + + + +*18* luke-the-evangelist + +class-2 · red + +Ep. 2 Cor. 8:16-24 Ev. Luke 10:1-9 + + + +*19* peter-of-alcantara + +class-3 · white + +Ep. Phil 3:7-12 Ev. Luke 12:32-34 + + + +*20* john-cantius + +class-3 · white + +Ep. James 2:12-17 Ev. Luke 12:35-40 + + + +*21* ef-time-after-pentecost-22-thursday + +class-4 · green + +Ep. Phil 1:6-11 Ev. Matt 22:15-21 + + +Com. hilarion + +Com. ursula-and-companions + + +*22* ef-time-after-pentecost-22-friday + +class-4 · green + +Ep. Phil 1:6-11 Ev. Matt 22:15-21 + + + +*23* anthony-mary-claret + +class-3 · white + +Ep. Heb 7:23-27 Ev. Matt 24:42-47 + + + +*24* ef-time-after-pentecost-sunday-23 + +class-2 · green + +Ep. Phil 3:17-21; 4:1-3 Ev. Matt 9:18-26 + + + +*25* ef-time-after-pentecost-23-monday + +class-4 · green + +Ep. Phil 3:17-21; 4:1-3 Ev. Matt 9:18-26 + + +Com. sts-chrysanthus-daria + + +*26* ef-time-after-pentecost-23-tuesday + +class-4 · green + +Ep. Phil 3:17-21; 4:1-3 Ev. Matt 9:18-26 + + +Com. evaristus + + +*27* ef-time-after-pentecost-23-wednesday + +class-4 · green + +Ep. Phil 3:17-21; 4:1-3 Ev. Matt 9:18-26 + + + +*28* sts-simon-jude + +class-2 · red + +Ep. Eph. 4:7-13. Ev. John 15:17-25 + + + +*29* ef-time-after-pentecost-23-friday + +class-4 · green + +Ep. Phil 3:17-21; 4:1-3 Ev. Matt 9:18-26 + + + +*30* Officium sanctae Mariae in sabbato + +class-4 · white + +Ep. Ecclus 24:14-16 Ev. Luke 11:27-28 + + + +*31* ef-christ-the-king + +class-1 · white + +Ep. Col 1:12-20. Ev. John 18:33-37 + + + +== November + + +*1* all-saints + +class-1 · white + +Ep. Apoc 7:2-12 Ev. Matt 5:1-12 + + + +*2* commemoration-of-all-souls + +class-1 · black + +Ep. 1 Cor. 15:51-57 Ev. John 5:25-29 + + + +*3* ef-time-after-pentecost-24-wednesday + +class-4 · green + +Ep. Col 1:12-20. Ev. John 18:33-37 + + + +*4* charles-borromeo + +class-3 · white + +Ep. Sir 44:16-27; 45:3-20 Ev. Matt 25:14-23 + + +Com. sts-vitalis-and-agricola-martyrs + + +*5* ef-time-after-pentecost-24-friday + +class-4 · green + +Ep. Col 1:12-20. Ev. John 18:33-37 + + + +*6* Officium sanctae Mariae in sabbato + +class-4 · white + +Ep. Ecclus 24:14-16 Ev. Luke 11:27-28 + + + +*7* ef-time-after-epiphany-sunday-5 + +class-2 · green + +Ep. Col 3:12-17 Ev. Matt 13:24-30 + + + +*8* ef-time-after-pentecost-25-monday + +class-4 · green + +Ep. Col 3:12-17 Ev. Matt 13:24-30 + + +Com. four-holy-crowned-martyrs + + +*9* dedication-of-the-archbasilica-of-our-holy-savior + +class-2 · white + +Ep. Rev 21:2-5 Ev. Luke 19:1-10 + + +Com. theodore + + +*10* andrew-avellino + +class-3 · white + +Ep. Sir 31:8-11 Ev. Luke 12:35-40 + + +Com. sts-tryphonis-respicii-et-nymphae + + +*11* martin-of-tours + +class-3 · white + +Ep. Sir 44:16-27; 45:3-20 Ev. Luke 11:33-36 + + +Com. menna + + +*12* martin-i + +class-3 · red + +Ep. 1 Pet 5:1-4; 5:10-11. Ev. Matt 16:13-19 + + + +*13* didacus + +class-3 · white + +Ep. 1 Cor 4:9-14 Ev. Luke 12:32-34 + + + +*14* ef-time-after-epiphany-sunday-6 + +class-2 · green + +Ep. 1 Thess 1:2-10 Ev. Matt 13:31-35 + + + +*15* albert-the-great + +class-3 · white + +Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 + + + +*16* gertrude-the-great + +class-3 · white + +Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 25:1-13. + + + +*17* gregory-the-wonderworker + +class-3 · white + +Ep. Sir 44:16-27; 45:3-20 Ev. Mark 11:22-24 + + + +*18* dedication-of-the-basilicas-of-sts-peter-paul + +class-3 · white + +Ep. Rev 21:2-5 Ev. Luke 19:1-10 + + + +*19* elizabeth-of-hungary + +class-3 · white + +Ep. Prov 31:10-31 Ev. Matt 13:44-52. + + +Com. pontian + + +*20* felix-of-valois + +class-3 · white + +Ep. 1 Cor. 4:9-14 Ev. Luke 12:32-34 + + + +*21* ef-time-after-pentecost-sunday-24 + +class-2 · green + +Ep. Col 1:9-14 Ev. Matt 24:15-35 + + + +*22* cecilia + +class-3 · red + +Ep. Sir 51:13-17. Ev. Matt 25:1-13. + + + +*23* clement-i + +class-3 · red + +Ep. Phil 3:17-21; 4:1-3 Ev. Matt 16:13-19 + + +Com. felicity + + +*24* john-of-the-cross + +class-3 · white + +Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 + + +Com. chrysogonus + + +*25* catherine-of-alexandria + +class-3 · red + +Ep. Sir 51:1-8; 51:12 Ev. Matt 25:1-13. + + + +*26* sylvester + +class-3 · white + +Ep. Ecclus 45:1-6 Ev. Matt 19:27-29. + + +Com. peter-of-alexandria + + +*27* Officium sanctae Mariae in sabbato + +class-4 · white + +Ep. Ecclus 24:14-16 Ev. Luke 11:27-28 + + + +*28* ef-advent-sunday-1 + +class-1 · violet + +Ep. Rom 13:11-14 Ev. Luke 21:25-33 + + + +*29* ef-advent-1-monday + +class-3 · violet + +Ep. Rom 13:11-14 Ev. Luke 21:25-33 + + +Com. saturninus + + +*30* andrew + +class-2 · red + +Ep. Rom 10:10-18 Ev. Matt 4:18-22 + + +Com. ef-advent-1-tuesday + + +== December + + +*1* ef-advent-1-wednesday + +class-3 · violet + +Ep. Rom 13:11-14 Ev. Luke 21:25-33 + + + +*2* vivian + +class-3 · red + +Ep. Sir 51:13-17. Ev. Matt 13:44-52. + + +Com. ef-advent-1-thursday + + +*3* francis-xavier + +class-3 · white + +Ep. Rom 10:10-18 Ev. Mark 16:15-18 + + +Com. ef-advent-1-friday + + +*4* peter-chrysologus + +class-3 · white + +Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 + + +Com. ef-advent-1-saturday + +Com. barbara + + +*5* ef-advent-sunday-2 + +class-1 · violet + +Ep. Rom 15:4-13 Ev. Matt 11:2-10 + + + +*6* nicholas + +class-3 · white + +Ep. Heb 13:7-17 Ev. Matt 25:14-23 + + +Com. ef-advent-2-monday + + +*7* ambrose + +class-3 · white + +Ep. 2 Tim 4:1-8 Ev. Matt 5:13-19 + + +Com. ef-advent-2-tuesday + + +*8* immaculate-conception-of-the-blessed-virgin-mary + +class-1 · white + +Ep. Prov 8:22-35 Ev. Luke 1:26-28 + + +Com. ef-advent-2-wednesday + + +*9* ef-advent-2-thursday + +class-3 · violet + +Ep. Rom 15:4-13 Ev. Matt 11:2-10 + + + +*10* ef-advent-2-friday + +class-3 · violet + +Ep. Rom 15:4-13 Ev. Matt 11:2-10 + + +Com. melchiades + + +*11* damasus-i + +class-3 · white + +Ep. 1 Pet 5:1-4; 5:10-11. Ev. Matt 16:13-19 + + +Com. ef-advent-2-saturday + + +*12* ef-advent-sunday-3 + +class-1 · rose + +Ep. Phil 4:4-7 Ev. John 1:19-28 + + + +*13* lucy + +class-3 · red + +Ep. 2 Cor 10:17-18; 11:1-2 Ev. Matt 13:44-52. + + +Com. ef-advent-3-monday + + +*14* ef-advent-3-tuesday + +class-3 · violet + +Ep. Phil 4:4-7 Ev. John 1:19-28 + + + +*15* ef-advent-ember-wed + +class-2 · violet + +Ep. Isa 7:10-15 Ev. Luke 1:26-38 + + + +*16* eusebius + +class-3 · red + +Ep. 2 Cor. 1:3-7 Ev. Matt 16:24-27. + + +Com. ef-advent-3-thursday + + +*17* ef-advent-ember-fri + +class-2 · violet + +Ep. Isa 11:1-5 Ev. Luke 1:39-47 + + + +*18* ef-advent-ember-sat + +class-2 · violet + +Ep. 2 Thess 2:1-8 Ev. Luke 3:1-6 + + + +*19* ef-advent-sunday-4 + +class-1 · violet + +Ep. 1 Cor. 4:1-5 Ev. Luke 3:1-6 + + + +*20* ef-advent-4-monday + +class-2 · violet + +Ep. 1 Cor. 4:1-5 Ev. Luke 3:1-6 + + + +*21* thomas + +class-2 · red + +Ep. Eph 2:19-22 Ev. John 20:24-29 + + +Com. ef-advent-4-tuesday + + +*22* ef-advent-4-wednesday + +class-2 · violet + +Ep. 1 Cor. 4:1-5 Ev. Luke 3:1-6 + + + +*23* ef-advent-4-thursday + +class-2 · violet + +Ep. 1 Cor. 4:1-5 Ev. Luke 3:1-6 + + + +*24* ef-nativity-vigil + +class-1 · violet + +Ep. Rom 1:1-6 Ev. Matt 1:18-21 + + + +*25* ef-nativity + +class-1 · white + +Ep. Heb 1:1-12 Ev. John 1:1-14 + + + +*26* ef-christmas-sunday-0 + +class-2 · white + +Ep. Gal 4:1-7 Ev. Luke 2:33-40 + + +Com. stephen + + +*27* john-the-evangelist + +class-2 · white + +Ep. Ecclus 15:1-6 Ev. John 21:19-24 + + +Com. ef-nativity-octave-day-3 + + +*28* holy-innocents + +class-2 · red + +Ep. Apoc 14:1-5 Ev. Matt 2:13-18 + + +Com. ef-nativity-octave-day-4 + + +*29* ef-nativity-octave-day-5 + +class-2 · white + +Ep. Titus 3:4-7 Ev. Luke 2:15-20 + + +Com. thomas-becket + + +*30* ef-nativity-octave-day-6 + +class-2 · white + +Ep. Titus 3:4-7 Ev. Luke 2:15-20 + + + +*31* ef-nativity-octave-day-7 + +class-2 · white + +Ep. Titus 3:4-7 Ev. Luke 2:15-20 + + +Com. silvester + + diff --git a/test/golden/ordo-2027.html b/test/golden/ordo-2027.html new file mode 100644 index 0000000..2f597c4 --- /dev/null +++ b/test/golden/ordo-2027.html @@ -0,0 +1,1859 @@ + + + + +Ordo 2027 + +

Ordo 2027 · ef

+

Ianuarius

+
+ 1ef-circumcision +
class-1 · white · Ep. Titus 2:11-15 · Ev. Luke 2:21
+ +
+
+ 2Officium sanctae Mariae in sabbato +
class-4 · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20
+ +
+
+ 3Sanctissimi Nominis Iesu +
class-2 · white · Ep. Acts 4:8-12 · Ev. Luke 2:21
+ +
+
+ 4ef-christmas-1-monday +
class-4 · white · Ep. Titus 2:11-15 · Ev. Luke 2:21
+ +
+
+ 5ef-christmas-1-tuesday +
class-4 · white · Ep. Titus 2:11-15 · Ev. Luke 2:21
+
Com. telesphorus-pope-and-martyr
+
+
+ 6ef-epiphany +
class-1 · white · Ep. Isa 60:1-6 · Ev. Matt 2:1-12
+ +
+
+ 7ef-christmas-2-thursday +
class-4 · white · Ep. Isa 60:1-6 · Ev. Matt 2:1-12
+ +
+
+ 8ef-christmas-2-friday +
class-4 · white · Ep. Isa 60:1-6 · Ev. Matt 2:1-12
+ +
+
+ 9Officium sanctae Mariae in sabbato +
class-4 · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20
+ +
+
+ 10Sanctae Familiae Iesu, Mariae, Ioseph +
class-2 · white · Ep. Col 3:12-17 · Ev. Luke 2:42-52
+ +
+
+ 11ef-time-after-epiphany-1-monday +
class-4 · white · Ep. Rom 12:1-5 · Ev. Luke 2:42-52
+
Com. hyginus-pope-and-martyr
+
+
+ 12ef-time-after-epiphany-1-tuesday +
class-4 · white · Ep. Rom 12:1-5 · Ev. Luke 2:42-52
+ +
+
+ 13commemoration-of-the-baptism-of-the-lord +
class-2 · white · Ep. Isa 60:1-6 · Ev. John 1:29-34
+ +
+
+ 14hilary +
class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19
+
Com. felicis
+
+
+ 15paul-the-first-hermit +
class-3 · white · Ep. Phil 3:7-12 · Ev. Matt 11:25-30
+
Com. maur-abbot
+
+
+ 16marcellus-i +
class-3 · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19
+ +
+
+ 17ef-time-after-epiphany-sunday-2 +
class-2 · green · Ep. Rom 12:6-16 · Ev. John 2:1-11
+ +
+
+ 18ef-time-after-epiphany-2-monday +
class-4 · green · Ep. Rom 12:6-16 · Ev. John 2:1-11
+
Com. prisca
+
+
+ 19ef-time-after-epiphany-2-tuesday +
class-4 · green · Ep. Rom 12:6-16 · Ev. John 2:1-11
+
Com. canute-martyr
Com. sts-marius-martha-audifax-abachum
+
+
+ 20sts-fabian-sebastian +
class-3 · red · Ep. Heb 11:33-39 · Ev. Luke 6:17-23
+ +
+
+ 21agnes +
class-3 · red · Ep. Sir 51:1-8; 51:12 · Ev. Matt 25:1-13.
+ +
+
+ 22sts-vincent-anastasius +
class-3 · red · Ep. Wis 3:1-8 · Ev. Luke 21:9-19
+ +
+
+ 23raymond-of-pe-afort +
class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40
+
Com. emerentiana
+
+
+ 24ef-septuagesima-sunday-1 +
class-2 · violet · Ep. 1 Cor. 9:24-27; 10:1-5 · Ev. Matt 20:1-16
+ +
+
+ 25conversion-of-st-paul +
class-3 · white · Ep. Acts 9:1-22 · Ev. Matt 19:27-29.
+
Com. peter
+
+
+ 26polycarp +
class-3 · red · Ep. 1 John 3:10-16 · Ev. Matt 10:26-32.
+ +
+
+ 27john-chrysostom +
class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19
+ +
+
+ 28peter-nolasco +
class-3 · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 12:32-34
+
Com. agnes-secundo
+
+
+ 29francis-de-sales +
class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19
+ +
+
+ 30martina +
class-3 · red · Ep. Sir 51:1-8; 51:12 · Ev. Matt 25:1-13.
+ +
+
+ 31ef-septuagesima-sunday-2 +
class-2 · violet · Ep. 2 Cor. 11:19-33; 12:1-9 · Ev. Luke 8:4-15
+ +
+

Februarius

+
+ 1ignatius-of-antioch +
class-3 · red · Ep. Rom 8:35-39 · Ev. John 12:24-26
+ +
+
+ 2purification-of-the-blessed-virgin-mary +
class-2 · white · Ep. Mal 3:1-4 · Ev. Luke 2:22-32
+ +
+
+ 3ef-septuagesima-2-wednesday +
class-4 · violet · Ep. 2 Cor. 11:19-33; 12:1-9 · Ev. Luke 8:4-15
+
Com. blaise
+
+
+ 4andrew-corsini +
class-3 · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Matt 25:14-23
+ +
+
+ 5agatha +
class-3 · red · Ep. 1 Cor. 1:26-31 · Ev. Matt 19:3-12.
+ +
+
+ 6titus +
class-3 · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Luke 10:1-9
+
Com. dorothy
+
+
+ 7ef-septuagesima-sunday-3 +
class-2 · violet · Ep. 1 Cor. 13:1-13 · Ev. Luke 18:31-43
+ +
+
+ 8john-of-matha +
class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40
+ +
+
+ 9cyril-of-alexandria +
class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19
+
Com. appollonia
+
+
+ 10ef-ash-wednesday +
class-1 · violet · Ep. Joel 2:12-19 · Ev. Matt 6:16-21
+ +
+
+ 11ef-lent-after-ashes-thursday +
class-3 · violet · Ep. Isa 38:1-6 · Ev. Matt 8:5-13
+
Com. our-lady-of-lourdes
+
+
+ 12ef-lent-after-ashes-friday +
class-3 · violet · Ep. Isa 58:1-9 · Ev. Matt 5:43-48; 6:1-4
+
Com. seven-holy-servite-founders
+
+
+ 13ef-lent-after-ashes-saturday +
class-3 · violet · Ep. Isa 58:9-14 · Ev. Mark 6:47-56
+ +
+
+ 14ef-lent-sunday-1 +
class-1 · violet · Ep. 2 Cor. 6:1-10 · Ev. Matt 4:1-11
+ +
+
+ 15ef-lent-1-monday +
class-3 · violet · Ep. Ezech 34:11-16 · Ev. Matt 25:31-46
+
Com. sts-faustinus-jovita
+
+
+ 16ef-lent-1-tuesday +
class-3 · violet · Ep. Isa 55:6-11 · Ev. Matt 21:10-17
+ +
+
+ 17ef-lent-ember-wed +
class-2 · violet · Ep. 3 Kgs. 19:3-8 · Ev. Matt 12:38-50
+ +
+
+ 18ef-lent-1-thursday +
class-3 · violet · Ep. Ezech 18:1-9 · Ev. Matt 15:21-28
+
Com. simeon
+
+
+ 19ef-lent-ember-fri +
class-2 · violet · Ep. Ezech 18:20-28 · Ev. John 5:1-15
+ +
+
+ 20ef-lent-ember-sat +
class-2 · violet · Ep. 1 Thess. 5:14-23 · Ev. Matt 17:1-9
+ +
+
+ 21ef-lent-sunday-2 +
class-1 · violet · Ep. 1 Thess. 4:1-7 · Ev. Matt 17:1-9
+ +
+
+ 22chair-of-st-peter +
class-2 · white · Ep. 1 Pet 1:1-7 · Ev. Matt 16:13-19
+
Com. ef-lent-2-monday
Com. paul
+
+
+ 23ef-lent-2-tuesday +
class-3 · violet · Ep. 3 Kings 17:8-16 · Ev. Matt 23:1-12
+
Com. peter-damien
+
+
+ 24matthias +
class-2 · red · Ep. Acts 1:15-26 · Ev. Matt 11:25-30
+
Com. ef-lent-2-wednesday
+
+
+ 25ef-lent-2-thursday +
class-3 · violet · Ep. Jer 17:5-10 · Ev. Luke 16:19-31
+ +
+
+ 26ef-lent-2-friday +
class-3 · violet · Ep. Gen 37:6-22 · Ev. Matt 21:33-46
+ +
+
+ 27ef-lent-2-saturday +
class-3 · violet · Ep. Gen 27:6-40 · Ev. Luke 15:11-32
+
Com. gabriel-of-our-lady-of-sorrows
+
+
+ 28ef-lent-sunday-3 +
class-1 · violet · Ep. Eph 5:1-9 · Ev. Luke 11:14-28
+ +
+

Martius

+
+ 1ef-lent-3-monday +
class-3 · violet · Ep. 4 Kings 5:1-15 · Ev. Luke 4:23-30
+ +
+
+ 2ef-lent-3-tuesday +
class-3 · violet · Ep. 4 Kings 4:1-7 · Ev. Matt 18:15-22
+ +
+
+ 3ef-lent-3-wednesday +
class-3 · violet · Ep. Ex 20:12-24 · Ev. Matt 15:1-20
+ +
+
+ 4ef-lent-3-thursday +
class-3 · violet · Ep. Jer 7:1-7 · Ev. Luke 4:38-44.
+
Com. casimir
Com. lucius
+
+
+ 5ef-lent-3-friday +
class-3 · violet · Ep. Num 20:1, 3; 6-13. · Ev. John 4:5-42
+ +
+
+ 6ef-lent-3-saturday +
class-3 · violet · Ep. Dan 13:1-9, 15-17, 19-30, 33-62. · Ev. John 8:1-11
+
Com. sts-felicitas-perpetua
+
+
+ 7ef-lent-sunday-4 +
class-1 · rose · Ep. Gal 4:22-31 · Ev. John 6:1-15
+ +
+
+ 8ef-lent-4-monday +
class-3 · violet · Ep. 3 Kings 3:16-28 · Ev. John 2:13-25
+
Com. john-of-god
+
+
+ 9ef-lent-4-tuesday +
class-3 · violet · Ep. Ex 32:7-14 · Ev. John 7:14-31
+
Com. frances-rome
+
+
+ 10ef-lent-4-wednesday +
class-3 · violet · Ep. Isa. 1:16-19 · Ev. John 9:1-38
+
Com. forty-holy-martyrs-of-sebaste
+
+
+ 11ef-lent-4-thursday +
class-3 · violet · Ep. 4 Kings 4:25-38 · Ev. Luke 7:11-16
+ +
+
+ 12ef-lent-4-friday +
class-3 · violet · Ep. 3 Kings 17:17-24 · Ev. John 11:1-45
+
Com. gregory-the-great
+
+
+ 13ef-lent-4-saturday +
class-3 · violet · Ep. Isa 49:8-15 · Ev. John 8:12-20
+ +
+
+ 14ef-passion-sunday +
class-1 · violet · Ep. Heb 9:11-15. · Ev. John 8:46-59.
+ +
+
+ 15ef-passiontide-1-monday +
class-3 · violet · Ep. Jonas 3:1-10 · Ev. John 7:32-39
+ +
+
+ 16ef-passiontide-1-tuesday +
class-3 · violet · Ep. Dan 14:27, 28-42 · Ev. John 7:1-13
+ +
+
+ 17ef-passiontide-1-wednesday +
class-3 · violet · Ep. Lev 19:1-2, 11-19, 25 · Ev. John 10:22-38
+
Com. patrick
+
+
+ 18ef-passiontide-1-thursday +
class-3 · violet · Ep. Dan 3:25, 34-45. · Ev. Luke 7:36-50
+
Com. cyril-of-jerusalem
+
+
+ 19joseph-spouse-of-the-bl-virgin-mary +
class-1 · white · Ep. Ecclus 45:1-6 · Ev. Matt 1:18-21
+
Com. ef-passiontide-1-friday
+
+
+ 20ef-passiontide-1-saturday +
class-3 · violet · Ep. Jer 18:18-23 · Ev. John 12:10-36
+ +
+
+ 21ef-palm-sunday +
class-1 · violet · Ep. Phil 2:5-11 · Ev. Matt. 26:36-75; 27:1-60.
+ +
+
+ 22ef-passiontide-2-monday +
class-1 · violet · Ep. Isa 50:5-10 · Ev. John 12:1-9
+ +
+
+ 23ef-passiontide-2-tuesday +
class-1 · violet · Ep. Jer 11:18-20 · Ev. Mark 14:32-72; 15, 1-46
+ +
+
+ 24ef-passiontide-2-wednesday +
class-1 · violet · Ep. Isa 53:1-12 · Ev. Luke 22:39-71; 23:1-53
+ +
+
+ 25Feria V in Cena Domini +
class-1 · white · Ep. 1 Cor 11:20-32 · Ev. John 13:1-15
+ +
+
+ 26Feria VI in Passione et Morte Domini +
class-1 · black · Ep. Ex 12:1-11 · Ev. John 18:1-40; 19:1-42
+ +
+
+ 27Sabbato sancto +
class-1 · violet · Ep. Col 3:1-4 · Ev. Matt 28:1-7
+ +
+
+ 28ef-easter-sunday +
class-1 · white · Ep. 1 Cor 5:7-8 · Ev. Mark 16:1-7
+ +
+
+ 29ef-easter-1-monday +
class-1 · white · Ep. Acts 10:37-43. · Ev. Luke 24:13-35
+ +
+
+ 30ef-easter-1-tuesday +
class-1 · white · Ep. Acts 13:16; 13:26-33 · Ev. Luke 24:36-47
+ +
+
+ 31ef-easter-1-wednesday +
class-1 · white · Ep. Acts 3:13-15; 3:17-19 · Ev. John 21:1-14
+ +
+

Aprilis

+
+ 1ef-easter-1-thursday +
class-1 · white · Ep. Acts 8:26-40 · Ev. John 20:11-18
+ +
+
+ 2ef-easter-1-friday +
class-1 · white · Ep. 1 Pet 3:18-22 · Ev. Matt 28:16-20
+ +
+
+ 3ef-easter-1-saturday +
class-1 · white · Ep. 1 Pet 2:1-10 · Ev. John 20:1-9
+ +
+
+ 4ef-low-sunday +
class-1 · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31
+ +
+
+ 5annunciation-of-the-blessed-virgin-mary +
class-1 · white · Ep. Isa 7:10-15 · Ev. Luke 1:26-38
+ +
+
+ 6ef-easter-2-tuesday +
class-4 · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31
+ +
+
+ 7ef-easter-2-wednesday +
class-4 · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31
+ +
+
+ 8ef-easter-2-thursday +
class-4 · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31
+ +
+
+ 9ef-easter-2-friday +
class-4 · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31
+ +
+
+ 10Officium sanctae Mariae in sabbato +
class-4 · white · Ep. Ecclus 24:14-16 · Ev. John 19:25-27
+ +
+
+ 11ef-easter-sunday-3 +
class-2 · white · Ep. 1 Pet 2:21-25 · Ev. John 10:11-16
+ +
+
+ 12ef-easter-3-monday +
class-4 · white · Ep. 1 Pet 2:21-25 · Ev. John 10:11-16
+ +
+
+ 13hermenegild +
class-3 · red · Ep. Wis 10:10-14 · Ev. Luke 14:26-33.
+ +
+
+ 14justin +
class-3 · red · Ep. 1 Cor 1:18-25; 1:30; · Ev. Luke 12:2-8
+
Com. sts-tiburtius-valerian-et-maximus-martyrs
+
+
+ 15ef-easter-3-thursday +
class-4 · white · Ep. 1 Pet 2:21-25 · Ev. John 10:11-16
+ +
+
+ 16ef-easter-3-friday +
class-4 · white · Ep. 1 Pet 2:21-25 · Ev. John 10:11-16
+ +
+
+ 17Officium sanctae Mariae in sabbato +
class-4 · white · Ep. Ecclus 24:14-16 · Ev. John 19:25-27
+
Com. anicetus
+
+
+ 18ef-easter-sunday-4 +
class-2 · white · Ep. 1 Pet 2:11-19 · Ev. John 16:16-22
+ +
+
+ 19ef-easter-4-monday +
class-4 · white · Ep. 1 Pet 2:11-19 · Ev. John 16:16-22
+ +
+
+ 20ef-easter-4-tuesday +
class-4 · white · Ep. 1 Pet 2:11-19 · Ev. John 16:16-22
+ +
+
+ 21anselm +
class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19
+ +
+
+ 22sts-soter-caius +
class-3 · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19
+ +
+
+ 23ef-easter-4-friday +
class-4 · white · Ep. 1 Pet 2:11-19 · Ev. John 16:16-22
+
Com. george
+
+
+ 24fidelis-of-sigmaringen +
class-3 · red · Ep. Wis 5:1-5 · Ev. John 15:1-7
+ +
+
+ 25ef-easter-sunday-5 +
class-2 · white · Ep. Jas 1:17-21 · Ev. John 16:5-14
+
Com. major-litanies
+
+
+ 26sts-cletus-marcellinus +
class-3 · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19
+ +
+
+ 27peter-canisius +
class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19
+ +
+
+ 28paul-of-the-cross +
class-3 · white · Ep. 1 Cor 1:17-25. · Ev. Luke 10:1-9
+ +
+
+ 29peter-of-verona +
class-3 · red · Ep. 2 Tim. 2:8-10; 3:10-12. · Ev. Matt 10:34-42
+ +
+
+ 30catherine-of-siena +
class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13.
+ +
+

Maius

+
+ 1joseph-the-workman +
class-1 · white · Ep. Col. 3:14-15, 17, 23-24 · Ev. Matt 13:54-58
+ +
+
+ 2ef-easter-sunday-6 +
class-2 · white · Ep. Jas 1:22-27 · Ev. John 16:23-30
+ +
+
+ 3ef-rogation-monday +
class-4 · violet · Ep. Jas 1:22-27 · Ev. John 16:23-30
+
Com. sts-alexander-companions
+
+
+ 4monica +
class-3 · white · Ep. 1 Tim. 5:3-10. · Ev. Luke 7:11-16
+ +
+
+ 5ef-ascension-vigil +
class-2 · white · Ep. Eph. 4:7-13. · Ev. John 17:1-11.
+
Com. pius-v
+
+
+ 6ef-ascension +
class-1 · white · Ep. Acts 1:1-11 · Ev. Mark 16:14-20
+ +
+
+ 7stanislaus +
class-3 · red · Ep. Wis 5:1-5 · Ev. John 15:1-7
+ +
+
+ 8Officium sanctae Mariae in sabbato +
class-4 · white · Ep. Ecclus 24:14-16 · Ev. John 19:25-27
+ +
+
+ 9ef-easter-sunday-7 +
class-2 · white · Ep. 1 Pet 4:7-11. · Ev. John 15:26-27; 16:1-4.
+ +
+
+ 10antoninus +
class-3 · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Matt 25:14-23
+
Com. gordiano-and-epimacho
+
+
+ 11sts-philip-james +
class-2 · red · Ep. Wis. 5:1-5 · Ev. John 14:1-13
+ +
+
+ 12sts-nereus-achilleus-domitilla-pancras +
class-3 · red · Ep. Wis. 5:1-5 · Ev. John 4:46-53
+ +
+
+ 13robert-bellarmine +
class-3 · white · Ep. Wis 7:7-14. · Ev. Matt 5:13-19
+ +
+
+ 14ef-easter-7-friday +
class-4 · white · Ep. 1 Pet 4:7-11. · Ev. John 15:26-27; 16:1-4.
+
Com. boniface-martyr
+
+
+ 15ef-pentecost-vigil +
class-1 · red · Ep. Acts 19:1-8. · Ev. John 14:15-21.
+ +
+
+ 16ef-pentecost +
class-1 · red · Ep. Acts 2:1-11. · Ev. John 14:23-31.
+ +
+
+ 17ef-easter-8-monday +
class-1 · red · Ep. Acts 10:34, 42-48 · Ev. John 3:16-21
+ +
+
+ 18ef-easter-8-tuesday +
class-1 · red · Ep. Acts 8:14-17. · Ev. John 10:1-10.
+ +
+
+ 19ef-pentecost-ember-wed +
class-1 · red · Ep. Acts 5:12-16 · Ev. John 6:44-52.
+ +
+
+ 20ef-easter-8-thursday +
class-1 · red · Ep. Acts 8:5-8 · Ev. Luke 9:1-6
+ +
+
+ 21ef-pentecost-ember-fri +
class-1 · red · Ep. Joel 2:23-24; 26-27 · Ev. Luke 5:17-26
+ +
+
+ 22ef-pentecost-ember-sat +
class-1 · red · Ep. Rom 5:1-5. · Ev. Luke 4:38-44.
+ +
+
+ 23ef-trinity +
class-1 · white · Ep. Rom 11:33-36. · Ev. Matt 28:18-20
+ +
+
+ 24ef-time-after-pentecost-1-monday +
class-4 · green · Ep. 1 John 4:8-21 · Ev. Luke 6:36-42
+ +
+
+ 25gregory-vii +
class-3 · white · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19
+
Com. urban-pope-and-martyr
+
+
+ 26philip-neri +
class-3 · white · Ep. Wis 7:7-14. · Ev. Luke 12:35-40
+
Com. eleutherius
+
+
+ 27ef-corpus-christi +
class-1 · white · Ep. 1 Cor 11:23-29 · Ev. John 6:56-59
+ +
+
+ 28augustine-of-canterbury +
class-3 · white · Ep. 1 Thess 2:2-9 · Ev. Luke 10:1-9
+ +
+
+ 29mary-magdalene-de-pazzi +
class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13.
+ +
+
+ 30ef-time-after-pentecost-sunday-2 +
class-2 · green · Ep. 1 John 3:13-18. · Ev. Luke 14:16-24.
+ +
+
+ 31queenship-of-the-blessed-virgin-mary +
class-2 · white · Ep. Eccli 24:5; 14:7; 14:9-11; 24:30-31 · Ev. Luke 1:26-33
+
Com. petronilla
+
+

Iunius

+
+ 1angela-merici +
class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13.
+ +
+
+ 2ef-time-after-pentecost-2-wednesday +
class-4 · green · Ep. 1 John 3:13-18. · Ev. Luke 14:16-24.
+
Com. sts-marcellinus-peter-erasmus
+
+
+ 3ef-time-after-pentecost-2-thursday +
class-4 · green · Ep. 1 John 3:13-18. · Ev. Luke 14:16-24.
+ +
+
+ 4ef-sacred-heart +
class-1 · white · Ep. Eph 3:8-12, 14-19 · Ev. John 19:31-37
+ +
+
+ 5boniface +
class-3 · red · Ep. Ecclus 44:1-15 · Ev. Matt 5:1-12
+ +
+
+ 6ef-time-after-pentecost-sunday-3 +
class-2 · green · Ep. 1 Pet. 5:6-11 · Ev. Luke 15:1-10
+ +
+
+ 7ef-time-after-pentecost-3-monday +
class-4 · green · Ep. 1 Pet. 5:6-11 · Ev. Luke 15:1-10
+ +
+
+ 8ef-time-after-pentecost-3-tuesday +
class-4 · green · Ep. 1 Pet. 5:6-11 · Ev. Luke 15:1-10
+ +
+
+ 9ef-time-after-pentecost-3-wednesday +
class-4 · green · Ep. 1 Pet. 5:6-11 · Ev. Luke 15:1-10
+
Com. sts-primus-felicianus
+
+
+ 10margaret-of-scotland +
class-3 · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52.
+ +
+
+ 11barnabas +
class-3 · red · Ep. Acts 11:21-26; 13:1-3 · Ev. Matt 10:16-22
+ +
+
+ 12john-of-san-fecundo +
class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40
+
Com. basilidus
+
+
+ 13ef-time-after-pentecost-sunday-4 +
class-2 · green · Ep. Rom 8:18-23 · Ev. Luke 5:1-11
+ +
+
+ 14basil-the-great +
class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Luke 14:26-35
+ +
+
+ 15ef-time-after-pentecost-4-tuesday +
class-4 · green · Ep. Rom 8:18-23 · Ev. Luke 5:1-11
+
Com. vitus
+
+
+ 16ef-time-after-pentecost-4-wednesday +
class-4 · green · Ep. Rom 8:18-23 · Ev. Luke 5:1-11
+ +
+
+ 17gregory-barbarigo +
class-3 · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Matt 25:14-23
+ +
+
+ 18ephrem-of-syria +
class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19
+
Com. marcus-and-marcellianus
+
+
+ 19julia-of-falconieri +
class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13.
+
Com. sts-gervasius-and-protasius
+
+
+ 20ef-time-after-pentecost-sunday-5 +
class-2 · green · Ep. 1 Pet 3:8-15. · Ev. Matt 5:20-24.
+ +
+
+ 21aloysius-gongzaga +
class-3 · white · Ep. Sir 31:8-11 · Ev. Matt 22:29-40
+ +
+
+ 22paulinus-of-nola +
class-3 · white · Ep. 2 Cor. 8:9-15 · Ev. Luke 12:32-34
+ +
+
+ 23vigil-of-the-nativity-of-st-john-the-baptist +
class-2 · violet · Ep. Jer 1:4-10 · Ev. Luke 1:5-17
+ +
+
+ 24nativity-of-st-john-the-baptist +
class-1 · white · Ep. Isa 49:1-3, 5-7. · Ev. Luke 1:57-68
+ +
+
+ 25william +
class-3 · white · Ep. Ecclus 45:1-6 · Ev. Matt 19:27-29.
+ +
+
+ 26sts-john-paul +
class-3 · red · Ep. Eccli 44:10-15 · Ev. Luke 12:1-8
+ +
+
+ 27ef-time-after-pentecost-sunday-6 +
class-2 · green · Ep. Rom 6:3-11. · Ev. Mark 8:1-9
+ +
+
+ 28vigil-of-sts-peter-paul +
class-2 · violet · Ep. Acts 3:1-10 · Ev. John 21:15-19
+ +
+
+ 29sts-peter-paul +
class-1 · red · Ep. Acts 12:1-11 · Ev. Matt 16:13-19
+ +
+
+ 30in-commemoratione-sancti-pauli-apostoli +
class-3 · red · Ep. Gal 1:11-20 · Ev. Matt 10:16-22
+
Com. commemoration-of-st-peter
+
+

Iulius

+
+ 1precious-blood-of-our-lord-jesus-christ +
class-1 · red · Ep. Heb 9:11-15. · Ev. John 19:30-35
+ +
+
+ 2visitation-of-the-blessed-virgin-mary +
class-2 · white · Ep. Song 2:8-14 · Ev. Luke 1:39-47
+
Com. processus-and-martinian
+
+
+ 3irenaeus +
class-3 · red · Ep. 2 Tim. 3:14-17; 4:1-5 · Ev. Matt 10:28-33
+ +
+
+ 4ef-time-after-pentecost-sunday-7 +
class-2 · green · Ep. Rom 6:19-23 · Ev. Matt 7:15-21
+ +
+
+ 5anthony-mary-zaccariah +
class-3 · white · Ep. 1 Tim. 4:8-16 · Ev. Mark 10:15-21
+ +
+
+ 6ef-time-after-pentecost-7-tuesday +
class-4 · green · Ep. Rom 6:19-23 · Ev. Matt 7:15-21
+ +
+
+ 7sts-cyril-methodius +
class-3 · white · Ep. Heb 7:23-27 · Ev. Luke 10:1-9
+ +
+
+ 8elizabeth-of-portugal +
class-3 · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52.
+ +
+
+ 9ef-time-after-pentecost-7-friday +
class-4 · green · Ep. Rom 6:19-23 · Ev. Matt 7:15-21
+ +
+
+ 10seven-holy-brothers-and-sts-rufina-secunda +
class-3 · red · Ep. Prov 31:10-31 · Ev. Matt 12:46-50
+ +
+
+ 11ef-time-after-pentecost-sunday-8 +
class-2 · green · Ep. Rom 8:12-17 · Ev. Luke 16:1-9
+ +
+
+ 12john-gualbert +
class-3 · white · Ep. Ecclus 45:1-6 · Ev. Matt 5:43-48
+
Com. naboris-et-felicis
+
+
+ 13ef-time-after-pentecost-8-tuesday +
class-4 · green · Ep. Rom 8:12-17 · Ev. Luke 16:1-9
+ +
+
+ 14bonaventure +
class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19
+ +
+
+ 15henry-the-emperor +
class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40
+ +
+
+ 16ef-time-after-pentecost-8-friday +
class-4 · green · Ep. Rom 8:12-17 · Ev. Luke 16:1-9
+
Com. our-lady-of-mt-carmel
+
+
+ 17Officium sanctae Mariae in sabbato +
class-4 · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28
+
Com. alexis
+
+
+ 18ef-time-after-pentecost-sunday-9 +
class-2 · green · Ep. 1 Cor. 10:6-13 · Ev. Luke 19:41-47
+ +
+
+ 19vincent-de-paul +
class-3 · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 10:1-9
+ +
+
+ 20jerome-emiliani +
class-3 · white · Ep. Isa 58:7-11 · Ev. Matt 19:13-21
+
Com. margaret
+
+
+ 21laurence-of-brindisi +
class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19
+
Com. praxedis-virginis
+
+
+ 22mary-magdalene +
class-3 · white · Ep. Song 3:2-5; 8:6-7 · Ev. Luke 7:36-50
+ +
+
+ 23apollinaris +
class-3 · red · Ep. 1 Pet. 5:1-11 · Ev. Luke 22:24-30
+
Com. liborii
+
+
+ 24Officium sanctae Mariae in sabbato +
class-4 · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28
+
Com. christina
+
+
+ 25ef-time-after-pentecost-sunday-10 +
class-2 · green · Ep. 1 Cor. 12:2-11 · Ev. Luke 18:9-14
+
Com. james-the-greater
+
+
+ 26anne-mother-of-the-blessed-virgin +
class-2 · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52.
+ +
+
+ 27ef-time-after-pentecost-10-tuesday +
class-4 · green · Ep. 1 Cor. 12:2-11 · Ev. Luke 18:9-14
+
Com. pantaleon
+
+
+ 28sts-nazarius-celsus-st-victor-i-st-innocent-i +
class-3 · red · Ep. Wis 10:17-20 · Ev. Luke 21:9-19
+ +
+
+ 29martha +
class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Luke 10:38-42
+
Com. felicis-simplicii-faustini-et-beatricis
+
+
+ 30ef-time-after-pentecost-10-friday +
class-4 · green · Ep. 1 Cor. 12:2-11 · Ev. Luke 18:9-14
+
Com. sts-abdon-sennen
+
+
+ 31ignatius-loyola +
class-3 · white · Ep. 2 Tim. 2:8-10; 3:10-12. · Ev. Luke 10:1-9
+ +
+

Augustus

+
+ 1ef-time-after-pentecost-sunday-11 +
class-2 · green · Ep. 1 Cor. 15:1-10 · Ev. Mark 7:31-37
+ +
+
+ 2alphonsus-liguori +
class-3 · white · Ep. 2 Tim. 2:1-7 · Ev. Luke 10:1-9
+
Com. stephen-i-pope-and-martyr
+
+
+ 3ef-time-after-pentecost-11-tuesday +
class-4 · green · Ep. 1 Cor. 15:1-10 · Ev. Mark 7:31-37
+ +
+
+ 4dominic +
class-3 · white · Ep. 2 Tim. 4:1-8 · Ev. Luke 12:35-40
+ +
+
+ 5dedication-of-the-basilica-of-st-mary-major +
class-3 · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28
+ +
+
+ 6transfiguration-of-our-lord +
class-2 · white · Ep. 2 Pet. 1:16-19 · Ev. Matt 17:1-9
+
Com. pope-sixtus-ii-felicissimus-and-agapitus-martyrs
+
+
+ 7cajetan +
class-3 · white · Ep. Sir 31:8-11 · Ev. Matt 6:24-33
+
Com. donatus
+
+
+ 8ef-time-after-pentecost-sunday-12 +
class-2 · green · Ep. 2 Cor. 3:4-9 · Ev. Luke 10:23-37
+ +
+
+ 9vigil-of-st-lawrence +
class-3 · violet · Ep. Ecclus 51:1-8, 12 · Ev. Matt 16:24-27
+
Com. romanus
+
+
+ 10lawrence +
class-2 · red · Ep. 2 Cor. 9:6-10 · Ev. John 12:24-26
+ +
+
+ 11ef-time-after-pentecost-12-wednesday +
class-4 · green · Ep. 2 Cor. 3:4-9 · Ev. Luke 10:23-37
+
Com. sts-tiburtius-susanna
+
+
+ 12clare +
class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13.
+ +
+
+ 13ef-time-after-pentecost-12-friday +
class-4 · green · Ep. 2 Cor. 3:4-9 · Ev. Luke 10:23-37
+
Com. sts-hippolytus-cassian
+
+
+ 14vigil-of-the-assumption +
class-2 · violet · Ep. Sir 24:23-31 · Ev. Luke 11:27-28
+
Com. eusebius-confessor
+
+
+ 15assumption-of-the-blessed-virgin-mary +
class-1 · white · Ep. Judith 13:22-25; 15:10 · Ev. Luke 1:41-50
+
Com. ef-time-after-pentecost-sunday-13
+
+
+ 16joachim-father-of-the-blessed-virgin +
class-2 · white · Ep. Sir 31:8-11 · Ev. Matt 1:1-16
+ +
+
+ 17hyacinth +
class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40
+ +
+
+ 18ef-time-after-pentecost-13-wednesday +
class-4 · green · Ep. Gal 3:16-22 · Ev. Luke 17:11-19
+
Com. agapitus
+
+
+ 19john-eudes +
class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40
+ +
+
+ 20bernard-of-clairvaux +
class-3 · white · Ep. Ecclus 39:6-14 · Ev. Matt 5:13-19
+ +
+
+ 21jane-frances-de-chantal +
class-3 · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52.
+ +
+
+ 22ef-time-after-pentecost-sunday-14 +
class-2 · green · Ep. Gal 5:16-24 · Ev. Matt 6:24-33
+
Com. immaculate-heart-of-mary
+
+
+ 23philip-benizi +
class-3 · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 12:32-34
+ +
+
+ 24bartholomew +
class-2 · red · Ep. 1 Cor. 12:27-31 · Ev. Luke 6:12-19
+ +
+
+ 25louis-ix +
class-3 · white · Ep. Wis 10:10-14 · Ev. Luke 19:12-26
+ +
+
+ 26ef-time-after-pentecost-14-thursday +
class-4 · green · Ep. Gal 5:16-24 · Ev. Matt 6:24-33
+
Com. zephyrinus
+
+
+ 27joseph-calasance +
class-3 · white · Ep. Wis 10:10-14 · Ev. Matt 18:1-5
+ +
+
+ 28augustine +
class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19
+
Com. hermes
+
+
+ 29ef-time-after-pentecost-sunday-15 +
class-2 · green · Ep. Gal 5:25-26; 6:1-10 · Ev. Luke 7:11-16
+ +
+
+ 30rose-of-lima +
class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13.
+
Com. sts-felix-and-adauctus
+
+
+ 31raymond-nonnatus +
class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40
+ +
+

September

+
+ 1ef-time-after-pentecost-15-wednesday +
class-4 · green · Ep. Gal 5:25-26; 6:1-10 · Ev. Luke 7:11-16
+
Com. giles
Com. twelve-holy-brothers-martyrs
+
+
+ 2stephen-of-hungary +
class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 19:12-26
+ +
+
+ 3pius-x +
class-3 · white · Ep. 1 Thess. 2:2-8 · Ev. John 21:15-17
+ +
+
+ 4Officium sanctae Mariae in sabbato +
class-4 · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28
+ +
+
+ 5ef-time-after-pentecost-sunday-16 +
class-2 · green · Ep. Eph 3:13-21 · Ev. Luke 14:1-11
+ +
+
+ 6ef-time-after-pentecost-16-monday +
class-4 · green · Ep. Eph 3:13-21 · Ev. Luke 14:1-11
+ +
+
+ 7ef-time-after-pentecost-16-tuesday +
class-4 · green · Ep. Eph 3:13-21 · Ev. Luke 14:1-11
+ +
+
+ 8nativity-of-the-blessed-virgin-mary +
class-2 · white · Ep. Prov 8:22-35 · Ev. Matt 1:1-16
+
Com. hadriani
+
+
+ 9ef-time-after-pentecost-16-thursday +
class-4 · green · Ep. Eph 3:13-21 · Ev. Luke 14:1-11
+
Com. gorgonius
+
+
+ 10nicholas-of-tolentino +
class-3 · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 12:32-34
+ +
+
+ 11Officium sanctae Mariae in sabbato +
class-4 · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28
+
Com. sts-protus-hyacinth
+
+
+ 12ef-time-after-pentecost-sunday-17 +
class-2 · green · Ep. Eph 4:1-6 · Ev. Matt 22:34-46
+ +
+
+ 13ef-time-after-pentecost-17-monday +
class-4 · green · Ep. Eph 4:1-6 · Ev. Matt 22:34-46
+ +
+
+ 14exaltation-of-the-holy-cross +
class-2 · red · Ep. Phil 2:5-11 · Ev. John 12:31-36
+ +
+
+ 15seven-sorrows-of-the-blessed-virgin-mary +
class-2 · white · Ep. Judith 13:22; 13:23-25 · Ev. John 19:25-27
+
Com. nicomedes
+
+
+ 16sts-cornelius-cyprian +
class-3 · red · Ep. Wis 3:1-8 · Ev. Luke 21:9-19
+
Com. sts-euphemia-lucy-and-geminianus
+
+
+ 17ef-time-after-pentecost-17-friday +
class-4 · green · Ep. Eph 4:1-6 · Ev. Matt 22:34-46
+
Com. stigmata-of-st-francis
+
+
+ 18joseph-of-cupertino +
class-3 · white · Ep. 1 Cor 13:1-8 · Ev. Matt 22:1-14
+ +
+
+ 19ef-time-after-pentecost-sunday-18 +
class-2 · green · Ep. 1 Cor. 1:4-8 · Ev. Matt 9:1-8
+ +
+
+ 20ef-time-after-pentecost-18-monday +
class-4 · green · Ep. 1 Cor. 1:4-8 · Ev. Matt 9:1-8
+
Com. sts-eustace-companions
+
+
+ 21matthew +
class-2 · red · Ep. Ezek 1:10-14 · Ev. Matt 9:9-13
+ +
+
+ 22ef-september-ember-wed +
class-2 · violet · Ep. 2 Esd. 8:1-10 · Ev. Mark 9:16-28
+
Com. thomas-of-villanova
+
+
+ 23linus +
class-3 · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19
+
Com. thecla
+
+
+ 24ef-september-ember-fri +
class-2 · violet · Ep. Osee 14:2-10 · Ev. Luke 7:36-50
+
Com. our-lady-of-ransom
+
+
+ 25ef-september-ember-sat +
class-2 · violet · Ep. Heb 9:2-12 · Ev. Luke 13:6-17
+ +
+
+ 26ef-time-after-pentecost-sunday-19 +
class-2 · green · Ep. Eph 4:23-28 · Ev. Matt 22:1-14
+ +
+
+ 27sts-cosmas-damian +
class-3 · red · Ep. Wis 5:16-20 · Ev. Luke 6:17-23
+ +
+
+ 28wenceslaus +
class-3 · red · Ep. Wis 10:10-14 · Ev. Matt 10:34-42
+ +
+
+ 29dedication-of-st-michael-the-archangel +
class-1 · white · Ep. Rev 1:1-5 · Ev. Matt 18:1-10
+ +
+
+ 30jerome +
class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19
+ +
+

October

+
+ 1ef-time-after-pentecost-19-friday +
class-4 · green · Ep. Eph 4:23-28 · Ev. Matt 22:1-14
+
Com. remigius
+
+
+ 2holy-guardian-angels +
class-3 · white · Ep. Exod 23:20-23 · Ev. Matt 18:1-10
+ +
+
+ 3ef-time-after-pentecost-sunday-20 +
class-2 · green · Ep. Eph 5:15-21 · Ev. John 4:46-53
+ +
+
+ 4francis-of-assisi +
class-3 · white · Ep. Gal 6:14-18 · Ev. Matt 11:25-30
+ +
+
+ 5ef-time-after-pentecost-20-tuesday +
class-4 · green · Ep. Eph 5:15-21 · Ev. John 4:46-53
+
Com. placid-companions
+
+
+ 6bruno +
class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40
+ +
+
+ 7our-lady-of-the-rosary +
class-2 · white · Ep. Prov 8:22-24, 32-35. · Ev. Luke 1:26-38
+
Com. mark-i
+
+
+ 8bridget-of-sweden +
class-3 · white · Ep. 1 Tim. 5:3-10. · Ev. Matt 13:44-52.
+
Com. sergio-baccho-marcello-and-apulejo-martyrs
+
+
+ 9john-leonardi +
class-3 · white · Ep. 2 Cor 4:1-6; 4:15-18 · Ev. Luke 10:1-9
+
Com. dionysius-and-companions
+
+
+ 10ef-time-after-pentecost-sunday-21 +
class-2 · green · Ep. Eph 6:10-17 · Ev. Matt 18:23-35
+ +
+
+ 11maternity-of-the-blessed-virgin-mary +
class-2 · white · Ep. Sir 24:23-31 · Ev. Luke 2:43-51
+ +
+
+ 12ef-time-after-pentecost-21-tuesday +
class-4 · green · Ep. Eph 6:10-17 · Ev. Matt 18:23-35
+ +
+
+ 13edward +
class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40
+ +
+
+ 14callistus-i +
class-3 · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19
+ +
+
+ 15teresa-of-avila +
class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13.
+ +
+
+ 16hedwig +
class-3 · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52.
+ +
+
+ 17ef-time-after-pentecost-sunday-22 +
class-2 · green · Ep. Phil 1:6-11 · Ev. Matt 22:15-21
+ +
+
+ 18luke-the-evangelist +
class-2 · red · Ep. 2 Cor. 8:16-24 · Ev. Luke 10:1-9
+ +
+
+ 19peter-of-alcantara +
class-3 · white · Ep. Phil 3:7-12 · Ev. Luke 12:32-34
+ +
+
+ 20john-cantius +
class-3 · white · Ep. James 2:12-17 · Ev. Luke 12:35-40
+ +
+
+ 21ef-time-after-pentecost-22-thursday +
class-4 · green · Ep. Phil 1:6-11 · Ev. Matt 22:15-21
+
Com. hilarion
Com. ursula-and-companions
+
+
+ 22ef-time-after-pentecost-22-friday +
class-4 · green · Ep. Phil 1:6-11 · Ev. Matt 22:15-21
+ +
+
+ 23anthony-mary-claret +
class-3 · white · Ep. Heb 7:23-27 · Ev. Matt 24:42-47
+ +
+
+ 24ef-time-after-pentecost-sunday-23 +
class-2 · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26
+ +
+
+ 25ef-time-after-pentecost-23-monday +
class-4 · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26
+
Com. sts-chrysanthus-daria
+
+
+ 26ef-time-after-pentecost-23-tuesday +
class-4 · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26
+
Com. evaristus
+
+
+ 27ef-time-after-pentecost-23-wednesday +
class-4 · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26
+ +
+
+ 28sts-simon-jude +
class-2 · red · Ep. Eph. 4:7-13. · Ev. John 15:17-25
+ +
+
+ 29ef-time-after-pentecost-23-friday +
class-4 · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26
+ +
+
+ 30Officium sanctae Mariae in sabbato +
class-4 · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28
+ +
+
+ 31ef-christ-the-king +
class-1 · white · Ep. Col 1:12-20. · Ev. John 18:33-37
+ +
+

November

+
+ 1all-saints +
class-1 · white · Ep. Apoc 7:2-12 · Ev. Matt 5:1-12
+ +
+
+ 2commemoration-of-all-souls +
class-1 · black · Ep. 1 Cor. 15:51-57 · Ev. John 5:25-29
+ +
+
+ 3ef-time-after-pentecost-24-wednesday +
class-4 · green · Ep. Col 1:12-20. · Ev. John 18:33-37
+ +
+
+ 4charles-borromeo +
class-3 · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Matt 25:14-23
+
Com. sts-vitalis-and-agricola-martyrs
+
+
+ 5ef-time-after-pentecost-24-friday +
class-4 · green · Ep. Col 1:12-20. · Ev. John 18:33-37
+ +
+
+ 6Officium sanctae Mariae in sabbato +
class-4 · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28
+ +
+
+ 7ef-time-after-epiphany-sunday-5 +
class-2 · green · Ep. Col 3:12-17 · Ev. Matt 13:24-30
+ +
+
+ 8ef-time-after-pentecost-25-monday +
class-4 · green · Ep. Col 3:12-17 · Ev. Matt 13:24-30
+
Com. four-holy-crowned-martyrs
+
+
+ 9dedication-of-the-archbasilica-of-our-holy-savior +
class-2 · white · Ep. Rev 21:2-5 · Ev. Luke 19:1-10
+
Com. theodore
+
+
+ 10andrew-avellino +
class-3 · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40
+
Com. sts-tryphonis-respicii-et-nymphae
+
+
+ 11martin-of-tours +
class-3 · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Luke 11:33-36
+
Com. menna
+
+
+ 12martin-i +
class-3 · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19
+ +
+
+ 13didacus +
class-3 · white · Ep. 1 Cor 4:9-14 · Ev. Luke 12:32-34
+ +
+
+ 14ef-time-after-epiphany-sunday-6 +
class-2 · green · Ep. 1 Thess 1:2-10 · Ev. Matt 13:31-35
+ +
+
+ 15albert-the-great +
class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19
+ +
+
+ 16gertrude-the-great +
class-3 · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13.
+ +
+
+ 17gregory-the-wonderworker +
class-3 · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Mark 11:22-24
+ +
+
+ 18dedication-of-the-basilicas-of-sts-peter-paul +
class-3 · white · Ep. Rev 21:2-5 · Ev. Luke 19:1-10
+ +
+
+ 19elizabeth-of-hungary +
class-3 · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52.
+
Com. pontian
+
+
+ 20felix-of-valois +
class-3 · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 12:32-34
+ +
+
+ 21ef-time-after-pentecost-sunday-24 +
class-2 · green · Ep. Col 1:9-14 · Ev. Matt 24:15-35
+ +
+
+ 22cecilia +
class-3 · red · Ep. Sir 51:13-17. · Ev. Matt 25:1-13.
+ +
+
+ 23clement-i +
class-3 · red · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 16:13-19
+
Com. felicity
+
+
+ 24john-of-the-cross +
class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19
+
Com. chrysogonus
+
+
+ 25catherine-of-alexandria +
class-3 · red · Ep. Sir 51:1-8; 51:12 · Ev. Matt 25:1-13.
+ +
+
+ 26sylvester +
class-3 · white · Ep. Ecclus 45:1-6 · Ev. Matt 19:27-29.
+
Com. peter-of-alexandria
+
+
+ 27Officium sanctae Mariae in sabbato +
class-4 · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28
+ +
+
+ 28ef-advent-sunday-1 +
class-1 · violet · Ep. Rom 13:11-14 · Ev. Luke 21:25-33
+ +
+
+ 29ef-advent-1-monday +
class-3 · violet · Ep. Rom 13:11-14 · Ev. Luke 21:25-33
+
Com. saturninus
+
+
+ 30andrew +
class-2 · red · Ep. Rom 10:10-18 · Ev. Matt 4:18-22
+
Com. ef-advent-1-tuesday
+
+

December

+
+ 1ef-advent-1-wednesday +
class-3 · violet · Ep. Rom 13:11-14 · Ev. Luke 21:25-33
+ +
+
+ 2vivian +
class-3 · red · Ep. Sir 51:13-17. · Ev. Matt 13:44-52.
+
Com. ef-advent-1-thursday
+
+
+ 3francis-xavier +
class-3 · white · Ep. Rom 10:10-18 · Ev. Mark 16:15-18
+
Com. ef-advent-1-friday
+
+
+ 4peter-chrysologus +
class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19
+
Com. ef-advent-1-saturday
Com. barbara
+
+
+ 5ef-advent-sunday-2 +
class-1 · violet · Ep. Rom 15:4-13 · Ev. Matt 11:2-10
+ +
+
+ 6nicholas +
class-3 · white · Ep. Heb 13:7-17 · Ev. Matt 25:14-23
+
Com. ef-advent-2-monday
+
+
+ 7ambrose +
class-3 · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19
+
Com. ef-advent-2-tuesday
+
+
+ 8immaculate-conception-of-the-blessed-virgin-mary +
class-1 · white · Ep. Prov 8:22-35 · Ev. Luke 1:26-28
+
Com. ef-advent-2-wednesday
+
+
+ 9ef-advent-2-thursday +
class-3 · violet · Ep. Rom 15:4-13 · Ev. Matt 11:2-10
+ +
+
+ 10ef-advent-2-friday +
class-3 · violet · Ep. Rom 15:4-13 · Ev. Matt 11:2-10
+
Com. melchiades
+
+
+ 11damasus-i +
class-3 · white · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19
+
Com. ef-advent-2-saturday
+
+
+ 12ef-advent-sunday-3 +
class-1 · rose · Ep. Phil 4:4-7 · Ev. John 1:19-28
+ +
+
+ 13lucy +
class-3 · red · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 13:44-52.
+
Com. ef-advent-3-monday
+
+
+ 14ef-advent-3-tuesday +
class-3 · violet · Ep. Phil 4:4-7 · Ev. John 1:19-28
+ +
+
+ 15ef-advent-ember-wed +
class-2 · violet · Ep. Isa 7:10-15 · Ev. Luke 1:26-38
+ +
+
+ 16eusebius +
class-3 · red · Ep. 2 Cor. 1:3-7 · Ev. Matt 16:24-27.
+
Com. ef-advent-3-thursday
+
+
+ 17ef-advent-ember-fri +
class-2 · violet · Ep. Isa 11:1-5 · Ev. Luke 1:39-47
+ +
+
+ 18ef-advent-ember-sat +
class-2 · violet · Ep. 2 Thess 2:1-8 · Ev. Luke 3:1-6
+ +
+
+ 19ef-advent-sunday-4 +
class-1 · violet · Ep. 1 Cor. 4:1-5 · Ev. Luke 3:1-6
+ +
+
+ 20ef-advent-4-monday +
class-2 · violet · Ep. 1 Cor. 4:1-5 · Ev. Luke 3:1-6
+ +
+
+ 21thomas +
class-2 · red · Ep. Eph 2:19-22 · Ev. John 20:24-29
+
Com. ef-advent-4-tuesday
+
+
+ 22ef-advent-4-wednesday +
class-2 · violet · Ep. 1 Cor. 4:1-5 · Ev. Luke 3:1-6
+ +
+
+ 23ef-advent-4-thursday +
class-2 · violet · Ep. 1 Cor. 4:1-5 · Ev. Luke 3:1-6
+ +
+
+ 24ef-nativity-vigil +
class-1 · violet · Ep. Rom 1:1-6 · Ev. Matt 1:18-21
+ +
+
+ 25ef-nativity +
class-1 · white · Ep. Heb 1:1-12 · Ev. John 1:1-14
+ +
+
+ 26ef-christmas-sunday-0 +
class-2 · white · Ep. Gal 4:1-7 · Ev. Luke 2:33-40
+
Com. stephen
+
+
+ 27john-the-evangelist +
class-2 · white · Ep. Ecclus 15:1-6 · Ev. John 21:19-24
+
Com. ef-nativity-octave-day-3
+
+
+ 28holy-innocents +
class-2 · red · Ep. Apoc 14:1-5 · Ev. Matt 2:13-18
+
Com. ef-nativity-octave-day-4
+
+
+ 29ef-nativity-octave-day-5 +
class-2 · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20
+
Com. thomas-becket
+
+
+ 30ef-nativity-octave-day-6 +
class-2 · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20
+ +
+
+ 31ef-nativity-octave-day-7 +
class-2 · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20
+
Com. silvester
+
+ + diff --git a/test/golden/ordo-2027.md b/test/golden/ordo-2027.md new file mode 100644 index 0000000..4980cb6 --- /dev/null +++ b/test/golden/ordo-2027.md @@ -0,0 +1,2122 @@ + + + +# Ordo 2027 · ef + + +## Ianuarius + + +**1** ef-circumcision +`class-1` · white · Ep. Titus 2:11-15 · Ev. Luke 2:21 + + + +**2** Officium sanctae Mariae in sabbato +`class-4` · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20 + + + +**3** Sanctissimi Nominis Iesu +`class-2` · white · Ep. Acts 4:8-12 · Ev. Luke 2:21 + + + +**4** ef-christmas-1-monday +`class-4` · white · Ep. Titus 2:11-15 · Ev. Luke 2:21 + + + +**5** ef-christmas-1-tuesday +`class-4` · white · Ep. Titus 2:11-15 · Ev. Luke 2:21 + +- Com. telesphorus-pope-and-martyr + + + +**6** ef-epiphany +`class-1` · white · Ep. Isa 60:1-6 · Ev. Matt 2:1-12 + + + +**7** ef-christmas-2-thursday +`class-4` · white · Ep. Isa 60:1-6 · Ev. Matt 2:1-12 + + + +**8** ef-christmas-2-friday +`class-4` · white · Ep. Isa 60:1-6 · Ev. Matt 2:1-12 + + + +**9** Officium sanctae Mariae in sabbato +`class-4` · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20 + + + +**10** Sanctae Familiae Iesu, Mariae, Ioseph +`class-2` · white · Ep. Col 3:12-17 · Ev. Luke 2:42-52 + + + +**11** ef-time-after-epiphany-1-monday +`class-4` · white · Ep. Rom 12:1-5 · Ev. Luke 2:42-52 + +- Com. hyginus-pope-and-martyr + + + +**12** ef-time-after-epiphany-1-tuesday +`class-4` · white · Ep. Rom 12:1-5 · Ev. Luke 2:42-52 + + + +**13** commemoration-of-the-baptism-of-the-lord +`class-2` · white · Ep. Isa 60:1-6 · Ev. John 1:29-34 + + + +**14** hilary +`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 + +- Com. felicis + + + +**15** paul-the-first-hermit +`class-3` · white · Ep. Phil 3:7-12 · Ev. Matt 11:25-30 + +- Com. maur-abbot + + + +**16** marcellus-i +`class-3` · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19 + + + +**17** ef-time-after-epiphany-sunday-2 +`class-2` · green · Ep. Rom 12:6-16 · Ev. John 2:1-11 + + + +**18** ef-time-after-epiphany-2-monday +`class-4` · green · Ep. Rom 12:6-16 · Ev. John 2:1-11 + +- Com. prisca + + + +**19** ef-time-after-epiphany-2-tuesday +`class-4` · green · Ep. Rom 12:6-16 · Ev. John 2:1-11 + +- Com. canute-martyr + +- Com. sts-marius-martha-audifax-abachum + + + +**20** sts-fabian-sebastian +`class-3` · red · Ep. Heb 11:33-39 · Ev. Luke 6:17-23 + + + +**21** agnes +`class-3` · red · Ep. Sir 51:1-8; 51:12 · Ev. Matt 25:1-13. + + + +**22** sts-vincent-anastasius +`class-3` · red · Ep. Wis 3:1-8 · Ev. Luke 21:9-19 + + + +**23** raymond-of-pe-afort +`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 + +- Com. emerentiana + + + +**24** ef-septuagesima-sunday-1 +`class-2` · violet · Ep. 1 Cor. 9:24-27; 10:1-5 · Ev. Matt 20:1-16 + + + +**25** conversion-of-st-paul +`class-3` · white · Ep. Acts 9:1-22 · Ev. Matt 19:27-29. + +- Com. peter + + + +**26** polycarp +`class-3` · red · Ep. 1 John 3:10-16 · Ev. Matt 10:26-32. + + + +**27** john-chrysostom +`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 + + + +**28** peter-nolasco +`class-3` · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 12:32-34 + +- Com. agnes-secundo + + + +**29** francis-de-sales +`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 + + + +**30** martina +`class-3` · red · Ep. Sir 51:1-8; 51:12 · Ev. Matt 25:1-13. + + + +**31** ef-septuagesima-sunday-2 +`class-2` · violet · Ep. 2 Cor. 11:19-33; 12:1-9 · Ev. Luke 8:4-15 + + + +## Februarius + + +**1** ignatius-of-antioch +`class-3` · red · Ep. Rom 8:35-39 · Ev. John 12:24-26 + + + +**2** purification-of-the-blessed-virgin-mary +`class-2` · white · Ep. Mal 3:1-4 · Ev. Luke 2:22-32 + + + +**3** ef-septuagesima-2-wednesday +`class-4` · violet · Ep. 2 Cor. 11:19-33; 12:1-9 · Ev. Luke 8:4-15 + +- Com. blaise + + + +**4** andrew-corsini +`class-3` · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Matt 25:14-23 + + + +**5** agatha +`class-3` · red · Ep. 1 Cor. 1:26-31 · Ev. Matt 19:3-12. + + + +**6** titus +`class-3` · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Luke 10:1-9 + +- Com. dorothy + + + +**7** ef-septuagesima-sunday-3 +`class-2` · violet · Ep. 1 Cor. 13:1-13 · Ev. Luke 18:31-43 + + + +**8** john-of-matha +`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 + + + +**9** cyril-of-alexandria +`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 + +- Com. appollonia + + + +**10** ef-ash-wednesday +`class-1` · violet · Ep. Joel 2:12-19 · Ev. Matt 6:16-21 + + + +**11** ef-lent-after-ashes-thursday +`class-3` · violet · Ep. Isa 38:1-6 · Ev. Matt 8:5-13 + +- Com. our-lady-of-lourdes + + + +**12** ef-lent-after-ashes-friday +`class-3` · violet · Ep. Isa 58:1-9 · Ev. Matt 5:43-48; 6:1-4 + +- Com. seven-holy-servite-founders + + + +**13** ef-lent-after-ashes-saturday +`class-3` · violet · Ep. Isa 58:9-14 · Ev. Mark 6:47-56 + + + +**14** ef-lent-sunday-1 +`class-1` · violet · Ep. 2 Cor. 6:1-10 · Ev. Matt 4:1-11 + + + +**15** ef-lent-1-monday +`class-3` · violet · Ep. Ezech 34:11-16 · Ev. Matt 25:31-46 + +- Com. sts-faustinus-jovita + + + +**16** ef-lent-1-tuesday +`class-3` · violet · Ep. Isa 55:6-11 · Ev. Matt 21:10-17 + + + +**17** ef-lent-ember-wed +`class-2` · violet · Ep. 3 Kgs. 19:3-8 · Ev. Matt 12:38-50 + + + +**18** ef-lent-1-thursday +`class-3` · violet · Ep. Ezech 18:1-9 · Ev. Matt 15:21-28 + +- Com. simeon + + + +**19** ef-lent-ember-fri +`class-2` · violet · Ep. Ezech 18:20-28 · Ev. John 5:1-15 + + + +**20** ef-lent-ember-sat +`class-2` · violet · Ep. 1 Thess. 5:14-23 · Ev. Matt 17:1-9 + + + +**21** ef-lent-sunday-2 +`class-1` · violet · Ep. 1 Thess. 4:1-7 · Ev. Matt 17:1-9 + + + +**22** chair-of-st-peter +`class-2` · white · Ep. 1 Pet 1:1-7 · Ev. Matt 16:13-19 + +- Com. ef-lent-2-monday + +- Com. paul + + + +**23** ef-lent-2-tuesday +`class-3` · violet · Ep. 3 Kings 17:8-16 · Ev. Matt 23:1-12 + +- Com. peter-damien + + + +**24** matthias +`class-2` · red · Ep. Acts 1:15-26 · Ev. Matt 11:25-30 + +- Com. ef-lent-2-wednesday + + + +**25** ef-lent-2-thursday +`class-3` · violet · Ep. Jer 17:5-10 · Ev. Luke 16:19-31 + + + +**26** ef-lent-2-friday +`class-3` · violet · Ep. Gen 37:6-22 · Ev. Matt 21:33-46 + + + +**27** ef-lent-2-saturday +`class-3` · violet · Ep. Gen 27:6-40 · Ev. Luke 15:11-32 + +- Com. gabriel-of-our-lady-of-sorrows + + + +**28** ef-lent-sunday-3 +`class-1` · violet · Ep. Eph 5:1-9 · Ev. Luke 11:14-28 + + + +## Martius + + +**1** ef-lent-3-monday +`class-3` · violet · Ep. 4 Kings 5:1-15 · Ev. Luke 4:23-30 + + + +**2** ef-lent-3-tuesday +`class-3` · violet · Ep. 4 Kings 4:1-7 · Ev. Matt 18:15-22 + + + +**3** ef-lent-3-wednesday +`class-3` · violet · Ep. Ex 20:12-24 · Ev. Matt 15:1-20 + + + +**4** ef-lent-3-thursday +`class-3` · violet · Ep. Jer 7:1-7 · Ev. Luke 4:38-44. + +- Com. casimir + +- Com. lucius + + + +**5** ef-lent-3-friday +`class-3` · violet · Ep. Num 20:1, 3; 6-13. · Ev. John 4:5-42 + + + +**6** ef-lent-3-saturday +`class-3` · violet · Ep. Dan 13:1-9, 15-17, 19-30, 33-62. · Ev. John 8:1-11 + +- Com. sts-felicitas-perpetua + + + +**7** ef-lent-sunday-4 +`class-1` · rose · Ep. Gal 4:22-31 · Ev. John 6:1-15 + + + +**8** ef-lent-4-monday +`class-3` · violet · Ep. 3 Kings 3:16-28 · Ev. John 2:13-25 + +- Com. john-of-god + + + +**9** ef-lent-4-tuesday +`class-3` · violet · Ep. Ex 32:7-14 · Ev. John 7:14-31 + +- Com. frances-rome + + + +**10** ef-lent-4-wednesday +`class-3` · violet · Ep. Isa. 1:16-19 · Ev. John 9:1-38 + +- Com. forty-holy-martyrs-of-sebaste + + + +**11** ef-lent-4-thursday +`class-3` · violet · Ep. 4 Kings 4:25-38 · Ev. Luke 7:11-16 + + + +**12** ef-lent-4-friday +`class-3` · violet · Ep. 3 Kings 17:17-24 · Ev. John 11:1-45 + +- Com. gregory-the-great + + + +**13** ef-lent-4-saturday +`class-3` · violet · Ep. Isa 49:8-15 · Ev. John 8:12-20 + + + +**14** ef-passion-sunday +`class-1` · violet · Ep. Heb 9:11-15. · Ev. John 8:46-59. + + + +**15** ef-passiontide-1-monday +`class-3` · violet · Ep. Jonas 3:1-10 · Ev. John 7:32-39 + + + +**16** ef-passiontide-1-tuesday +`class-3` · violet · Ep. Dan 14:27, 28-42 · Ev. John 7:1-13 + + + +**17** ef-passiontide-1-wednesday +`class-3` · violet · Ep. Lev 19:1-2, 11-19, 25 · Ev. John 10:22-38 + +- Com. patrick + + + +**18** ef-passiontide-1-thursday +`class-3` · violet · Ep. Dan 3:25, 34-45. · Ev. Luke 7:36-50 + +- Com. cyril-of-jerusalem + + + +**19** joseph-spouse-of-the-bl-virgin-mary +`class-1` · white · Ep. Ecclus 45:1-6 · Ev. Matt 1:18-21 + +- Com. ef-passiontide-1-friday + + + +**20** ef-passiontide-1-saturday +`class-3` · violet · Ep. Jer 18:18-23 · Ev. John 12:10-36 + + + +**21** ef-palm-sunday +`class-1` · violet · Ep. Phil 2:5-11 · Ev. Matt. 26:36-75; 27:1-60. + + + +**22** ef-passiontide-2-monday +`class-1` · violet · Ep. Isa 50:5-10 · Ev. John 12:1-9 + + + +**23** ef-passiontide-2-tuesday +`class-1` · violet · Ep. Jer 11:18-20 · Ev. Mark 14:32-72; 15, 1-46 + + + +**24** ef-passiontide-2-wednesday +`class-1` · violet · Ep. Isa 53:1-12 · Ev. Luke 22:39-71; 23:1-53 + + + +**25** Feria V in Cena Domini +`class-1` · white · Ep. 1 Cor 11:20-32 · Ev. John 13:1-15 + + + +**26** Feria VI in Passione et Morte Domini +`class-1` · black · Ep. Ex 12:1-11 · Ev. John 18:1-40; 19:1-42 + + + +**27** Sabbato sancto +`class-1` · violet · Ep. Col 3:1-4 · Ev. Matt 28:1-7 + + + +**28** ef-easter-sunday +`class-1` · white · Ep. 1 Cor 5:7-8 · Ev. Mark 16:1-7 + + + +**29** ef-easter-1-monday +`class-1` · white · Ep. Acts 10:37-43. · Ev. Luke 24:13-35 + + + +**30** ef-easter-1-tuesday +`class-1` · white · Ep. Acts 13:16; 13:26-33 · Ev. Luke 24:36-47 + + + +**31** ef-easter-1-wednesday +`class-1` · white · Ep. Acts 3:13-15; 3:17-19 · Ev. John 21:1-14 + + + +## Aprilis + + +**1** ef-easter-1-thursday +`class-1` · white · Ep. Acts 8:26-40 · Ev. John 20:11-18 + + + +**2** ef-easter-1-friday +`class-1` · white · Ep. 1 Pet 3:18-22 · Ev. Matt 28:16-20 + + + +**3** ef-easter-1-saturday +`class-1` · white · Ep. 1 Pet 2:1-10 · Ev. John 20:1-9 + + + +**4** ef-low-sunday +`class-1` · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31 + + + +**5** annunciation-of-the-blessed-virgin-mary +`class-1` · white · Ep. Isa 7:10-15 · Ev. Luke 1:26-38 + + + +**6** ef-easter-2-tuesday +`class-4` · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31 + + + +**7** ef-easter-2-wednesday +`class-4` · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31 + + + +**8** ef-easter-2-thursday +`class-4` · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31 + + + +**9** ef-easter-2-friday +`class-4` · white · Ep. 1 John 5:4-10 · Ev. John 20:19-31 + + + +**10** Officium sanctae Mariae in sabbato +`class-4` · white · Ep. Ecclus 24:14-16 · Ev. John 19:25-27 + + + +**11** ef-easter-sunday-3 +`class-2` · white · Ep. 1 Pet 2:21-25 · Ev. John 10:11-16 + + + +**12** ef-easter-3-monday +`class-4` · white · Ep. 1 Pet 2:21-25 · Ev. John 10:11-16 + + + +**13** hermenegild +`class-3` · red · Ep. Wis 10:10-14 · Ev. Luke 14:26-33. + + + +**14** justin +`class-3` · red · Ep. 1 Cor 1:18-25; 1:30; · Ev. Luke 12:2-8 + +- Com. sts-tiburtius-valerian-et-maximus-martyrs + + + +**15** ef-easter-3-thursday +`class-4` · white · Ep. 1 Pet 2:21-25 · Ev. John 10:11-16 + + + +**16** ef-easter-3-friday +`class-4` · white · Ep. 1 Pet 2:21-25 · Ev. John 10:11-16 + + + +**17** Officium sanctae Mariae in sabbato +`class-4` · white · Ep. Ecclus 24:14-16 · Ev. John 19:25-27 + +- Com. anicetus + + + +**18** ef-easter-sunday-4 +`class-2` · white · Ep. 1 Pet 2:11-19 · Ev. John 16:16-22 + + + +**19** ef-easter-4-monday +`class-4` · white · Ep. 1 Pet 2:11-19 · Ev. John 16:16-22 + + + +**20** ef-easter-4-tuesday +`class-4` · white · Ep. 1 Pet 2:11-19 · Ev. John 16:16-22 + + + +**21** anselm +`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 + + + +**22** sts-soter-caius +`class-3` · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19 + + + +**23** ef-easter-4-friday +`class-4` · white · Ep. 1 Pet 2:11-19 · Ev. John 16:16-22 + +- Com. george + + + +**24** fidelis-of-sigmaringen +`class-3` · red · Ep. Wis 5:1-5 · Ev. John 15:1-7 + + + +**25** ef-easter-sunday-5 +`class-2` · white · Ep. Jas 1:17-21 · Ev. John 16:5-14 + +- Com. major-litanies + + + +**26** sts-cletus-marcellinus +`class-3` · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19 + + + +**27** peter-canisius +`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 + + + +**28** paul-of-the-cross +`class-3` · white · Ep. 1 Cor 1:17-25. · Ev. Luke 10:1-9 + + + +**29** peter-of-verona +`class-3` · red · Ep. 2 Tim. 2:8-10; 3:10-12. · Ev. Matt 10:34-42 + + + +**30** catherine-of-siena +`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13. + + + +## Maius + + +**1** joseph-the-workman +`class-1` · white · Ep. Col. 3:14-15, 17, 23-24 · Ev. Matt 13:54-58 + + + +**2** ef-easter-sunday-6 +`class-2` · white · Ep. Jas 1:22-27 · Ev. John 16:23-30 + + + +**3** ef-rogation-monday +`class-4` · violet · Ep. Jas 1:22-27 · Ev. John 16:23-30 + +- Com. sts-alexander-companions + + + +**4** monica +`class-3` · white · Ep. 1 Tim. 5:3-10. · Ev. Luke 7:11-16 + + + +**5** ef-ascension-vigil +`class-2` · white · Ep. Eph. 4:7-13. · Ev. John 17:1-11. + +- Com. pius-v + + + +**6** ef-ascension +`class-1` · white · Ep. Acts 1:1-11 · Ev. Mark 16:14-20 + + + +**7** stanislaus +`class-3` · red · Ep. Wis 5:1-5 · Ev. John 15:1-7 + + + +**8** Officium sanctae Mariae in sabbato +`class-4` · white · Ep. Ecclus 24:14-16 · Ev. John 19:25-27 + + + +**9** ef-easter-sunday-7 +`class-2` · white · Ep. 1 Pet 4:7-11. · Ev. John 15:26-27; 16:1-4. + + + +**10** antoninus +`class-3` · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Matt 25:14-23 + +- Com. gordiano-and-epimacho + + + +**11** sts-philip-james +`class-2` · red · Ep. Wis. 5:1-5 · Ev. John 14:1-13 + + + +**12** sts-nereus-achilleus-domitilla-pancras +`class-3` · red · Ep. Wis. 5:1-5 · Ev. John 4:46-53 + + + +**13** robert-bellarmine +`class-3` · white · Ep. Wis 7:7-14. · Ev. Matt 5:13-19 + + + +**14** ef-easter-7-friday +`class-4` · white · Ep. 1 Pet 4:7-11. · Ev. John 15:26-27; 16:1-4. + +- Com. boniface-martyr + + + +**15** ef-pentecost-vigil +`class-1` · red · Ep. Acts 19:1-8. · Ev. John 14:15-21. + + + +**16** ef-pentecost +`class-1` · red · Ep. Acts 2:1-11. · Ev. John 14:23-31. + + + +**17** ef-easter-8-monday +`class-1` · red · Ep. Acts 10:34, 42-48 · Ev. John 3:16-21 + + + +**18** ef-easter-8-tuesday +`class-1` · red · Ep. Acts 8:14-17. · Ev. John 10:1-10. + + + +**19** ef-pentecost-ember-wed +`class-1` · red · Ep. Acts 5:12-16 · Ev. John 6:44-52. + + + +**20** ef-easter-8-thursday +`class-1` · red · Ep. Acts 8:5-8 · Ev. Luke 9:1-6 + + + +**21** ef-pentecost-ember-fri +`class-1` · red · Ep. Joel 2:23-24; 26-27 · Ev. Luke 5:17-26 + + + +**22** ef-pentecost-ember-sat +`class-1` · red · Ep. Rom 5:1-5. · Ev. Luke 4:38-44. + + + +**23** ef-trinity +`class-1` · white · Ep. Rom 11:33-36. · Ev. Matt 28:18-20 + + + +**24** ef-time-after-pentecost-1-monday +`class-4` · green · Ep. 1 John 4:8-21 · Ev. Luke 6:36-42 + + + +**25** gregory-vii +`class-3` · white · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19 + +- Com. urban-pope-and-martyr + + + +**26** philip-neri +`class-3` · white · Ep. Wis 7:7-14. · Ev. Luke 12:35-40 + +- Com. eleutherius + + + +**27** ef-corpus-christi +`class-1` · white · Ep. 1 Cor 11:23-29 · Ev. John 6:56-59 + + + +**28** augustine-of-canterbury +`class-3` · white · Ep. 1 Thess 2:2-9 · Ev. Luke 10:1-9 + + + +**29** mary-magdalene-de-pazzi +`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13. + + + +**30** ef-time-after-pentecost-sunday-2 +`class-2` · green · Ep. 1 John 3:13-18. · Ev. Luke 14:16-24. + + + +**31** queenship-of-the-blessed-virgin-mary +`class-2` · white · Ep. Eccli 24:5; 14:7; 14:9-11; 24:30-31 · Ev. Luke 1:26-33 + +- Com. petronilla + + + +## Iunius + + +**1** angela-merici +`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13. + + + +**2** ef-time-after-pentecost-2-wednesday +`class-4` · green · Ep. 1 John 3:13-18. · Ev. Luke 14:16-24. + +- Com. sts-marcellinus-peter-erasmus + + + +**3** ef-time-after-pentecost-2-thursday +`class-4` · green · Ep. 1 John 3:13-18. · Ev. Luke 14:16-24. + + + +**4** ef-sacred-heart +`class-1` · white · Ep. Eph 3:8-12, 14-19 · Ev. John 19:31-37 + + + +**5** boniface +`class-3` · red · Ep. Ecclus 44:1-15 · Ev. Matt 5:1-12 + + + +**6** ef-time-after-pentecost-sunday-3 +`class-2` · green · Ep. 1 Pet. 5:6-11 · Ev. Luke 15:1-10 + + + +**7** ef-time-after-pentecost-3-monday +`class-4` · green · Ep. 1 Pet. 5:6-11 · Ev. Luke 15:1-10 + + + +**8** ef-time-after-pentecost-3-tuesday +`class-4` · green · Ep. 1 Pet. 5:6-11 · Ev. Luke 15:1-10 + + + +**9** ef-time-after-pentecost-3-wednesday +`class-4` · green · Ep. 1 Pet. 5:6-11 · Ev. Luke 15:1-10 + +- Com. sts-primus-felicianus + + + +**10** margaret-of-scotland +`class-3` · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52. + + + +**11** barnabas +`class-3` · red · Ep. Acts 11:21-26; 13:1-3 · Ev. Matt 10:16-22 + + + +**12** john-of-san-fecundo +`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 + +- Com. basilidus + + + +**13** ef-time-after-pentecost-sunday-4 +`class-2` · green · Ep. Rom 8:18-23 · Ev. Luke 5:1-11 + + + +**14** basil-the-great +`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Luke 14:26-35 + + + +**15** ef-time-after-pentecost-4-tuesday +`class-4` · green · Ep. Rom 8:18-23 · Ev. Luke 5:1-11 + +- Com. vitus + + + +**16** ef-time-after-pentecost-4-wednesday +`class-4` · green · Ep. Rom 8:18-23 · Ev. Luke 5:1-11 + + + +**17** gregory-barbarigo +`class-3` · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Matt 25:14-23 + + + +**18** ephrem-of-syria +`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 + +- Com. marcus-and-marcellianus + + + +**19** julia-of-falconieri +`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13. + +- Com. sts-gervasius-and-protasius + + + +**20** ef-time-after-pentecost-sunday-5 +`class-2` · green · Ep. 1 Pet 3:8-15. · Ev. Matt 5:20-24. + + + +**21** aloysius-gongzaga +`class-3` · white · Ep. Sir 31:8-11 · Ev. Matt 22:29-40 + + + +**22** paulinus-of-nola +`class-3` · white · Ep. 2 Cor. 8:9-15 · Ev. Luke 12:32-34 + + + +**23** vigil-of-the-nativity-of-st-john-the-baptist +`class-2` · violet · Ep. Jer 1:4-10 · Ev. Luke 1:5-17 + + + +**24** nativity-of-st-john-the-baptist +`class-1` · white · Ep. Isa 49:1-3, 5-7. · Ev. Luke 1:57-68 + + + +**25** william +`class-3` · white · Ep. Ecclus 45:1-6 · Ev. Matt 19:27-29. + + + +**26** sts-john-paul +`class-3` · red · Ep. Eccli 44:10-15 · Ev. Luke 12:1-8 + + + +**27** ef-time-after-pentecost-sunday-6 +`class-2` · green · Ep. Rom 6:3-11. · Ev. Mark 8:1-9 + + + +**28** vigil-of-sts-peter-paul +`class-2` · violet · Ep. Acts 3:1-10 · Ev. John 21:15-19 + + + +**29** sts-peter-paul +`class-1` · red · Ep. Acts 12:1-11 · Ev. Matt 16:13-19 + + + +**30** in-commemoratione-sancti-pauli-apostoli +`class-3` · red · Ep. Gal 1:11-20 · Ev. Matt 10:16-22 + +- Com. commemoration-of-st-peter + + + +## Iulius + + +**1** precious-blood-of-our-lord-jesus-christ +`class-1` · red · Ep. Heb 9:11-15. · Ev. John 19:30-35 + + + +**2** visitation-of-the-blessed-virgin-mary +`class-2` · white · Ep. Song 2:8-14 · Ev. Luke 1:39-47 + +- Com. processus-and-martinian + + + +**3** irenaeus +`class-3` · red · Ep. 2 Tim. 3:14-17; 4:1-5 · Ev. Matt 10:28-33 + + + +**4** ef-time-after-pentecost-sunday-7 +`class-2` · green · Ep. Rom 6:19-23 · Ev. Matt 7:15-21 + + + +**5** anthony-mary-zaccariah +`class-3` · white · Ep. 1 Tim. 4:8-16 · Ev. Mark 10:15-21 + + + +**6** ef-time-after-pentecost-7-tuesday +`class-4` · green · Ep. Rom 6:19-23 · Ev. Matt 7:15-21 + + + +**7** sts-cyril-methodius +`class-3` · white · Ep. Heb 7:23-27 · Ev. Luke 10:1-9 + + + +**8** elizabeth-of-portugal +`class-3` · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52. + + + +**9** ef-time-after-pentecost-7-friday +`class-4` · green · Ep. Rom 6:19-23 · Ev. Matt 7:15-21 + + + +**10** seven-holy-brothers-and-sts-rufina-secunda +`class-3` · red · Ep. Prov 31:10-31 · Ev. Matt 12:46-50 + + + +**11** ef-time-after-pentecost-sunday-8 +`class-2` · green · Ep. Rom 8:12-17 · Ev. Luke 16:1-9 + + + +**12** john-gualbert +`class-3` · white · Ep. Ecclus 45:1-6 · Ev. Matt 5:43-48 + +- Com. naboris-et-felicis + + + +**13** ef-time-after-pentecost-8-tuesday +`class-4` · green · Ep. Rom 8:12-17 · Ev. Luke 16:1-9 + + + +**14** bonaventure +`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 + + + +**15** henry-the-emperor +`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 + + + +**16** ef-time-after-pentecost-8-friday +`class-4` · green · Ep. Rom 8:12-17 · Ev. Luke 16:1-9 + +- Com. our-lady-of-mt-carmel + + + +**17** Officium sanctae Mariae in sabbato +`class-4` · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28 + +- Com. alexis + + + +**18** ef-time-after-pentecost-sunday-9 +`class-2` · green · Ep. 1 Cor. 10:6-13 · Ev. Luke 19:41-47 + + + +**19** vincent-de-paul +`class-3` · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 10:1-9 + + + +**20** jerome-emiliani +`class-3` · white · Ep. Isa 58:7-11 · Ev. Matt 19:13-21 + +- Com. margaret + + + +**21** laurence-of-brindisi +`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 + +- Com. praxedis-virginis + + + +**22** mary-magdalene +`class-3` · white · Ep. Song 3:2-5; 8:6-7 · Ev. Luke 7:36-50 + + + +**23** apollinaris +`class-3` · red · Ep. 1 Pet. 5:1-11 · Ev. Luke 22:24-30 + +- Com. liborii + + + +**24** Officium sanctae Mariae in sabbato +`class-4` · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28 + +- Com. christina + + + +**25** ef-time-after-pentecost-sunday-10 +`class-2` · green · Ep. 1 Cor. 12:2-11 · Ev. Luke 18:9-14 + +- Com. james-the-greater + + + +**26** anne-mother-of-the-blessed-virgin +`class-2` · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52. + + + +**27** ef-time-after-pentecost-10-tuesday +`class-4` · green · Ep. 1 Cor. 12:2-11 · Ev. Luke 18:9-14 + +- Com. pantaleon + + + +**28** sts-nazarius-celsus-st-victor-i-st-innocent-i +`class-3` · red · Ep. Wis 10:17-20 · Ev. Luke 21:9-19 + + + +**29** martha +`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Luke 10:38-42 + +- Com. felicis-simplicii-faustini-et-beatricis + + + +**30** ef-time-after-pentecost-10-friday +`class-4` · green · Ep. 1 Cor. 12:2-11 · Ev. Luke 18:9-14 + +- Com. sts-abdon-sennen + + + +**31** ignatius-loyola +`class-3` · white · Ep. 2 Tim. 2:8-10; 3:10-12. · Ev. Luke 10:1-9 + + + +## Augustus + + +**1** ef-time-after-pentecost-sunday-11 +`class-2` · green · Ep. 1 Cor. 15:1-10 · Ev. Mark 7:31-37 + + + +**2** alphonsus-liguori +`class-3` · white · Ep. 2 Tim. 2:1-7 · Ev. Luke 10:1-9 + +- Com. stephen-i-pope-and-martyr + + + +**3** ef-time-after-pentecost-11-tuesday +`class-4` · green · Ep. 1 Cor. 15:1-10 · Ev. Mark 7:31-37 + + + +**4** dominic +`class-3` · white · Ep. 2 Tim. 4:1-8 · Ev. Luke 12:35-40 + + + +**5** dedication-of-the-basilica-of-st-mary-major +`class-3` · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28 + + + +**6** transfiguration-of-our-lord +`class-2` · white · Ep. 2 Pet. 1:16-19 · Ev. Matt 17:1-9 + +- Com. pope-sixtus-ii-felicissimus-and-agapitus-martyrs + + + +**7** cajetan +`class-3` · white · Ep. Sir 31:8-11 · Ev. Matt 6:24-33 + +- Com. donatus + + + +**8** ef-time-after-pentecost-sunday-12 +`class-2` · green · Ep. 2 Cor. 3:4-9 · Ev. Luke 10:23-37 + + + +**9** vigil-of-st-lawrence +`class-3` · violet · Ep. Ecclus 51:1-8, 12 · Ev. Matt 16:24-27 + +- Com. romanus + + + +**10** lawrence +`class-2` · red · Ep. 2 Cor. 9:6-10 · Ev. John 12:24-26 + + + +**11** ef-time-after-pentecost-12-wednesday +`class-4` · green · Ep. 2 Cor. 3:4-9 · Ev. Luke 10:23-37 + +- Com. sts-tiburtius-susanna + + + +**12** clare +`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13. + + + +**13** ef-time-after-pentecost-12-friday +`class-4` · green · Ep. 2 Cor. 3:4-9 · Ev. Luke 10:23-37 + +- Com. sts-hippolytus-cassian + + + +**14** vigil-of-the-assumption +`class-2` · violet · Ep. Sir 24:23-31 · Ev. Luke 11:27-28 + +- Com. eusebius-confessor + + + +**15** assumption-of-the-blessed-virgin-mary +`class-1` · white · Ep. Judith 13:22-25; 15:10 · Ev. Luke 1:41-50 + +- Com. ef-time-after-pentecost-sunday-13 + + + +**16** joachim-father-of-the-blessed-virgin +`class-2` · white · Ep. Sir 31:8-11 · Ev. Matt 1:1-16 + + + +**17** hyacinth +`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 + + + +**18** ef-time-after-pentecost-13-wednesday +`class-4` · green · Ep. Gal 3:16-22 · Ev. Luke 17:11-19 + +- Com. agapitus + + + +**19** john-eudes +`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 + + + +**20** bernard-of-clairvaux +`class-3` · white · Ep. Ecclus 39:6-14 · Ev. Matt 5:13-19 + + + +**21** jane-frances-de-chantal +`class-3` · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52. + + + +**22** ef-time-after-pentecost-sunday-14 +`class-2` · green · Ep. Gal 5:16-24 · Ev. Matt 6:24-33 + +- Com. immaculate-heart-of-mary + + + +**23** philip-benizi +`class-3` · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 12:32-34 + + + +**24** bartholomew +`class-2` · red · Ep. 1 Cor. 12:27-31 · Ev. Luke 6:12-19 + + + +**25** louis-ix +`class-3` · white · Ep. Wis 10:10-14 · Ev. Luke 19:12-26 + + + +**26** ef-time-after-pentecost-14-thursday +`class-4` · green · Ep. Gal 5:16-24 · Ev. Matt 6:24-33 + +- Com. zephyrinus + + + +**27** joseph-calasance +`class-3` · white · Ep. Wis 10:10-14 · Ev. Matt 18:1-5 + + + +**28** augustine +`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 + +- Com. hermes + + + +**29** ef-time-after-pentecost-sunday-15 +`class-2` · green · Ep. Gal 5:25-26; 6:1-10 · Ev. Luke 7:11-16 + + + +**30** rose-of-lima +`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13. + +- Com. sts-felix-and-adauctus + + + +**31** raymond-nonnatus +`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 + + + +## September + + +**1** ef-time-after-pentecost-15-wednesday +`class-4` · green · Ep. Gal 5:25-26; 6:1-10 · Ev. Luke 7:11-16 + +- Com. giles + +- Com. twelve-holy-brothers-martyrs + + + +**2** stephen-of-hungary +`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 19:12-26 + + + +**3** pius-x +`class-3` · white · Ep. 1 Thess. 2:2-8 · Ev. John 21:15-17 + + + +**4** Officium sanctae Mariae in sabbato +`class-4` · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28 + + + +**5** ef-time-after-pentecost-sunday-16 +`class-2` · green · Ep. Eph 3:13-21 · Ev. Luke 14:1-11 + + + +**6** ef-time-after-pentecost-16-monday +`class-4` · green · Ep. Eph 3:13-21 · Ev. Luke 14:1-11 + + + +**7** ef-time-after-pentecost-16-tuesday +`class-4` · green · Ep. Eph 3:13-21 · Ev. Luke 14:1-11 + + + +**8** nativity-of-the-blessed-virgin-mary +`class-2` · white · Ep. Prov 8:22-35 · Ev. Matt 1:1-16 + +- Com. hadriani + + + +**9** ef-time-after-pentecost-16-thursday +`class-4` · green · Ep. Eph 3:13-21 · Ev. Luke 14:1-11 + +- Com. gorgonius + + + +**10** nicholas-of-tolentino +`class-3` · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 12:32-34 + + + +**11** Officium sanctae Mariae in sabbato +`class-4` · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28 + +- Com. sts-protus-hyacinth + + + +**12** ef-time-after-pentecost-sunday-17 +`class-2` · green · Ep. Eph 4:1-6 · Ev. Matt 22:34-46 + + + +**13** ef-time-after-pentecost-17-monday +`class-4` · green · Ep. Eph 4:1-6 · Ev. Matt 22:34-46 + + + +**14** exaltation-of-the-holy-cross +`class-2` · red · Ep. Phil 2:5-11 · Ev. John 12:31-36 + + + +**15** seven-sorrows-of-the-blessed-virgin-mary +`class-2` · white · Ep. Judith 13:22; 13:23-25 · Ev. John 19:25-27 + +- Com. nicomedes + + + +**16** sts-cornelius-cyprian +`class-3` · red · Ep. Wis 3:1-8 · Ev. Luke 21:9-19 + +- Com. sts-euphemia-lucy-and-geminianus + + + +**17** ef-time-after-pentecost-17-friday +`class-4` · green · Ep. Eph 4:1-6 · Ev. Matt 22:34-46 + +- Com. stigmata-of-st-francis + + + +**18** joseph-of-cupertino +`class-3` · white · Ep. 1 Cor 13:1-8 · Ev. Matt 22:1-14 + + + +**19** ef-time-after-pentecost-sunday-18 +`class-2` · green · Ep. 1 Cor. 1:4-8 · Ev. Matt 9:1-8 + + + +**20** ef-time-after-pentecost-18-monday +`class-4` · green · Ep. 1 Cor. 1:4-8 · Ev. Matt 9:1-8 + +- Com. sts-eustace-companions + + + +**21** matthew +`class-2` · red · Ep. Ezek 1:10-14 · Ev. Matt 9:9-13 + + + +**22** ef-september-ember-wed +`class-2` · violet · Ep. 2 Esd. 8:1-10 · Ev. Mark 9:16-28 + +- Com. thomas-of-villanova + + + +**23** linus +`class-3` · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19 + +- Com. thecla + + + +**24** ef-september-ember-fri +`class-2` · violet · Ep. Osee 14:2-10 · Ev. Luke 7:36-50 + +- Com. our-lady-of-ransom + + + +**25** ef-september-ember-sat +`class-2` · violet · Ep. Heb 9:2-12 · Ev. Luke 13:6-17 + + + +**26** ef-time-after-pentecost-sunday-19 +`class-2` · green · Ep. Eph 4:23-28 · Ev. Matt 22:1-14 + + + +**27** sts-cosmas-damian +`class-3` · red · Ep. Wis 5:16-20 · Ev. Luke 6:17-23 + + + +**28** wenceslaus +`class-3` · red · Ep. Wis 10:10-14 · Ev. Matt 10:34-42 + + + +**29** dedication-of-st-michael-the-archangel +`class-1` · white · Ep. Rev 1:1-5 · Ev. Matt 18:1-10 + + + +**30** jerome +`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 + + + +## October + + +**1** ef-time-after-pentecost-19-friday +`class-4` · green · Ep. Eph 4:23-28 · Ev. Matt 22:1-14 + +- Com. remigius + + + +**2** holy-guardian-angels +`class-3` · white · Ep. Exod 23:20-23 · Ev. Matt 18:1-10 + + + +**3** ef-time-after-pentecost-sunday-20 +`class-2` · green · Ep. Eph 5:15-21 · Ev. John 4:46-53 + + + +**4** francis-of-assisi +`class-3` · white · Ep. Gal 6:14-18 · Ev. Matt 11:25-30 + + + +**5** ef-time-after-pentecost-20-tuesday +`class-4` · green · Ep. Eph 5:15-21 · Ev. John 4:46-53 + +- Com. placid-companions + + + +**6** bruno +`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 + + + +**7** our-lady-of-the-rosary +`class-2` · white · Ep. Prov 8:22-24, 32-35. · Ev. Luke 1:26-38 + +- Com. mark-i + + + +**8** bridget-of-sweden +`class-3` · white · Ep. 1 Tim. 5:3-10. · Ev. Matt 13:44-52. + +- Com. sergio-baccho-marcello-and-apulejo-martyrs + + + +**9** john-leonardi +`class-3` · white · Ep. 2 Cor 4:1-6; 4:15-18 · Ev. Luke 10:1-9 + +- Com. dionysius-and-companions + + + +**10** ef-time-after-pentecost-sunday-21 +`class-2` · green · Ep. Eph 6:10-17 · Ev. Matt 18:23-35 + + + +**11** maternity-of-the-blessed-virgin-mary +`class-2` · white · Ep. Sir 24:23-31 · Ev. Luke 2:43-51 + + + +**12** ef-time-after-pentecost-21-tuesday +`class-4` · green · Ep. Eph 6:10-17 · Ev. Matt 18:23-35 + + + +**13** edward +`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 + + + +**14** callistus-i +`class-3` · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19 + + + +**15** teresa-of-avila +`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13. + + + +**16** hedwig +`class-3` · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52. + + + +**17** ef-time-after-pentecost-sunday-22 +`class-2` · green · Ep. Phil 1:6-11 · Ev. Matt 22:15-21 + + + +**18** luke-the-evangelist +`class-2` · red · Ep. 2 Cor. 8:16-24 · Ev. Luke 10:1-9 + + + +**19** peter-of-alcantara +`class-3` · white · Ep. Phil 3:7-12 · Ev. Luke 12:32-34 + + + +**20** john-cantius +`class-3` · white · Ep. James 2:12-17 · Ev. Luke 12:35-40 + + + +**21** ef-time-after-pentecost-22-thursday +`class-4` · green · Ep. Phil 1:6-11 · Ev. Matt 22:15-21 + +- Com. hilarion + +- Com. ursula-and-companions + + + +**22** ef-time-after-pentecost-22-friday +`class-4` · green · Ep. Phil 1:6-11 · Ev. Matt 22:15-21 + + + +**23** anthony-mary-claret +`class-3` · white · Ep. Heb 7:23-27 · Ev. Matt 24:42-47 + + + +**24** ef-time-after-pentecost-sunday-23 +`class-2` · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26 + + + +**25** ef-time-after-pentecost-23-monday +`class-4` · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26 + +- Com. sts-chrysanthus-daria + + + +**26** ef-time-after-pentecost-23-tuesday +`class-4` · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26 + +- Com. evaristus + + + +**27** ef-time-after-pentecost-23-wednesday +`class-4` · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26 + + + +**28** sts-simon-jude +`class-2` · red · Ep. Eph. 4:7-13. · Ev. John 15:17-25 + + + +**29** ef-time-after-pentecost-23-friday +`class-4` · green · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 9:18-26 + + + +**30** Officium sanctae Mariae in sabbato +`class-4` · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28 + + + +**31** ef-christ-the-king +`class-1` · white · Ep. Col 1:12-20. · Ev. John 18:33-37 + + + +## November + + +**1** all-saints +`class-1` · white · Ep. Apoc 7:2-12 · Ev. Matt 5:1-12 + + + +**2** commemoration-of-all-souls +`class-1` · black · Ep. 1 Cor. 15:51-57 · Ev. John 5:25-29 + + + +**3** ef-time-after-pentecost-24-wednesday +`class-4` · green · Ep. Col 1:12-20. · Ev. John 18:33-37 + + + +**4** charles-borromeo +`class-3` · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Matt 25:14-23 + +- Com. sts-vitalis-and-agricola-martyrs + + + +**5** ef-time-after-pentecost-24-friday +`class-4` · green · Ep. Col 1:12-20. · Ev. John 18:33-37 + + + +**6** Officium sanctae Mariae in sabbato +`class-4` · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28 + + + +**7** ef-time-after-epiphany-sunday-5 +`class-2` · green · Ep. Col 3:12-17 · Ev. Matt 13:24-30 + + + +**8** ef-time-after-pentecost-25-monday +`class-4` · green · Ep. Col 3:12-17 · Ev. Matt 13:24-30 + +- Com. four-holy-crowned-martyrs + + + +**9** dedication-of-the-archbasilica-of-our-holy-savior +`class-2` · white · Ep. Rev 21:2-5 · Ev. Luke 19:1-10 + +- Com. theodore + + + +**10** andrew-avellino +`class-3` · white · Ep. Sir 31:8-11 · Ev. Luke 12:35-40 + +- Com. sts-tryphonis-respicii-et-nymphae + + + +**11** martin-of-tours +`class-3` · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Luke 11:33-36 + +- Com. menna + + + +**12** martin-i +`class-3` · red · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19 + + + +**13** didacus +`class-3` · white · Ep. 1 Cor 4:9-14 · Ev. Luke 12:32-34 + + + +**14** ef-time-after-epiphany-sunday-6 +`class-2` · green · Ep. 1 Thess 1:2-10 · Ev. Matt 13:31-35 + + + +**15** albert-the-great +`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 + + + +**16** gertrude-the-great +`class-3` · white · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 25:1-13. + + + +**17** gregory-the-wonderworker +`class-3` · white · Ep. Sir 44:16-27; 45:3-20 · Ev. Mark 11:22-24 + + + +**18** dedication-of-the-basilicas-of-sts-peter-paul +`class-3` · white · Ep. Rev 21:2-5 · Ev. Luke 19:1-10 + + + +**19** elizabeth-of-hungary +`class-3` · white · Ep. Prov 31:10-31 · Ev. Matt 13:44-52. + +- Com. pontian + + + +**20** felix-of-valois +`class-3` · white · Ep. 1 Cor. 4:9-14 · Ev. Luke 12:32-34 + + + +**21** ef-time-after-pentecost-sunday-24 +`class-2` · green · Ep. Col 1:9-14 · Ev. Matt 24:15-35 + + + +**22** cecilia +`class-3` · red · Ep. Sir 51:13-17. · Ev. Matt 25:1-13. + + + +**23** clement-i +`class-3` · red · Ep. Phil 3:17-21; 4:1-3 · Ev. Matt 16:13-19 + +- Com. felicity + + + +**24** john-of-the-cross +`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 + +- Com. chrysogonus + + + +**25** catherine-of-alexandria +`class-3` · red · Ep. Sir 51:1-8; 51:12 · Ev. Matt 25:1-13. + + + +**26** sylvester +`class-3` · white · Ep. Ecclus 45:1-6 · Ev. Matt 19:27-29. + +- Com. peter-of-alexandria + + + +**27** Officium sanctae Mariae in sabbato +`class-4` · white · Ep. Ecclus 24:14-16 · Ev. Luke 11:27-28 + + + +**28** ef-advent-sunday-1 +`class-1` · violet · Ep. Rom 13:11-14 · Ev. Luke 21:25-33 + + + +**29** ef-advent-1-monday +`class-3` · violet · Ep. Rom 13:11-14 · Ev. Luke 21:25-33 + +- Com. saturninus + + + +**30** andrew +`class-2` · red · Ep. Rom 10:10-18 · Ev. Matt 4:18-22 + +- Com. ef-advent-1-tuesday + + + +## December + + +**1** ef-advent-1-wednesday +`class-3` · violet · Ep. Rom 13:11-14 · Ev. Luke 21:25-33 + + + +**2** vivian +`class-3` · red · Ep. Sir 51:13-17. · Ev. Matt 13:44-52. + +- Com. ef-advent-1-thursday + + + +**3** francis-xavier +`class-3` · white · Ep. Rom 10:10-18 · Ev. Mark 16:15-18 + +- Com. ef-advent-1-friday + + + +**4** peter-chrysologus +`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 + +- Com. ef-advent-1-saturday + +- Com. barbara + + + +**5** ef-advent-sunday-2 +`class-1` · violet · Ep. Rom 15:4-13 · Ev. Matt 11:2-10 + + + +**6** nicholas +`class-3` · white · Ep. Heb 13:7-17 · Ev. Matt 25:14-23 + +- Com. ef-advent-2-monday + + + +**7** ambrose +`class-3` · white · Ep. 2 Tim 4:1-8 · Ev. Matt 5:13-19 + +- Com. ef-advent-2-tuesday + + + +**8** immaculate-conception-of-the-blessed-virgin-mary +`class-1` · white · Ep. Prov 8:22-35 · Ev. Luke 1:26-28 + +- Com. ef-advent-2-wednesday + + + +**9** ef-advent-2-thursday +`class-3` · violet · Ep. Rom 15:4-13 · Ev. Matt 11:2-10 + + + +**10** ef-advent-2-friday +`class-3` · violet · Ep. Rom 15:4-13 · Ev. Matt 11:2-10 + +- Com. melchiades + + + +**11** damasus-i +`class-3` · white · Ep. 1 Pet 5:1-4; 5:10-11. · Ev. Matt 16:13-19 + +- Com. ef-advent-2-saturday + + + +**12** ef-advent-sunday-3 +`class-1` · rose · Ep. Phil 4:4-7 · Ev. John 1:19-28 + + + +**13** lucy +`class-3` · red · Ep. 2 Cor 10:17-18; 11:1-2 · Ev. Matt 13:44-52. + +- Com. ef-advent-3-monday + + + +**14** ef-advent-3-tuesday +`class-3` · violet · Ep. Phil 4:4-7 · Ev. John 1:19-28 + + + +**15** ef-advent-ember-wed +`class-2` · violet · Ep. Isa 7:10-15 · Ev. Luke 1:26-38 + + + +**16** eusebius +`class-3` · red · Ep. 2 Cor. 1:3-7 · Ev. Matt 16:24-27. + +- Com. ef-advent-3-thursday + + + +**17** ef-advent-ember-fri +`class-2` · violet · Ep. Isa 11:1-5 · Ev. Luke 1:39-47 + + + +**18** ef-advent-ember-sat +`class-2` · violet · Ep. 2 Thess 2:1-8 · Ev. Luke 3:1-6 + + + +**19** ef-advent-sunday-4 +`class-1` · violet · Ep. 1 Cor. 4:1-5 · Ev. Luke 3:1-6 + + + +**20** ef-advent-4-monday +`class-2` · violet · Ep. 1 Cor. 4:1-5 · Ev. Luke 3:1-6 + + + +**21** thomas +`class-2` · red · Ep. Eph 2:19-22 · Ev. John 20:24-29 + +- Com. ef-advent-4-tuesday + + + +**22** ef-advent-4-wednesday +`class-2` · violet · Ep. 1 Cor. 4:1-5 · Ev. Luke 3:1-6 + + + +**23** ef-advent-4-thursday +`class-2` · violet · Ep. 1 Cor. 4:1-5 · Ev. Luke 3:1-6 + + + +**24** ef-nativity-vigil +`class-1` · violet · Ep. Rom 1:1-6 · Ev. Matt 1:18-21 + + + +**25** ef-nativity +`class-1` · white · Ep. Heb 1:1-12 · Ev. John 1:1-14 + + + +**26** ef-christmas-sunday-0 +`class-2` · white · Ep. Gal 4:1-7 · Ev. Luke 2:33-40 + +- Com. stephen + + + +**27** john-the-evangelist +`class-2` · white · Ep. Ecclus 15:1-6 · Ev. John 21:19-24 + +- Com. ef-nativity-octave-day-3 + + + +**28** holy-innocents +`class-2` · red · Ep. Apoc 14:1-5 · Ev. Matt 2:13-18 + +- Com. ef-nativity-octave-day-4 + + + +**29** ef-nativity-octave-day-5 +`class-2` · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20 + +- Com. thomas-becket + + + +**30** ef-nativity-octave-day-6 +`class-2` · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20 + + + +**31** ef-nativity-octave-day-7 +`class-2` · white · Ep. Titus 3:4-7 · Ev. Luke 2:15-20 + +- Com. silvester + + + diff --git a/test/golden/ordo-2027.ms b/test/golden/ordo-2027.ms new file mode 100644 index 0000000..daeee24 --- /dev/null +++ b/test/golden/ordo-2027.ms @@ -0,0 +1,3604 @@ +.\" colitur ordo booklet -- groff ms. flavour: groff +.\" Build: colitur table --year 2027 --template ordo.ms | groff -ms -Tpdf > ordo.pdf +.\" +.\" Day label falls back to the slug when the day carries no Latin name (most +.\" temporal days, and most sanctoral entries, which are Latin-less in the +.\" shipped data) -- see ordo.tex's own comment for why the fallback is +.\" written as a name-section wrapping a plain var and its inverse, rather +.\" than a single dotted lookup and its inverse. +.TL +ORDO 2027 \(bu ef + +.SH +Ianuarius +.LP + +.IP "1" 4 +ef-circumcision +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Titus 2:11-15\s+2 +.br +\s-2Ev. Luke 2:21\s+2 + +.IP "2" 4 +Officium sanctae Mariae in sabbato +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Titus 3:4-7\s+2 +.br +\s-2Ev. Luke 2:15-20\s+2 + +.IP "3" 4 +Sanctissimi Nominis Iesu +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Acts 4:8-12\s+2 +.br +\s-2Ev. Luke 2:21\s+2 + +.IP "4" 4 +ef-christmas-1-monday +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Titus 2:11-15\s+2 +.br +\s-2Ev. Luke 2:21\s+2 + +.IP "5" 4 +ef-christmas-1-tuesday +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Titus 2:11-15\s+2 +.br +\s-2Ev. Luke 2:21\s+2 +.br +\s-2Com. telesphorus-pope-and-martyr\s+2 + +.IP "6" 4 +ef-epiphany +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Isa 60:1-6\s+2 +.br +\s-2Ev. Matt 2:1-12\s+2 + +.IP "7" 4 +ef-christmas-2-thursday +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Isa 60:1-6\s+2 +.br +\s-2Ev. Matt 2:1-12\s+2 + +.IP "8" 4 +ef-christmas-2-friday +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Isa 60:1-6\s+2 +.br +\s-2Ev. Matt 2:1-12\s+2 + +.IP "9" 4 +Officium sanctae Mariae in sabbato +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Titus 3:4-7\s+2 +.br +\s-2Ev. Luke 2:15-20\s+2 + +.IP "10" 4 +Sanctae Familiae Iesu, Mariae, Ioseph +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Col 3:12-17\s+2 +.br +\s-2Ev. Luke 2:42-52\s+2 + +.IP "11" 4 +ef-time-after-epiphany-1-monday +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Rom 12:1-5\s+2 +.br +\s-2Ev. Luke 2:42-52\s+2 +.br +\s-2Com. hyginus-pope-and-martyr\s+2 + +.IP "12" 4 +ef-time-after-epiphany-1-tuesday +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Rom 12:1-5\s+2 +.br +\s-2Ev. Luke 2:42-52\s+2 + +.IP "13" 4 +commemoration-of-the-baptism-of-the-lord +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Isa 60:1-6\s+2 +.br +\s-2Ev. John 1:29-34\s+2 + +.IP "14" 4 +hilary +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim 4:1-8\s+2 +.br +\s-2Ev. Matt 5:13-19\s+2 +.br +\s-2Com. felicis\s+2 + +.IP "15" 4 +paul-the-first-hermit +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Phil 3:7-12\s+2 +.br +\s-2Ev. Matt 11:25-30\s+2 +.br +\s-2Com. maur-abbot\s+2 + +.IP "16" 4 +marcellus-i +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. 1 Pet 5:1-4; 5:10-11.\s+2 +.br +\s-2Ev. Matt 16:13-19\s+2 + +.IP "17" 4 +ef-time-after-epiphany-sunday-2 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. Rom 12:6-16\s+2 +.br +\s-2Ev. John 2:1-11\s+2 + +.IP "18" 4 +ef-time-after-epiphany-2-monday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Rom 12:6-16\s+2 +.br +\s-2Ev. John 2:1-11\s+2 +.br +\s-2Com. prisca\s+2 + +.IP "19" 4 +ef-time-after-epiphany-2-tuesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Rom 12:6-16\s+2 +.br +\s-2Ev. John 2:1-11\s+2 +.br +\s-2Com. canute-martyr\s+2 +.br +\s-2Com. sts-marius-martha-audifax-abachum\s+2 + +.IP "20" 4 +sts-fabian-sebastian +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Heb 11:33-39\s+2 +.br +\s-2Ev. Luke 6:17-23\s+2 + +.IP "21" 4 +agnes +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Sir 51:1-8; 51:12\s+2 +.br +\s-2Ev. Matt 25:1-13.\s+2 + +.IP "22" 4 +sts-vincent-anastasius +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Wis 3:1-8\s+2 +.br +\s-2Ev. Luke 21:9-19\s+2 + +.IP "23" 4 +raymond-of-pe-afort +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 31:8-11\s+2 +.br +\s-2Ev. Luke 12:35-40\s+2 +.br +\s-2Com. emerentiana\s+2 + +.IP "24" 4 +ef-septuagesima-sunday-1 +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. 1 Cor. 9:24-27; 10:1-5\s+2 +.br +\s-2Ev. Matt 20:1-16\s+2 + +.IP "25" 4 +conversion-of-st-paul +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Acts 9:1-22\s+2 +.br +\s-2Ev. Matt 19:27-29.\s+2 +.br +\s-2Com. peter\s+2 + +.IP "26" 4 +polycarp +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. 1 John 3:10-16\s+2 +.br +\s-2Ev. Matt 10:26-32.\s+2 + +.IP "27" 4 +john-chrysostom +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim 4:1-8\s+2 +.br +\s-2Ev. Matt 5:13-19\s+2 + +.IP "28" 4 +peter-nolasco +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 1 Cor. 4:9-14\s+2 +.br +\s-2Ev. Luke 12:32-34\s+2 +.br +\s-2Com. agnes-secundo\s+2 + +.IP "29" 4 +francis-de-sales +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim 4:1-8\s+2 +.br +\s-2Ev. Matt 5:13-19\s+2 + +.IP "30" 4 +martina +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Sir 51:1-8; 51:12\s+2 +.br +\s-2Ev. Matt 25:1-13.\s+2 + +.IP "31" 4 +ef-septuagesima-sunday-2 +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. 2 Cor. 11:19-33; 12:1-9\s+2 +.br +\s-2Ev. Luke 8:4-15\s+2 + + +.SH +Februarius +.LP + +.IP "1" 4 +ignatius-of-antioch +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Rom 8:35-39\s+2 +.br +\s-2Ev. John 12:24-26\s+2 + +.IP "2" 4 +purification-of-the-blessed-virgin-mary +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Mal 3:1-4\s+2 +.br +\s-2Ev. Luke 2:22-32\s+2 + +.IP "3" 4 +ef-septuagesima-2-wednesday +.br +\s-2class-4 \(bu violet\s+2 +.br +\s-2Ep. 2 Cor. 11:19-33; 12:1-9\s+2 +.br +\s-2Ev. Luke 8:4-15\s+2 +.br +\s-2Com. blaise\s+2 + +.IP "4" 4 +andrew-corsini +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 44:16-27; 45:3-20\s+2 +.br +\s-2Ev. Matt 25:14-23\s+2 + +.IP "5" 4 +agatha +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. 1 Cor. 1:26-31\s+2 +.br +\s-2Ev. Matt 19:3-12.\s+2 + +.IP "6" 4 +titus +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 44:16-27; 45:3-20\s+2 +.br +\s-2Ev. Luke 10:1-9\s+2 +.br +\s-2Com. dorothy\s+2 + +.IP "7" 4 +ef-septuagesima-sunday-3 +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. 1 Cor. 13:1-13\s+2 +.br +\s-2Ev. Luke 18:31-43\s+2 + +.IP "8" 4 +john-of-matha +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 31:8-11\s+2 +.br +\s-2Ev. Luke 12:35-40\s+2 + +.IP "9" 4 +cyril-of-alexandria +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim 4:1-8\s+2 +.br +\s-2Ev. Matt 5:13-19\s+2 +.br +\s-2Com. appollonia\s+2 + +.IP "10" 4 +ef-ash-wednesday +.br +\s-2class-1 \(bu violet\s+2 +.br +\s-2Ep. Joel 2:12-19\s+2 +.br +\s-2Ev. Matt 6:16-21\s+2 + +.IP "11" 4 +ef-lent-after-ashes-thursday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Isa 38:1-6\s+2 +.br +\s-2Ev. Matt 8:5-13\s+2 +.br +\s-2Com. our-lady-of-lourdes\s+2 + +.IP "12" 4 +ef-lent-after-ashes-friday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Isa 58:1-9\s+2 +.br +\s-2Ev. Matt 5:43-48; 6:1-4\s+2 +.br +\s-2Com. seven-holy-servite-founders\s+2 + +.IP "13" 4 +ef-lent-after-ashes-saturday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Isa 58:9-14\s+2 +.br +\s-2Ev. Mark 6:47-56\s+2 + +.IP "14" 4 +ef-lent-sunday-1 +.br +\s-2class-1 \(bu violet\s+2 +.br +\s-2Ep. 2 Cor. 6:1-10\s+2 +.br +\s-2Ev. Matt 4:1-11\s+2 + +.IP "15" 4 +ef-lent-1-monday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Ezech 34:11-16\s+2 +.br +\s-2Ev. Matt 25:31-46\s+2 +.br +\s-2Com. sts-faustinus-jovita\s+2 + +.IP "16" 4 +ef-lent-1-tuesday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Isa 55:6-11\s+2 +.br +\s-2Ev. Matt 21:10-17\s+2 + +.IP "17" 4 +ef-lent-ember-wed +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. 3 Kgs. 19:3-8\s+2 +.br +\s-2Ev. Matt 12:38-50\s+2 + +.IP "18" 4 +ef-lent-1-thursday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Ezech 18:1-9\s+2 +.br +\s-2Ev. Matt 15:21-28\s+2 +.br +\s-2Com. simeon\s+2 + +.IP "19" 4 +ef-lent-ember-fri +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. Ezech 18:20-28\s+2 +.br +\s-2Ev. John 5:1-15\s+2 + +.IP "20" 4 +ef-lent-ember-sat +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. 1 Thess. 5:14-23\s+2 +.br +\s-2Ev. Matt 17:1-9\s+2 + +.IP "21" 4 +ef-lent-sunday-2 +.br +\s-2class-1 \(bu violet\s+2 +.br +\s-2Ep. 1 Thess. 4:1-7\s+2 +.br +\s-2Ev. Matt 17:1-9\s+2 + +.IP "22" 4 +chair-of-st-peter +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. 1 Pet 1:1-7\s+2 +.br +\s-2Ev. Matt 16:13-19\s+2 +.br +\s-2Com. ef-lent-2-monday\s+2 +.br +\s-2Com. paul\s+2 + +.IP "23" 4 +ef-lent-2-tuesday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. 3 Kings 17:8-16\s+2 +.br +\s-2Ev. Matt 23:1-12\s+2 +.br +\s-2Com. peter-damien\s+2 + +.IP "24" 4 +matthias +.br +\s-2class-2 \(bu red\s+2 +.br +\s-2Ep. Acts 1:15-26\s+2 +.br +\s-2Ev. Matt 11:25-30\s+2 +.br +\s-2Com. ef-lent-2-wednesday\s+2 + +.IP "25" 4 +ef-lent-2-thursday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Jer 17:5-10\s+2 +.br +\s-2Ev. Luke 16:19-31\s+2 + +.IP "26" 4 +ef-lent-2-friday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Gen 37:6-22\s+2 +.br +\s-2Ev. Matt 21:33-46\s+2 + +.IP "27" 4 +ef-lent-2-saturday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Gen 27:6-40\s+2 +.br +\s-2Ev. Luke 15:11-32\s+2 +.br +\s-2Com. gabriel-of-our-lady-of-sorrows\s+2 + +.IP "28" 4 +ef-lent-sunday-3 +.br +\s-2class-1 \(bu violet\s+2 +.br +\s-2Ep. Eph 5:1-9\s+2 +.br +\s-2Ev. Luke 11:14-28\s+2 + + +.SH +Martius +.LP + +.IP "1" 4 +ef-lent-3-monday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. 4 Kings 5:1-15\s+2 +.br +\s-2Ev. Luke 4:23-30\s+2 + +.IP "2" 4 +ef-lent-3-tuesday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. 4 Kings 4:1-7\s+2 +.br +\s-2Ev. Matt 18:15-22\s+2 + +.IP "3" 4 +ef-lent-3-wednesday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Ex 20:12-24\s+2 +.br +\s-2Ev. Matt 15:1-20\s+2 + +.IP "4" 4 +ef-lent-3-thursday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Jer 7:1-7\s+2 +.br +\s-2Ev. Luke 4:38-44.\s+2 +.br +\s-2Com. casimir\s+2 +.br +\s-2Com. lucius\s+2 + +.IP "5" 4 +ef-lent-3-friday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Num 20:1, 3; 6-13.\s+2 +.br +\s-2Ev. John 4:5-42\s+2 + +.IP "6" 4 +ef-lent-3-saturday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Dan 13:1-9, 15-17, 19-30, 33-62.\s+2 +.br +\s-2Ev. John 8:1-11\s+2 +.br +\s-2Com. sts-felicitas-perpetua\s+2 + +.IP "7" 4 +ef-lent-sunday-4 +.br +\s-2class-1 \(bu rose\s+2 +.br +\s-2Ep. Gal 4:22-31\s+2 +.br +\s-2Ev. John 6:1-15\s+2 + +.IP "8" 4 +ef-lent-4-monday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. 3 Kings 3:16-28\s+2 +.br +\s-2Ev. John 2:13-25\s+2 +.br +\s-2Com. john-of-god\s+2 + +.IP "9" 4 +ef-lent-4-tuesday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Ex 32:7-14\s+2 +.br +\s-2Ev. John 7:14-31\s+2 +.br +\s-2Com. frances-rome\s+2 + +.IP "10" 4 +ef-lent-4-wednesday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Isa. 1:16-19\s+2 +.br +\s-2Ev. John 9:1-38\s+2 +.br +\s-2Com. forty-holy-martyrs-of-sebaste\s+2 + +.IP "11" 4 +ef-lent-4-thursday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. 4 Kings 4:25-38\s+2 +.br +\s-2Ev. Luke 7:11-16\s+2 + +.IP "12" 4 +ef-lent-4-friday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. 3 Kings 17:17-24\s+2 +.br +\s-2Ev. John 11:1-45\s+2 +.br +\s-2Com. gregory-the-great\s+2 + +.IP "13" 4 +ef-lent-4-saturday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Isa 49:8-15\s+2 +.br +\s-2Ev. John 8:12-20\s+2 + +.IP "14" 4 +ef-passion-sunday +.br +\s-2class-1 \(bu violet\s+2 +.br +\s-2Ep. Heb 9:11-15.\s+2 +.br +\s-2Ev. John 8:46-59.\s+2 + +.IP "15" 4 +ef-passiontide-1-monday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Jonas 3:1-10\s+2 +.br +\s-2Ev. John 7:32-39\s+2 + +.IP "16" 4 +ef-passiontide-1-tuesday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Dan 14:27, 28-42\s+2 +.br +\s-2Ev. John 7:1-13\s+2 + +.IP "17" 4 +ef-passiontide-1-wednesday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Lev 19:1-2, 11-19, 25\s+2 +.br +\s-2Ev. John 10:22-38\s+2 +.br +\s-2Com. patrick\s+2 + +.IP "18" 4 +ef-passiontide-1-thursday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Dan 3:25, 34-45.\s+2 +.br +\s-2Ev. Luke 7:36-50\s+2 +.br +\s-2Com. cyril-of-jerusalem\s+2 + +.IP "19" 4 +joseph-spouse-of-the-bl-virgin-mary +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Ecclus 45:1-6\s+2 +.br +\s-2Ev. Matt 1:18-21\s+2 +.br +\s-2Com. ef-passiontide-1-friday\s+2 + +.IP "20" 4 +ef-passiontide-1-saturday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Jer 18:18-23\s+2 +.br +\s-2Ev. John 12:10-36\s+2 + +.IP "21" 4 +ef-palm-sunday +.br +\s-2class-1 \(bu violet\s+2 +.br +\s-2Ep. Phil 2:5-11\s+2 +.br +\s-2Ev. Matt. 26:36-75; 27:1-60.\s+2 + +.IP "22" 4 +ef-passiontide-2-monday +.br +\s-2class-1 \(bu violet\s+2 +.br +\s-2Ep. Isa 50:5-10\s+2 +.br +\s-2Ev. John 12:1-9\s+2 + +.IP "23" 4 +ef-passiontide-2-tuesday +.br +\s-2class-1 \(bu violet\s+2 +.br +\s-2Ep. Jer 11:18-20\s+2 +.br +\s-2Ev. Mark 14:32-72; 15, 1-46\s+2 + +.IP "24" 4 +ef-passiontide-2-wednesday +.br +\s-2class-1 \(bu violet\s+2 +.br +\s-2Ep. Isa 53:1-12\s+2 +.br +\s-2Ev. Luke 22:39-71; 23:1-53\s+2 + +.IP "25" 4 +Feria V in Cena Domini +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. 1 Cor 11:20-32\s+2 +.br +\s-2Ev. John 13:1-15\s+2 + +.IP "26" 4 +Feria VI in Passione et Morte Domini +.br +\s-2class-1 \(bu black\s+2 +.br +\s-2Ep. Ex 12:1-11\s+2 +.br +\s-2Ev. John 18:1-40; 19:1-42\s+2 + +.IP "27" 4 +Sabbato sancto +.br +\s-2class-1 \(bu violet\s+2 +.br +\s-2Ep. Col 3:1-4\s+2 +.br +\s-2Ev. Matt 28:1-7\s+2 + +.IP "28" 4 +ef-easter-sunday +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. 1 Cor 5:7-8\s+2 +.br +\s-2Ev. Mark 16:1-7\s+2 + +.IP "29" 4 +ef-easter-1-monday +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Acts 10:37-43.\s+2 +.br +\s-2Ev. Luke 24:13-35\s+2 + +.IP "30" 4 +ef-easter-1-tuesday +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Acts 13:16; 13:26-33\s+2 +.br +\s-2Ev. Luke 24:36-47\s+2 + +.IP "31" 4 +ef-easter-1-wednesday +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Acts 3:13-15; 3:17-19\s+2 +.br +\s-2Ev. John 21:1-14\s+2 + + +.SH +Aprilis +.LP + +.IP "1" 4 +ef-easter-1-thursday +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Acts 8:26-40\s+2 +.br +\s-2Ev. John 20:11-18\s+2 + +.IP "2" 4 +ef-easter-1-friday +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. 1 Pet 3:18-22\s+2 +.br +\s-2Ev. Matt 28:16-20\s+2 + +.IP "3" 4 +ef-easter-1-saturday +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. 1 Pet 2:1-10\s+2 +.br +\s-2Ev. John 20:1-9\s+2 + +.IP "4" 4 +ef-low-sunday +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. 1 John 5:4-10\s+2 +.br +\s-2Ev. John 20:19-31\s+2 + +.IP "5" 4 +annunciation-of-the-blessed-virgin-mary +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Isa 7:10-15\s+2 +.br +\s-2Ev. Luke 1:26-38\s+2 + +.IP "6" 4 +ef-easter-2-tuesday +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. 1 John 5:4-10\s+2 +.br +\s-2Ev. John 20:19-31\s+2 + +.IP "7" 4 +ef-easter-2-wednesday +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. 1 John 5:4-10\s+2 +.br +\s-2Ev. John 20:19-31\s+2 + +.IP "8" 4 +ef-easter-2-thursday +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. 1 John 5:4-10\s+2 +.br +\s-2Ev. John 20:19-31\s+2 + +.IP "9" 4 +ef-easter-2-friday +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. 1 John 5:4-10\s+2 +.br +\s-2Ev. John 20:19-31\s+2 + +.IP "10" 4 +Officium sanctae Mariae in sabbato +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Ecclus 24:14-16\s+2 +.br +\s-2Ev. John 19:25-27\s+2 + +.IP "11" 4 +ef-easter-sunday-3 +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. 1 Pet 2:21-25\s+2 +.br +\s-2Ev. John 10:11-16\s+2 + +.IP "12" 4 +ef-easter-3-monday +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. 1 Pet 2:21-25\s+2 +.br +\s-2Ev. John 10:11-16\s+2 + +.IP "13" 4 +hermenegild +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Wis 10:10-14\s+2 +.br +\s-2Ev. Luke 14:26-33.\s+2 + +.IP "14" 4 +justin +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. 1 Cor 1:18-25; 1:30;\s+2 +.br +\s-2Ev. Luke 12:2-8\s+2 +.br +\s-2Com. sts-tiburtius-valerian-et-maximus-martyrs\s+2 + +.IP "15" 4 +ef-easter-3-thursday +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. 1 Pet 2:21-25\s+2 +.br +\s-2Ev. John 10:11-16\s+2 + +.IP "16" 4 +ef-easter-3-friday +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. 1 Pet 2:21-25\s+2 +.br +\s-2Ev. John 10:11-16\s+2 + +.IP "17" 4 +Officium sanctae Mariae in sabbato +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Ecclus 24:14-16\s+2 +.br +\s-2Ev. John 19:25-27\s+2 +.br +\s-2Com. anicetus\s+2 + +.IP "18" 4 +ef-easter-sunday-4 +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. 1 Pet 2:11-19\s+2 +.br +\s-2Ev. John 16:16-22\s+2 + +.IP "19" 4 +ef-easter-4-monday +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. 1 Pet 2:11-19\s+2 +.br +\s-2Ev. John 16:16-22\s+2 + +.IP "20" 4 +ef-easter-4-tuesday +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. 1 Pet 2:11-19\s+2 +.br +\s-2Ev. John 16:16-22\s+2 + +.IP "21" 4 +anselm +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim 4:1-8\s+2 +.br +\s-2Ev. Matt 5:13-19\s+2 + +.IP "22" 4 +sts-soter-caius +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. 1 Pet 5:1-4; 5:10-11.\s+2 +.br +\s-2Ev. Matt 16:13-19\s+2 + +.IP "23" 4 +ef-easter-4-friday +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. 1 Pet 2:11-19\s+2 +.br +\s-2Ev. John 16:16-22\s+2 +.br +\s-2Com. george\s+2 + +.IP "24" 4 +fidelis-of-sigmaringen +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Wis 5:1-5\s+2 +.br +\s-2Ev. John 15:1-7\s+2 + +.IP "25" 4 +ef-easter-sunday-5 +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Jas 1:17-21\s+2 +.br +\s-2Ev. John 16:5-14\s+2 +.br +\s-2Com. major-litanies\s+2 + +.IP "26" 4 +sts-cletus-marcellinus +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. 1 Pet 5:1-4; 5:10-11.\s+2 +.br +\s-2Ev. Matt 16:13-19\s+2 + +.IP "27" 4 +peter-canisius +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim 4:1-8\s+2 +.br +\s-2Ev. Matt 5:13-19\s+2 + +.IP "28" 4 +paul-of-the-cross +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 1 Cor 1:17-25.\s+2 +.br +\s-2Ev. Luke 10:1-9\s+2 + +.IP "29" 4 +peter-of-verona +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. 2 Tim. 2:8-10; 3:10-12.\s+2 +.br +\s-2Ev. Matt 10:34-42\s+2 + +.IP "30" 4 +catherine-of-siena +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +.br +\s-2Ev. Matt 25:1-13.\s+2 + + +.SH +Maius +.LP + +.IP "1" 4 +joseph-the-workman +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Col. 3:14-15, 17, 23-24\s+2 +.br +\s-2Ev. Matt 13:54-58\s+2 + +.IP "2" 4 +ef-easter-sunday-6 +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Jas 1:22-27\s+2 +.br +\s-2Ev. John 16:23-30\s+2 + +.IP "3" 4 +ef-rogation-monday +.br +\s-2class-4 \(bu violet\s+2 +.br +\s-2Ep. Jas 1:22-27\s+2 +.br +\s-2Ev. John 16:23-30\s+2 +.br +\s-2Com. sts-alexander-companions\s+2 + +.IP "4" 4 +monica +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 1 Tim. 5:3-10.\s+2 +.br +\s-2Ev. Luke 7:11-16\s+2 + +.IP "5" 4 +ef-ascension-vigil +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Eph. 4:7-13.\s+2 +.br +\s-2Ev. John 17:1-11.\s+2 +.br +\s-2Com. pius-v\s+2 + +.IP "6" 4 +ef-ascension +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Acts 1:1-11\s+2 +.br +\s-2Ev. Mark 16:14-20\s+2 + +.IP "7" 4 +stanislaus +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Wis 5:1-5\s+2 +.br +\s-2Ev. John 15:1-7\s+2 + +.IP "8" 4 +Officium sanctae Mariae in sabbato +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Ecclus 24:14-16\s+2 +.br +\s-2Ev. John 19:25-27\s+2 + +.IP "9" 4 +ef-easter-sunday-7 +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. 1 Pet 4:7-11.\s+2 +.br +\s-2Ev. John 15:26-27; 16:1-4.\s+2 + +.IP "10" 4 +antoninus +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 44:16-27; 45:3-20\s+2 +.br +\s-2Ev. Matt 25:14-23\s+2 +.br +\s-2Com. gordiano-and-epimacho\s+2 + +.IP "11" 4 +sts-philip-james +.br +\s-2class-2 \(bu red\s+2 +.br +\s-2Ep. Wis. 5:1-5\s+2 +.br +\s-2Ev. John 14:1-13\s+2 + +.IP "12" 4 +sts-nereus-achilleus-domitilla-pancras +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Wis. 5:1-5\s+2 +.br +\s-2Ev. John 4:46-53\s+2 + +.IP "13" 4 +robert-bellarmine +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Wis 7:7-14.\s+2 +.br +\s-2Ev. Matt 5:13-19\s+2 + +.IP "14" 4 +ef-easter-7-friday +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. 1 Pet 4:7-11.\s+2 +.br +\s-2Ev. John 15:26-27; 16:1-4.\s+2 +.br +\s-2Com. boniface-martyr\s+2 + +.IP "15" 4 +ef-pentecost-vigil +.br +\s-2class-1 \(bu red\s+2 +.br +\s-2Ep. Acts 19:1-8.\s+2 +.br +\s-2Ev. John 14:15-21.\s+2 + +.IP "16" 4 +ef-pentecost +.br +\s-2class-1 \(bu red\s+2 +.br +\s-2Ep. Acts 2:1-11.\s+2 +.br +\s-2Ev. John 14:23-31.\s+2 + +.IP "17" 4 +ef-easter-8-monday +.br +\s-2class-1 \(bu red\s+2 +.br +\s-2Ep. Acts 10:34, 42-48\s+2 +.br +\s-2Ev. John 3:16-21\s+2 + +.IP "18" 4 +ef-easter-8-tuesday +.br +\s-2class-1 \(bu red\s+2 +.br +\s-2Ep. Acts 8:14-17.\s+2 +.br +\s-2Ev. John 10:1-10.\s+2 + +.IP "19" 4 +ef-pentecost-ember-wed +.br +\s-2class-1 \(bu red\s+2 +.br +\s-2Ep. Acts 5:12-16\s+2 +.br +\s-2Ev. John 6:44-52.\s+2 + +.IP "20" 4 +ef-easter-8-thursday +.br +\s-2class-1 \(bu red\s+2 +.br +\s-2Ep. Acts 8:5-8\s+2 +.br +\s-2Ev. Luke 9:1-6\s+2 + +.IP "21" 4 +ef-pentecost-ember-fri +.br +\s-2class-1 \(bu red\s+2 +.br +\s-2Ep. Joel 2:23-24; 26-27\s+2 +.br +\s-2Ev. Luke 5:17-26\s+2 + +.IP "22" 4 +ef-pentecost-ember-sat +.br +\s-2class-1 \(bu red\s+2 +.br +\s-2Ep. Rom 5:1-5.\s+2 +.br +\s-2Ev. Luke 4:38-44.\s+2 + +.IP "23" 4 +ef-trinity +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Rom 11:33-36.\s+2 +.br +\s-2Ev. Matt 28:18-20\s+2 + +.IP "24" 4 +ef-time-after-pentecost-1-monday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. 1 John 4:8-21\s+2 +.br +\s-2Ev. Luke 6:36-42\s+2 + +.IP "25" 4 +gregory-vii +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 1 Pet 5:1-4; 5:10-11.\s+2 +.br +\s-2Ev. Matt 16:13-19\s+2 +.br +\s-2Com. urban-pope-and-martyr\s+2 + +.IP "26" 4 +philip-neri +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Wis 7:7-14.\s+2 +.br +\s-2Ev. Luke 12:35-40\s+2 +.br +\s-2Com. eleutherius\s+2 + +.IP "27" 4 +ef-corpus-christi +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. 1 Cor 11:23-29\s+2 +.br +\s-2Ev. John 6:56-59\s+2 + +.IP "28" 4 +augustine-of-canterbury +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 1 Thess 2:2-9\s+2 +.br +\s-2Ev. Luke 10:1-9\s+2 + +.IP "29" 4 +mary-magdalene-de-pazzi +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +.br +\s-2Ev. Matt 25:1-13.\s+2 + +.IP "30" 4 +ef-time-after-pentecost-sunday-2 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. 1 John 3:13-18.\s+2 +.br +\s-2Ev. Luke 14:16-24.\s+2 + +.IP "31" 4 +queenship-of-the-blessed-virgin-mary +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Eccli 24:5; 14:7; 14:9-11; 24:30-31\s+2 +.br +\s-2Ev. Luke 1:26-33\s+2 +.br +\s-2Com. petronilla\s+2 + + +.SH +Iunius +.LP + +.IP "1" 4 +angela-merici +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +.br +\s-2Ev. Matt 25:1-13.\s+2 + +.IP "2" 4 +ef-time-after-pentecost-2-wednesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. 1 John 3:13-18.\s+2 +.br +\s-2Ev. Luke 14:16-24.\s+2 +.br +\s-2Com. sts-marcellinus-peter-erasmus\s+2 + +.IP "3" 4 +ef-time-after-pentecost-2-thursday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. 1 John 3:13-18.\s+2 +.br +\s-2Ev. Luke 14:16-24.\s+2 + +.IP "4" 4 +ef-sacred-heart +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Eph 3:8-12, 14-19\s+2 +.br +\s-2Ev. John 19:31-37\s+2 + +.IP "5" 4 +boniface +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Ecclus 44:1-15\s+2 +.br +\s-2Ev. Matt 5:1-12\s+2 + +.IP "6" 4 +ef-time-after-pentecost-sunday-3 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. 1 Pet. 5:6-11\s+2 +.br +\s-2Ev. Luke 15:1-10\s+2 + +.IP "7" 4 +ef-time-after-pentecost-3-monday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. 1 Pet. 5:6-11\s+2 +.br +\s-2Ev. Luke 15:1-10\s+2 + +.IP "8" 4 +ef-time-after-pentecost-3-tuesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. 1 Pet. 5:6-11\s+2 +.br +\s-2Ev. Luke 15:1-10\s+2 + +.IP "9" 4 +ef-time-after-pentecost-3-wednesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. 1 Pet. 5:6-11\s+2 +.br +\s-2Ev. Luke 15:1-10\s+2 +.br +\s-2Com. sts-primus-felicianus\s+2 + +.IP "10" 4 +margaret-of-scotland +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Prov 31:10-31\s+2 +.br +\s-2Ev. Matt 13:44-52.\s+2 + +.IP "11" 4 +barnabas +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Acts 11:21-26; 13:1-3\s+2 +.br +\s-2Ev. Matt 10:16-22\s+2 + +.IP "12" 4 +john-of-san-fecundo +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 31:8-11\s+2 +.br +\s-2Ev. Luke 12:35-40\s+2 +.br +\s-2Com. basilidus\s+2 + +.IP "13" 4 +ef-time-after-pentecost-sunday-4 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. Rom 8:18-23\s+2 +.br +\s-2Ev. Luke 5:1-11\s+2 + +.IP "14" 4 +basil-the-great +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim 4:1-8\s+2 +.br +\s-2Ev. Luke 14:26-35\s+2 + +.IP "15" 4 +ef-time-after-pentecost-4-tuesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Rom 8:18-23\s+2 +.br +\s-2Ev. Luke 5:1-11\s+2 +.br +\s-2Com. vitus\s+2 + +.IP "16" 4 +ef-time-after-pentecost-4-wednesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Rom 8:18-23\s+2 +.br +\s-2Ev. Luke 5:1-11\s+2 + +.IP "17" 4 +gregory-barbarigo +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 44:16-27; 45:3-20\s+2 +.br +\s-2Ev. Matt 25:14-23\s+2 + +.IP "18" 4 +ephrem-of-syria +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim 4:1-8\s+2 +.br +\s-2Ev. Matt 5:13-19\s+2 +.br +\s-2Com. marcus-and-marcellianus\s+2 + +.IP "19" 4 +julia-of-falconieri +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +.br +\s-2Ev. Matt 25:1-13.\s+2 +.br +\s-2Com. sts-gervasius-and-protasius\s+2 + +.IP "20" 4 +ef-time-after-pentecost-sunday-5 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. 1 Pet 3:8-15.\s+2 +.br +\s-2Ev. Matt 5:20-24.\s+2 + +.IP "21" 4 +aloysius-gongzaga +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 31:8-11\s+2 +.br +\s-2Ev. Matt 22:29-40\s+2 + +.IP "22" 4 +paulinus-of-nola +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Cor. 8:9-15\s+2 +.br +\s-2Ev. Luke 12:32-34\s+2 + +.IP "23" 4 +vigil-of-the-nativity-of-st-john-the-baptist +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. Jer 1:4-10\s+2 +.br +\s-2Ev. Luke 1:5-17\s+2 + +.IP "24" 4 +nativity-of-st-john-the-baptist +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Isa 49:1-3, 5-7.\s+2 +.br +\s-2Ev. Luke 1:57-68\s+2 + +.IP "25" 4 +william +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Ecclus 45:1-6\s+2 +.br +\s-2Ev. Matt 19:27-29.\s+2 + +.IP "26" 4 +sts-john-paul +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Eccli 44:10-15\s+2 +.br +\s-2Ev. Luke 12:1-8\s+2 + +.IP "27" 4 +ef-time-after-pentecost-sunday-6 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. Rom 6:3-11.\s+2 +.br +\s-2Ev. Mark 8:1-9\s+2 + +.IP "28" 4 +vigil-of-sts-peter-paul +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. Acts 3:1-10\s+2 +.br +\s-2Ev. John 21:15-19\s+2 + +.IP "29" 4 +sts-peter-paul +.br +\s-2class-1 \(bu red\s+2 +.br +\s-2Ep. Acts 12:1-11\s+2 +.br +\s-2Ev. Matt 16:13-19\s+2 + +.IP "30" 4 +in-commemoratione-sancti-pauli-apostoli +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Gal 1:11-20\s+2 +.br +\s-2Ev. Matt 10:16-22\s+2 +.br +\s-2Com. commemoration-of-st-peter\s+2 + + +.SH +Iulius +.LP + +.IP "1" 4 +precious-blood-of-our-lord-jesus-christ +.br +\s-2class-1 \(bu red\s+2 +.br +\s-2Ep. Heb 9:11-15.\s+2 +.br +\s-2Ev. John 19:30-35\s+2 + +.IP "2" 4 +visitation-of-the-blessed-virgin-mary +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Song 2:8-14\s+2 +.br +\s-2Ev. Luke 1:39-47\s+2 +.br +\s-2Com. processus-and-martinian\s+2 + +.IP "3" 4 +irenaeus +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. 2 Tim. 3:14-17; 4:1-5\s+2 +.br +\s-2Ev. Matt 10:28-33\s+2 + +.IP "4" 4 +ef-time-after-pentecost-sunday-7 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. Rom 6:19-23\s+2 +.br +\s-2Ev. Matt 7:15-21\s+2 + +.IP "5" 4 +anthony-mary-zaccariah +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 1 Tim. 4:8-16\s+2 +.br +\s-2Ev. Mark 10:15-21\s+2 + +.IP "6" 4 +ef-time-after-pentecost-7-tuesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Rom 6:19-23\s+2 +.br +\s-2Ev. Matt 7:15-21\s+2 + +.IP "7" 4 +sts-cyril-methodius +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Heb 7:23-27\s+2 +.br +\s-2Ev. Luke 10:1-9\s+2 + +.IP "8" 4 +elizabeth-of-portugal +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Prov 31:10-31\s+2 +.br +\s-2Ev. Matt 13:44-52.\s+2 + +.IP "9" 4 +ef-time-after-pentecost-7-friday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Rom 6:19-23\s+2 +.br +\s-2Ev. Matt 7:15-21\s+2 + +.IP "10" 4 +seven-holy-brothers-and-sts-rufina-secunda +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Prov 31:10-31\s+2 +.br +\s-2Ev. Matt 12:46-50\s+2 + +.IP "11" 4 +ef-time-after-pentecost-sunday-8 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. Rom 8:12-17\s+2 +.br +\s-2Ev. Luke 16:1-9\s+2 + +.IP "12" 4 +john-gualbert +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Ecclus 45:1-6\s+2 +.br +\s-2Ev. Matt 5:43-48\s+2 +.br +\s-2Com. naboris-et-felicis\s+2 + +.IP "13" 4 +ef-time-after-pentecost-8-tuesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Rom 8:12-17\s+2 +.br +\s-2Ev. Luke 16:1-9\s+2 + +.IP "14" 4 +bonaventure +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim 4:1-8\s+2 +.br +\s-2Ev. Matt 5:13-19\s+2 + +.IP "15" 4 +henry-the-emperor +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 31:8-11\s+2 +.br +\s-2Ev. Luke 12:35-40\s+2 + +.IP "16" 4 +ef-time-after-pentecost-8-friday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Rom 8:12-17\s+2 +.br +\s-2Ev. Luke 16:1-9\s+2 +.br +\s-2Com. our-lady-of-mt-carmel\s+2 + +.IP "17" 4 +Officium sanctae Mariae in sabbato +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Ecclus 24:14-16\s+2 +.br +\s-2Ev. Luke 11:27-28\s+2 +.br +\s-2Com. alexis\s+2 + +.IP "18" 4 +ef-time-after-pentecost-sunday-9 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. 1 Cor. 10:6-13\s+2 +.br +\s-2Ev. Luke 19:41-47\s+2 + +.IP "19" 4 +vincent-de-paul +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 1 Cor. 4:9-14\s+2 +.br +\s-2Ev. Luke 10:1-9\s+2 + +.IP "20" 4 +jerome-emiliani +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Isa 58:7-11\s+2 +.br +\s-2Ev. Matt 19:13-21\s+2 +.br +\s-2Com. margaret\s+2 + +.IP "21" 4 +laurence-of-brindisi +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim 4:1-8\s+2 +.br +\s-2Ev. Matt 5:13-19\s+2 +.br +\s-2Com. praxedis-virginis\s+2 + +.IP "22" 4 +mary-magdalene +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Song 3:2-5; 8:6-7\s+2 +.br +\s-2Ev. Luke 7:36-50\s+2 + +.IP "23" 4 +apollinaris +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. 1 Pet. 5:1-11\s+2 +.br +\s-2Ev. Luke 22:24-30\s+2 +.br +\s-2Com. liborii\s+2 + +.IP "24" 4 +Officium sanctae Mariae in sabbato +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Ecclus 24:14-16\s+2 +.br +\s-2Ev. Luke 11:27-28\s+2 +.br +\s-2Com. christina\s+2 + +.IP "25" 4 +ef-time-after-pentecost-sunday-10 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. 1 Cor. 12:2-11\s+2 +.br +\s-2Ev. Luke 18:9-14\s+2 +.br +\s-2Com. james-the-greater\s+2 + +.IP "26" 4 +anne-mother-of-the-blessed-virgin +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Prov 31:10-31\s+2 +.br +\s-2Ev. Matt 13:44-52.\s+2 + +.IP "27" 4 +ef-time-after-pentecost-10-tuesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. 1 Cor. 12:2-11\s+2 +.br +\s-2Ev. Luke 18:9-14\s+2 +.br +\s-2Com. pantaleon\s+2 + +.IP "28" 4 +sts-nazarius-celsus-st-victor-i-st-innocent-i +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Wis 10:17-20\s+2 +.br +\s-2Ev. Luke 21:9-19\s+2 + +.IP "29" 4 +martha +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +.br +\s-2Ev. Luke 10:38-42\s+2 +.br +\s-2Com. felicis-simplicii-faustini-et-beatricis\s+2 + +.IP "30" 4 +ef-time-after-pentecost-10-friday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. 1 Cor. 12:2-11\s+2 +.br +\s-2Ev. Luke 18:9-14\s+2 +.br +\s-2Com. sts-abdon-sennen\s+2 + +.IP "31" 4 +ignatius-loyola +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim. 2:8-10; 3:10-12.\s+2 +.br +\s-2Ev. Luke 10:1-9\s+2 + + +.SH +Augustus +.LP + +.IP "1" 4 +ef-time-after-pentecost-sunday-11 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. 1 Cor. 15:1-10\s+2 +.br +\s-2Ev. Mark 7:31-37\s+2 + +.IP "2" 4 +alphonsus-liguori +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim. 2:1-7\s+2 +.br +\s-2Ev. Luke 10:1-9\s+2 +.br +\s-2Com. stephen-i-pope-and-martyr\s+2 + +.IP "3" 4 +ef-time-after-pentecost-11-tuesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. 1 Cor. 15:1-10\s+2 +.br +\s-2Ev. Mark 7:31-37\s+2 + +.IP "4" 4 +dominic +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim. 4:1-8\s+2 +.br +\s-2Ev. Luke 12:35-40\s+2 + +.IP "5" 4 +dedication-of-the-basilica-of-st-mary-major +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Ecclus 24:14-16\s+2 +.br +\s-2Ev. Luke 11:27-28\s+2 + +.IP "6" 4 +transfiguration-of-our-lord +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. 2 Pet. 1:16-19\s+2 +.br +\s-2Ev. Matt 17:1-9\s+2 +.br +\s-2Com. pope-sixtus-ii-felicissimus-and-agapitus-martyrs\s+2 + +.IP "7" 4 +cajetan +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 31:8-11\s+2 +.br +\s-2Ev. Matt 6:24-33\s+2 +.br +\s-2Com. donatus\s+2 + +.IP "8" 4 +ef-time-after-pentecost-sunday-12 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. 2 Cor. 3:4-9\s+2 +.br +\s-2Ev. Luke 10:23-37\s+2 + +.IP "9" 4 +vigil-of-st-lawrence +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Ecclus 51:1-8, 12\s+2 +.br +\s-2Ev. Matt 16:24-27\s+2 +.br +\s-2Com. romanus\s+2 + +.IP "10" 4 +lawrence +.br +\s-2class-2 \(bu red\s+2 +.br +\s-2Ep. 2 Cor. 9:6-10\s+2 +.br +\s-2Ev. John 12:24-26\s+2 + +.IP "11" 4 +ef-time-after-pentecost-12-wednesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. 2 Cor. 3:4-9\s+2 +.br +\s-2Ev. Luke 10:23-37\s+2 +.br +\s-2Com. sts-tiburtius-susanna\s+2 + +.IP "12" 4 +clare +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +.br +\s-2Ev. Matt 25:1-13.\s+2 + +.IP "13" 4 +ef-time-after-pentecost-12-friday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. 2 Cor. 3:4-9\s+2 +.br +\s-2Ev. Luke 10:23-37\s+2 +.br +\s-2Com. sts-hippolytus-cassian\s+2 + +.IP "14" 4 +vigil-of-the-assumption +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. Sir 24:23-31\s+2 +.br +\s-2Ev. Luke 11:27-28\s+2 +.br +\s-2Com. eusebius-confessor\s+2 + +.IP "15" 4 +assumption-of-the-blessed-virgin-mary +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Judith 13:22-25; 15:10\s+2 +.br +\s-2Ev. Luke 1:41-50\s+2 +.br +\s-2Com. ef-time-after-pentecost-sunday-13\s+2 + +.IP "16" 4 +joachim-father-of-the-blessed-virgin +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Sir 31:8-11\s+2 +.br +\s-2Ev. Matt 1:1-16\s+2 + +.IP "17" 4 +hyacinth +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 31:8-11\s+2 +.br +\s-2Ev. Luke 12:35-40\s+2 + +.IP "18" 4 +ef-time-after-pentecost-13-wednesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Gal 3:16-22\s+2 +.br +\s-2Ev. Luke 17:11-19\s+2 +.br +\s-2Com. agapitus\s+2 + +.IP "19" 4 +john-eudes +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 31:8-11\s+2 +.br +\s-2Ev. Luke 12:35-40\s+2 + +.IP "20" 4 +bernard-of-clairvaux +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Ecclus 39:6-14\s+2 +.br +\s-2Ev. Matt 5:13-19\s+2 + +.IP "21" 4 +jane-frances-de-chantal +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Prov 31:10-31\s+2 +.br +\s-2Ev. Matt 13:44-52.\s+2 + +.IP "22" 4 +ef-time-after-pentecost-sunday-14 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. Gal 5:16-24\s+2 +.br +\s-2Ev. Matt 6:24-33\s+2 +.br +\s-2Com. immaculate-heart-of-mary\s+2 + +.IP "23" 4 +philip-benizi +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 1 Cor. 4:9-14\s+2 +.br +\s-2Ev. Luke 12:32-34\s+2 + +.IP "24" 4 +bartholomew +.br +\s-2class-2 \(bu red\s+2 +.br +\s-2Ep. 1 Cor. 12:27-31\s+2 +.br +\s-2Ev. Luke 6:12-19\s+2 + +.IP "25" 4 +louis-ix +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Wis 10:10-14\s+2 +.br +\s-2Ev. Luke 19:12-26\s+2 + +.IP "26" 4 +ef-time-after-pentecost-14-thursday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Gal 5:16-24\s+2 +.br +\s-2Ev. Matt 6:24-33\s+2 +.br +\s-2Com. zephyrinus\s+2 + +.IP "27" 4 +joseph-calasance +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Wis 10:10-14\s+2 +.br +\s-2Ev. Matt 18:1-5\s+2 + +.IP "28" 4 +augustine +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim 4:1-8\s+2 +.br +\s-2Ev. Matt 5:13-19\s+2 +.br +\s-2Com. hermes\s+2 + +.IP "29" 4 +ef-time-after-pentecost-sunday-15 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. Gal 5:25-26; 6:1-10\s+2 +.br +\s-2Ev. Luke 7:11-16\s+2 + +.IP "30" 4 +rose-of-lima +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +.br +\s-2Ev. Matt 25:1-13.\s+2 +.br +\s-2Com. sts-felix-and-adauctus\s+2 + +.IP "31" 4 +raymond-nonnatus +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 31:8-11\s+2 +.br +\s-2Ev. Luke 12:35-40\s+2 + + +.SH +September +.LP + +.IP "1" 4 +ef-time-after-pentecost-15-wednesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Gal 5:25-26; 6:1-10\s+2 +.br +\s-2Ev. Luke 7:11-16\s+2 +.br +\s-2Com. giles\s+2 +.br +\s-2Com. twelve-holy-brothers-martyrs\s+2 + +.IP "2" 4 +stephen-of-hungary +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 31:8-11\s+2 +.br +\s-2Ev. Luke 19:12-26\s+2 + +.IP "3" 4 +pius-x +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 1 Thess. 2:2-8\s+2 +.br +\s-2Ev. John 21:15-17\s+2 + +.IP "4" 4 +Officium sanctae Mariae in sabbato +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Ecclus 24:14-16\s+2 +.br +\s-2Ev. Luke 11:27-28\s+2 + +.IP "5" 4 +ef-time-after-pentecost-sunday-16 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. Eph 3:13-21\s+2 +.br +\s-2Ev. Luke 14:1-11\s+2 + +.IP "6" 4 +ef-time-after-pentecost-16-monday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Eph 3:13-21\s+2 +.br +\s-2Ev. Luke 14:1-11\s+2 + +.IP "7" 4 +ef-time-after-pentecost-16-tuesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Eph 3:13-21\s+2 +.br +\s-2Ev. Luke 14:1-11\s+2 + +.IP "8" 4 +nativity-of-the-blessed-virgin-mary +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Prov 8:22-35\s+2 +.br +\s-2Ev. Matt 1:1-16\s+2 +.br +\s-2Com. hadriani\s+2 + +.IP "9" 4 +ef-time-after-pentecost-16-thursday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Eph 3:13-21\s+2 +.br +\s-2Ev. Luke 14:1-11\s+2 +.br +\s-2Com. gorgonius\s+2 + +.IP "10" 4 +nicholas-of-tolentino +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 1 Cor. 4:9-14\s+2 +.br +\s-2Ev. Luke 12:32-34\s+2 + +.IP "11" 4 +Officium sanctae Mariae in sabbato +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Ecclus 24:14-16\s+2 +.br +\s-2Ev. Luke 11:27-28\s+2 +.br +\s-2Com. sts-protus-hyacinth\s+2 + +.IP "12" 4 +ef-time-after-pentecost-sunday-17 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. Eph 4:1-6\s+2 +.br +\s-2Ev. Matt 22:34-46\s+2 + +.IP "13" 4 +ef-time-after-pentecost-17-monday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Eph 4:1-6\s+2 +.br +\s-2Ev. Matt 22:34-46\s+2 + +.IP "14" 4 +exaltation-of-the-holy-cross +.br +\s-2class-2 \(bu red\s+2 +.br +\s-2Ep. Phil 2:5-11\s+2 +.br +\s-2Ev. John 12:31-36\s+2 + +.IP "15" 4 +seven-sorrows-of-the-blessed-virgin-mary +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Judith 13:22; 13:23-25\s+2 +.br +\s-2Ev. John 19:25-27\s+2 +.br +\s-2Com. nicomedes\s+2 + +.IP "16" 4 +sts-cornelius-cyprian +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Wis 3:1-8\s+2 +.br +\s-2Ev. Luke 21:9-19\s+2 +.br +\s-2Com. sts-euphemia-lucy-and-geminianus\s+2 + +.IP "17" 4 +ef-time-after-pentecost-17-friday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Eph 4:1-6\s+2 +.br +\s-2Ev. Matt 22:34-46\s+2 +.br +\s-2Com. stigmata-of-st-francis\s+2 + +.IP "18" 4 +joseph-of-cupertino +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 1 Cor 13:1-8\s+2 +.br +\s-2Ev. Matt 22:1-14\s+2 + +.IP "19" 4 +ef-time-after-pentecost-sunday-18 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. 1 Cor. 1:4-8\s+2 +.br +\s-2Ev. Matt 9:1-8\s+2 + +.IP "20" 4 +ef-time-after-pentecost-18-monday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. 1 Cor. 1:4-8\s+2 +.br +\s-2Ev. Matt 9:1-8\s+2 +.br +\s-2Com. sts-eustace-companions\s+2 + +.IP "21" 4 +matthew +.br +\s-2class-2 \(bu red\s+2 +.br +\s-2Ep. Ezek 1:10-14\s+2 +.br +\s-2Ev. Matt 9:9-13\s+2 + +.IP "22" 4 +ef-september-ember-wed +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. 2 Esd. 8:1-10\s+2 +.br +\s-2Ev. Mark 9:16-28\s+2 +.br +\s-2Com. thomas-of-villanova\s+2 + +.IP "23" 4 +linus +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. 1 Pet 5:1-4; 5:10-11.\s+2 +.br +\s-2Ev. Matt 16:13-19\s+2 +.br +\s-2Com. thecla\s+2 + +.IP "24" 4 +ef-september-ember-fri +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. Osee 14:2-10\s+2 +.br +\s-2Ev. Luke 7:36-50\s+2 +.br +\s-2Com. our-lady-of-ransom\s+2 + +.IP "25" 4 +ef-september-ember-sat +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. Heb 9:2-12\s+2 +.br +\s-2Ev. Luke 13:6-17\s+2 + +.IP "26" 4 +ef-time-after-pentecost-sunday-19 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. Eph 4:23-28\s+2 +.br +\s-2Ev. Matt 22:1-14\s+2 + +.IP "27" 4 +sts-cosmas-damian +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Wis 5:16-20\s+2 +.br +\s-2Ev. Luke 6:17-23\s+2 + +.IP "28" 4 +wenceslaus +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Wis 10:10-14\s+2 +.br +\s-2Ev. Matt 10:34-42\s+2 + +.IP "29" 4 +dedication-of-st-michael-the-archangel +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Rev 1:1-5\s+2 +.br +\s-2Ev. Matt 18:1-10\s+2 + +.IP "30" 4 +jerome +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim 4:1-8\s+2 +.br +\s-2Ev. Matt 5:13-19\s+2 + + +.SH +October +.LP + +.IP "1" 4 +ef-time-after-pentecost-19-friday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Eph 4:23-28\s+2 +.br +\s-2Ev. Matt 22:1-14\s+2 +.br +\s-2Com. remigius\s+2 + +.IP "2" 4 +holy-guardian-angels +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Exod 23:20-23\s+2 +.br +\s-2Ev. Matt 18:1-10\s+2 + +.IP "3" 4 +ef-time-after-pentecost-sunday-20 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. Eph 5:15-21\s+2 +.br +\s-2Ev. John 4:46-53\s+2 + +.IP "4" 4 +francis-of-assisi +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Gal 6:14-18\s+2 +.br +\s-2Ev. Matt 11:25-30\s+2 + +.IP "5" 4 +ef-time-after-pentecost-20-tuesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Eph 5:15-21\s+2 +.br +\s-2Ev. John 4:46-53\s+2 +.br +\s-2Com. placid-companions\s+2 + +.IP "6" 4 +bruno +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 31:8-11\s+2 +.br +\s-2Ev. Luke 12:35-40\s+2 + +.IP "7" 4 +our-lady-of-the-rosary +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Prov 8:22-24, 32-35.\s+2 +.br +\s-2Ev. Luke 1:26-38\s+2 +.br +\s-2Com. mark-i\s+2 + +.IP "8" 4 +bridget-of-sweden +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 1 Tim. 5:3-10.\s+2 +.br +\s-2Ev. Matt 13:44-52.\s+2 +.br +\s-2Com. sergio-baccho-marcello-and-apulejo-martyrs\s+2 + +.IP "9" 4 +john-leonardi +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Cor 4:1-6; 4:15-18\s+2 +.br +\s-2Ev. Luke 10:1-9\s+2 +.br +\s-2Com. dionysius-and-companions\s+2 + +.IP "10" 4 +ef-time-after-pentecost-sunday-21 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. Eph 6:10-17\s+2 +.br +\s-2Ev. Matt 18:23-35\s+2 + +.IP "11" 4 +maternity-of-the-blessed-virgin-mary +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Sir 24:23-31\s+2 +.br +\s-2Ev. Luke 2:43-51\s+2 + +.IP "12" 4 +ef-time-after-pentecost-21-tuesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Eph 6:10-17\s+2 +.br +\s-2Ev. Matt 18:23-35\s+2 + +.IP "13" 4 +edward +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 31:8-11\s+2 +.br +\s-2Ev. Luke 12:35-40\s+2 + +.IP "14" 4 +callistus-i +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. 1 Pet 5:1-4; 5:10-11.\s+2 +.br +\s-2Ev. Matt 16:13-19\s+2 + +.IP "15" 4 +teresa-of-avila +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +.br +\s-2Ev. Matt 25:1-13.\s+2 + +.IP "16" 4 +hedwig +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Prov 31:10-31\s+2 +.br +\s-2Ev. Matt 13:44-52.\s+2 + +.IP "17" 4 +ef-time-after-pentecost-sunday-22 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. Phil 1:6-11\s+2 +.br +\s-2Ev. Matt 22:15-21\s+2 + +.IP "18" 4 +luke-the-evangelist +.br +\s-2class-2 \(bu red\s+2 +.br +\s-2Ep. 2 Cor. 8:16-24\s+2 +.br +\s-2Ev. Luke 10:1-9\s+2 + +.IP "19" 4 +peter-of-alcantara +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Phil 3:7-12\s+2 +.br +\s-2Ev. Luke 12:32-34\s+2 + +.IP "20" 4 +john-cantius +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. James 2:12-17\s+2 +.br +\s-2Ev. Luke 12:35-40\s+2 + +.IP "21" 4 +ef-time-after-pentecost-22-thursday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Phil 1:6-11\s+2 +.br +\s-2Ev. Matt 22:15-21\s+2 +.br +\s-2Com. hilarion\s+2 +.br +\s-2Com. ursula-and-companions\s+2 + +.IP "22" 4 +ef-time-after-pentecost-22-friday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Phil 1:6-11\s+2 +.br +\s-2Ev. Matt 22:15-21\s+2 + +.IP "23" 4 +anthony-mary-claret +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Heb 7:23-27\s+2 +.br +\s-2Ev. Matt 24:42-47\s+2 + +.IP "24" 4 +ef-time-after-pentecost-sunday-23 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. Phil 3:17-21; 4:1-3\s+2 +.br +\s-2Ev. Matt 9:18-26\s+2 + +.IP "25" 4 +ef-time-after-pentecost-23-monday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Phil 3:17-21; 4:1-3\s+2 +.br +\s-2Ev. Matt 9:18-26\s+2 +.br +\s-2Com. sts-chrysanthus-daria\s+2 + +.IP "26" 4 +ef-time-after-pentecost-23-tuesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Phil 3:17-21; 4:1-3\s+2 +.br +\s-2Ev. Matt 9:18-26\s+2 +.br +\s-2Com. evaristus\s+2 + +.IP "27" 4 +ef-time-after-pentecost-23-wednesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Phil 3:17-21; 4:1-3\s+2 +.br +\s-2Ev. Matt 9:18-26\s+2 + +.IP "28" 4 +sts-simon-jude +.br +\s-2class-2 \(bu red\s+2 +.br +\s-2Ep. Eph. 4:7-13.\s+2 +.br +\s-2Ev. John 15:17-25\s+2 + +.IP "29" 4 +ef-time-after-pentecost-23-friday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Phil 3:17-21; 4:1-3\s+2 +.br +\s-2Ev. Matt 9:18-26\s+2 + +.IP "30" 4 +Officium sanctae Mariae in sabbato +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Ecclus 24:14-16\s+2 +.br +\s-2Ev. Luke 11:27-28\s+2 + +.IP "31" 4 +ef-christ-the-king +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Col 1:12-20.\s+2 +.br +\s-2Ev. John 18:33-37\s+2 + + +.SH +November +.LP + +.IP "1" 4 +all-saints +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Apoc 7:2-12\s+2 +.br +\s-2Ev. Matt 5:1-12\s+2 + +.IP "2" 4 +commemoration-of-all-souls +.br +\s-2class-1 \(bu black\s+2 +.br +\s-2Ep. 1 Cor. 15:51-57\s+2 +.br +\s-2Ev. John 5:25-29\s+2 + +.IP "3" 4 +ef-time-after-pentecost-24-wednesday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Col 1:12-20.\s+2 +.br +\s-2Ev. John 18:33-37\s+2 + +.IP "4" 4 +charles-borromeo +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 44:16-27; 45:3-20\s+2 +.br +\s-2Ev. Matt 25:14-23\s+2 +.br +\s-2Com. sts-vitalis-and-agricola-martyrs\s+2 + +.IP "5" 4 +ef-time-after-pentecost-24-friday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Col 1:12-20.\s+2 +.br +\s-2Ev. John 18:33-37\s+2 + +.IP "6" 4 +Officium sanctae Mariae in sabbato +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Ecclus 24:14-16\s+2 +.br +\s-2Ev. Luke 11:27-28\s+2 + +.IP "7" 4 +ef-time-after-epiphany-sunday-5 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. Col 3:12-17\s+2 +.br +\s-2Ev. Matt 13:24-30\s+2 + +.IP "8" 4 +ef-time-after-pentecost-25-monday +.br +\s-2class-4 \(bu green\s+2 +.br +\s-2Ep. Col 3:12-17\s+2 +.br +\s-2Ev. Matt 13:24-30\s+2 +.br +\s-2Com. four-holy-crowned-martyrs\s+2 + +.IP "9" 4 +dedication-of-the-archbasilica-of-our-holy-savior +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Rev 21:2-5\s+2 +.br +\s-2Ev. Luke 19:1-10\s+2 +.br +\s-2Com. theodore\s+2 + +.IP "10" 4 +andrew-avellino +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 31:8-11\s+2 +.br +\s-2Ev. Luke 12:35-40\s+2 +.br +\s-2Com. sts-tryphonis-respicii-et-nymphae\s+2 + +.IP "11" 4 +martin-of-tours +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 44:16-27; 45:3-20\s+2 +.br +\s-2Ev. Luke 11:33-36\s+2 +.br +\s-2Com. menna\s+2 + +.IP "12" 4 +martin-i +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. 1 Pet 5:1-4; 5:10-11.\s+2 +.br +\s-2Ev. Matt 16:13-19\s+2 + +.IP "13" 4 +didacus +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 1 Cor 4:9-14\s+2 +.br +\s-2Ev. Luke 12:32-34\s+2 + +.IP "14" 4 +ef-time-after-epiphany-sunday-6 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. 1 Thess 1:2-10\s+2 +.br +\s-2Ev. Matt 13:31-35\s+2 + +.IP "15" 4 +albert-the-great +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim 4:1-8\s+2 +.br +\s-2Ev. Matt 5:13-19\s+2 + +.IP "16" 4 +gertrude-the-great +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +.br +\s-2Ev. Matt 25:1-13.\s+2 + +.IP "17" 4 +gregory-the-wonderworker +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Sir 44:16-27; 45:3-20\s+2 +.br +\s-2Ev. Mark 11:22-24\s+2 + +.IP "18" 4 +dedication-of-the-basilicas-of-sts-peter-paul +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Rev 21:2-5\s+2 +.br +\s-2Ev. Luke 19:1-10\s+2 + +.IP "19" 4 +elizabeth-of-hungary +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Prov 31:10-31\s+2 +.br +\s-2Ev. Matt 13:44-52.\s+2 +.br +\s-2Com. pontian\s+2 + +.IP "20" 4 +felix-of-valois +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 1 Cor. 4:9-14\s+2 +.br +\s-2Ev. Luke 12:32-34\s+2 + +.IP "21" 4 +ef-time-after-pentecost-sunday-24 +.br +\s-2class-2 \(bu green\s+2 +.br +\s-2Ep. Col 1:9-14\s+2 +.br +\s-2Ev. Matt 24:15-35\s+2 + +.IP "22" 4 +cecilia +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Sir 51:13-17.\s+2 +.br +\s-2Ev. Matt 25:1-13.\s+2 + +.IP "23" 4 +clement-i +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Phil 3:17-21; 4:1-3\s+2 +.br +\s-2Ev. Matt 16:13-19\s+2 +.br +\s-2Com. felicity\s+2 + +.IP "24" 4 +john-of-the-cross +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim 4:1-8\s+2 +.br +\s-2Ev. Matt 5:13-19\s+2 +.br +\s-2Com. chrysogonus\s+2 + +.IP "25" 4 +catherine-of-alexandria +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Sir 51:1-8; 51:12\s+2 +.br +\s-2Ev. Matt 25:1-13.\s+2 + +.IP "26" 4 +sylvester +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Ecclus 45:1-6\s+2 +.br +\s-2Ev. Matt 19:27-29.\s+2 +.br +\s-2Com. peter-of-alexandria\s+2 + +.IP "27" 4 +Officium sanctae Mariae in sabbato +.br +\s-2class-4 \(bu white\s+2 +.br +\s-2Ep. Ecclus 24:14-16\s+2 +.br +\s-2Ev. Luke 11:27-28\s+2 + +.IP "28" 4 +ef-advent-sunday-1 +.br +\s-2class-1 \(bu violet\s+2 +.br +\s-2Ep. Rom 13:11-14\s+2 +.br +\s-2Ev. Luke 21:25-33\s+2 + +.IP "29" 4 +ef-advent-1-monday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Rom 13:11-14\s+2 +.br +\s-2Ev. Luke 21:25-33\s+2 +.br +\s-2Com. saturninus\s+2 + +.IP "30" 4 +andrew +.br +\s-2class-2 \(bu red\s+2 +.br +\s-2Ep. Rom 10:10-18\s+2 +.br +\s-2Ev. Matt 4:18-22\s+2 +.br +\s-2Com. ef-advent-1-tuesday\s+2 + + +.SH +December +.LP + +.IP "1" 4 +ef-advent-1-wednesday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Rom 13:11-14\s+2 +.br +\s-2Ev. Luke 21:25-33\s+2 + +.IP "2" 4 +vivian +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. Sir 51:13-17.\s+2 +.br +\s-2Ev. Matt 13:44-52.\s+2 +.br +\s-2Com. ef-advent-1-thursday\s+2 + +.IP "3" 4 +francis-xavier +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Rom 10:10-18\s+2 +.br +\s-2Ev. Mark 16:15-18\s+2 +.br +\s-2Com. ef-advent-1-friday\s+2 + +.IP "4" 4 +peter-chrysologus +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim 4:1-8\s+2 +.br +\s-2Ev. Matt 5:13-19\s+2 +.br +\s-2Com. ef-advent-1-saturday\s+2 +.br +\s-2Com. barbara\s+2 + +.IP "5" 4 +ef-advent-sunday-2 +.br +\s-2class-1 \(bu violet\s+2 +.br +\s-2Ep. Rom 15:4-13\s+2 +.br +\s-2Ev. Matt 11:2-10\s+2 + +.IP "6" 4 +nicholas +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. Heb 13:7-17\s+2 +.br +\s-2Ev. Matt 25:14-23\s+2 +.br +\s-2Com. ef-advent-2-monday\s+2 + +.IP "7" 4 +ambrose +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 2 Tim 4:1-8\s+2 +.br +\s-2Ev. Matt 5:13-19\s+2 +.br +\s-2Com. ef-advent-2-tuesday\s+2 + +.IP "8" 4 +immaculate-conception-of-the-blessed-virgin-mary +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Prov 8:22-35\s+2 +.br +\s-2Ev. Luke 1:26-28\s+2 +.br +\s-2Com. ef-advent-2-wednesday\s+2 + +.IP "9" 4 +ef-advent-2-thursday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Rom 15:4-13\s+2 +.br +\s-2Ev. Matt 11:2-10\s+2 + +.IP "10" 4 +ef-advent-2-friday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Rom 15:4-13\s+2 +.br +\s-2Ev. Matt 11:2-10\s+2 +.br +\s-2Com. melchiades\s+2 + +.IP "11" 4 +damasus-i +.br +\s-2class-3 \(bu white\s+2 +.br +\s-2Ep. 1 Pet 5:1-4; 5:10-11.\s+2 +.br +\s-2Ev. Matt 16:13-19\s+2 +.br +\s-2Com. ef-advent-2-saturday\s+2 + +.IP "12" 4 +ef-advent-sunday-3 +.br +\s-2class-1 \(bu rose\s+2 +.br +\s-2Ep. Phil 4:4-7\s+2 +.br +\s-2Ev. John 1:19-28\s+2 + +.IP "13" 4 +lucy +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. 2 Cor 10:17-18; 11:1-2\s+2 +.br +\s-2Ev. Matt 13:44-52.\s+2 +.br +\s-2Com. ef-advent-3-monday\s+2 + +.IP "14" 4 +ef-advent-3-tuesday +.br +\s-2class-3 \(bu violet\s+2 +.br +\s-2Ep. Phil 4:4-7\s+2 +.br +\s-2Ev. John 1:19-28\s+2 + +.IP "15" 4 +ef-advent-ember-wed +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. Isa 7:10-15\s+2 +.br +\s-2Ev. Luke 1:26-38\s+2 + +.IP "16" 4 +eusebius +.br +\s-2class-3 \(bu red\s+2 +.br +\s-2Ep. 2 Cor. 1:3-7\s+2 +.br +\s-2Ev. Matt 16:24-27.\s+2 +.br +\s-2Com. ef-advent-3-thursday\s+2 + +.IP "17" 4 +ef-advent-ember-fri +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. Isa 11:1-5\s+2 +.br +\s-2Ev. Luke 1:39-47\s+2 + +.IP "18" 4 +ef-advent-ember-sat +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. 2 Thess 2:1-8\s+2 +.br +\s-2Ev. Luke 3:1-6\s+2 + +.IP "19" 4 +ef-advent-sunday-4 +.br +\s-2class-1 \(bu violet\s+2 +.br +\s-2Ep. 1 Cor. 4:1-5\s+2 +.br +\s-2Ev. Luke 3:1-6\s+2 + +.IP "20" 4 +ef-advent-4-monday +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. 1 Cor. 4:1-5\s+2 +.br +\s-2Ev. Luke 3:1-6\s+2 + +.IP "21" 4 +thomas +.br +\s-2class-2 \(bu red\s+2 +.br +\s-2Ep. Eph 2:19-22\s+2 +.br +\s-2Ev. John 20:24-29\s+2 +.br +\s-2Com. ef-advent-4-tuesday\s+2 + +.IP "22" 4 +ef-advent-4-wednesday +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. 1 Cor. 4:1-5\s+2 +.br +\s-2Ev. Luke 3:1-6\s+2 + +.IP "23" 4 +ef-advent-4-thursday +.br +\s-2class-2 \(bu violet\s+2 +.br +\s-2Ep. 1 Cor. 4:1-5\s+2 +.br +\s-2Ev. Luke 3:1-6\s+2 + +.IP "24" 4 +ef-nativity-vigil +.br +\s-2class-1 \(bu violet\s+2 +.br +\s-2Ep. Rom 1:1-6\s+2 +.br +\s-2Ev. Matt 1:18-21\s+2 + +.IP "25" 4 +ef-nativity +.br +\s-2class-1 \(bu white\s+2 +.br +\s-2Ep. Heb 1:1-12\s+2 +.br +\s-2Ev. John 1:1-14\s+2 + +.IP "26" 4 +ef-christmas-sunday-0 +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Gal 4:1-7\s+2 +.br +\s-2Ev. Luke 2:33-40\s+2 +.br +\s-2Com. stephen\s+2 + +.IP "27" 4 +john-the-evangelist +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Ecclus 15:1-6\s+2 +.br +\s-2Ev. John 21:19-24\s+2 +.br +\s-2Com. ef-nativity-octave-day-3\s+2 + +.IP "28" 4 +holy-innocents +.br +\s-2class-2 \(bu red\s+2 +.br +\s-2Ep. Apoc 14:1-5\s+2 +.br +\s-2Ev. Matt 2:13-18\s+2 +.br +\s-2Com. ef-nativity-octave-day-4\s+2 + +.IP "29" 4 +ef-nativity-octave-day-5 +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Titus 3:4-7\s+2 +.br +\s-2Ev. Luke 2:15-20\s+2 +.br +\s-2Com. thomas-becket\s+2 + +.IP "30" 4 +ef-nativity-octave-day-6 +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Titus 3:4-7\s+2 +.br +\s-2Ev. Luke 2:15-20\s+2 + +.IP "31" 4 +ef-nativity-octave-day-7 +.br +\s-2class-2 \(bu white\s+2 +.br +\s-2Ep. Titus 3:4-7\s+2 +.br +\s-2Ev. Luke 2:15-20\s+2 +.br +\s-2Com. silvester\s+2 + + diff --git a/test/golden/ordo-2027.tex b/test/golden/ordo-2027.tex new file mode 100644 index 0000000..f5faa3d --- /dev/null +++ b/test/golden/ordo-2027.tex @@ -0,0 +1,2737 @@ +% colitur ordo booklet -- LaTeX. flavour: latex +% Build: colitur table --year 2027 --template ordo.tex > ordo.tex && pdflatex ordo.tex +% +% Day label falls back to the slug when the day carries no Latin name (most +% temporal days, and most sanctoral entries, which are Latin-less in the +% shipped data). The fallback is written as a name-section wrapping a plain +% var and its inverse, deliberately NOT as a single dotted-path lookup +% followed by its own inverse: a dotted lookup that misses climbs to the +% enclosing scope for the WHOLE path, and the month object also carries a +% same-named key one level up, so the naive form would render the month's +% own Latin name on every day lacking one, and never fall back at all. +\documentclass[10pt,twoside]{article} +\usepackage[a5paper,margin=15mm]{geometry} +\usepackage[T1]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage{fancyhdr} +\pagestyle{fancy} +\fancyhead[C]{ORDO 2027 \textperiodcentered\ ef} +\setlength{\parindent}{0pt} +\begin{document} + +\section*{ Ianuarius } + +\textbf{ 1 } \quad ef-circumcision\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Titus 2:11-15\quad\small Ev. Luke 2:21\\ + +\medskip + + +\textbf{ 2 } \quad Officium sanctae Mariae in sabbato\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Titus 3:4-7\quad\small Ev. Luke 2:15-20\\ + +\medskip + + +\textbf{ 3 } \quad Sanctissimi Nominis Iesu\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Acts 4:8-12\quad\small Ev. Luke 2:21\\ + +\medskip + + +\textbf{ 4 } \quad ef-christmas-1-monday\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Titus 2:11-15\quad\small Ev. Luke 2:21\\ + +\medskip + + +\textbf{ 5 } \quad ef-christmas-1-tuesday\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Titus 2:11-15\quad\small Ev. Luke 2:21\\ +\small Com. telesphorus-pope-and-martyr\\ + +\medskip + + +\textbf{ 6 } \quad ef-epiphany\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Isa 60:1-6\quad\small Ev. Matt 2:1-12\\ + +\medskip + + +\textbf{ 7 } \quad ef-christmas-2-thursday\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Isa 60:1-6\quad\small Ev. Matt 2:1-12\\ + +\medskip + + +\textbf{ 8 } \quad ef-christmas-2-friday\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Isa 60:1-6\quad\small Ev. Matt 2:1-12\\ + +\medskip + + +\textbf{ 9 } \quad Officium sanctae Mariae in sabbato\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Titus 3:4-7\quad\small Ev. Luke 2:15-20\\ + +\medskip + + +\textbf{ 10 } \quad Sanctae Familiae Iesu, Mariae, Ioseph\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Col 3:12-17\quad\small Ev. Luke 2:42-52\\ + +\medskip + + +\textbf{ 11 } \quad ef-time-after-epiphany-1-monday\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Rom 12:1-5\quad\small Ev. Luke 2:42-52\\ +\small Com. hyginus-pope-and-martyr\\ + +\medskip + + +\textbf{ 12 } \quad ef-time-after-epiphany-1-tuesday\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Rom 12:1-5\quad\small Ev. Luke 2:42-52\\ + +\medskip + + +\textbf{ 13 } \quad commemoration-of-the-baptism-of-the-lord\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Isa 60:1-6\quad\small Ev. John 1:29-34\\ + +\medskip + + +\textbf{ 14 } \quad hilary\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ +\small Com. felicis\\ + +\medskip + + +\textbf{ 15 } \quad paul-the-first-hermit\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Phil 3:7-12\quad\small Ev. Matt 11:25-30\\ +\small Com. maur-abbot\\ + +\medskip + + +\textbf{ 16 } \quad marcellus-i\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\ + +\medskip + + +\textbf{ 17 } \quad ef-time-after-epiphany-sunday-2\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. Rom 12:6-16\quad\small Ev. John 2:1-11\\ + +\medskip + + +\textbf{ 18 } \quad ef-time-after-epiphany-2-monday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Rom 12:6-16\quad\small Ev. John 2:1-11\\ +\small Com. prisca\\ + +\medskip + + +\textbf{ 19 } \quad ef-time-after-epiphany-2-tuesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Rom 12:6-16\quad\small Ev. John 2:1-11\\ +\small Com. canute-martyr\\ +\small Com. sts-marius-martha-audifax-abachum\\ + +\medskip + + +\textbf{ 20 } \quad sts-fabian-sebastian\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Heb 11:33-39\quad\small Ev. Luke 6:17-23\\ + +\medskip + + +\textbf{ 21 } \quad agnes\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Sir 51:1-8; 51:12\quad\small Ev. Matt 25:1-13.\\ + +\medskip + + +\textbf{ 22 } \quad sts-vincent-anastasius\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Wis 3:1-8\quad\small Ev. Luke 21:9-19\\ + +\medskip + + +\textbf{ 23 } \quad raymond-of-pe-afort\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ +\small Com. emerentiana\\ + +\medskip + + +\textbf{ 24 } \quad ef-septuagesima-sunday-1\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. 1 Cor. 9:24-27; 10:1-5\quad\small Ev. Matt 20:1-16\\ + +\medskip + + +\textbf{ 25 } \quad conversion-of-st-paul\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Acts 9:1-22\quad\small Ev. Matt 19:27-29.\\ +\small Com. peter\\ + +\medskip + + +\textbf{ 26 } \quad polycarp\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. 1 John 3:10-16\quad\small Ev. Matt 10:26-32.\\ + +\medskip + + +\textbf{ 27 } \quad john-chrysostom\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ + +\medskip + + +\textbf{ 28 } \quad peter-nolasco\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 1 Cor. 4:9-14\quad\small Ev. Luke 12:32-34\\ +\small Com. agnes-secundo\\ + +\medskip + + +\textbf{ 29 } \quad francis-de-sales\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ + +\medskip + + +\textbf{ 30 } \quad martina\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Sir 51:1-8; 51:12\quad\small Ev. Matt 25:1-13.\\ + +\medskip + + +\textbf{ 31 } \quad ef-septuagesima-sunday-2\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. 2 Cor. 11:19-33; 12:1-9\quad\small Ev. Luke 8:4-15\\ + +\medskip + + + +\section*{ Februarius } + +\textbf{ 1 } \quad ignatius-of-antioch\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Rom 8:35-39\quad\small Ev. John 12:24-26\\ + +\medskip + + +\textbf{ 2 } \quad purification-of-the-blessed-virgin-mary\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Mal 3:1-4\quad\small Ev. Luke 2:22-32\\ + +\medskip + + +\textbf{ 3 } \quad ef-septuagesima-2-wednesday\\ +\small class-4 \textperiodcentered\ violet\\ +\small Ep. 2 Cor. 11:19-33; 12:1-9\quad\small Ev. Luke 8:4-15\\ +\small Com. blaise\\ + +\medskip + + +\textbf{ 4 } \quad andrew-corsini\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Matt 25:14-23\\ + +\medskip + + +\textbf{ 5 } \quad agatha\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. 1 Cor. 1:26-31\quad\small Ev. Matt 19:3-12.\\ + +\medskip + + +\textbf{ 6 } \quad titus\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Luke 10:1-9\\ +\small Com. dorothy\\ + +\medskip + + +\textbf{ 7 } \quad ef-septuagesima-sunday-3\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. 1 Cor. 13:1-13\quad\small Ev. Luke 18:31-43\\ + +\medskip + + +\textbf{ 8 } \quad john-of-matha\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ + +\medskip + + +\textbf{ 9 } \quad cyril-of-alexandria\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ +\small Com. appollonia\\ + +\medskip + + +\textbf{ 10 } \quad ef-ash-wednesday\\ +\small class-1 \textperiodcentered\ violet\\ +\small Ep. Joel 2:12-19\quad\small Ev. Matt 6:16-21\\ + +\medskip + + +\textbf{ 11 } \quad ef-lent-after-ashes-thursday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Isa 38:1-6\quad\small Ev. Matt 8:5-13\\ +\small Com. our-lady-of-lourdes\\ + +\medskip + + +\textbf{ 12 } \quad ef-lent-after-ashes-friday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Isa 58:1-9\quad\small Ev. Matt 5:43-48; 6:1-4\\ +\small Com. seven-holy-servite-founders\\ + +\medskip + + +\textbf{ 13 } \quad ef-lent-after-ashes-saturday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Isa 58:9-14\quad\small Ev. Mark 6:47-56\\ + +\medskip + + +\textbf{ 14 } \quad ef-lent-sunday-1\\ +\small class-1 \textperiodcentered\ violet\\ +\small Ep. 2 Cor. 6:1-10\quad\small Ev. Matt 4:1-11\\ + +\medskip + + +\textbf{ 15 } \quad ef-lent-1-monday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Ezech 34:11-16\quad\small Ev. Matt 25:31-46\\ +\small Com. sts-faustinus-jovita\\ + +\medskip + + +\textbf{ 16 } \quad ef-lent-1-tuesday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Isa 55:6-11\quad\small Ev. Matt 21:10-17\\ + +\medskip + + +\textbf{ 17 } \quad ef-lent-ember-wed\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. 3 Kgs. 19:3-8\quad\small Ev. Matt 12:38-50\\ + +\medskip + + +\textbf{ 18 } \quad ef-lent-1-thursday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Ezech 18:1-9\quad\small Ev. Matt 15:21-28\\ +\small Com. simeon\\ + +\medskip + + +\textbf{ 19 } \quad ef-lent-ember-fri\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. Ezech 18:20-28\quad\small Ev. John 5:1-15\\ + +\medskip + + +\textbf{ 20 } \quad ef-lent-ember-sat\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. 1 Thess. 5:14-23\quad\small Ev. Matt 17:1-9\\ + +\medskip + + +\textbf{ 21 } \quad ef-lent-sunday-2\\ +\small class-1 \textperiodcentered\ violet\\ +\small Ep. 1 Thess. 4:1-7\quad\small Ev. Matt 17:1-9\\ + +\medskip + + +\textbf{ 22 } \quad chair-of-st-peter\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. 1 Pet 1:1-7\quad\small Ev. Matt 16:13-19\\ +\small Com. ef-lent-2-monday\\ +\small Com. paul\\ + +\medskip + + +\textbf{ 23 } \quad ef-lent-2-tuesday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. 3 Kings 17:8-16\quad\small Ev. Matt 23:1-12\\ +\small Com. peter-damien\\ + +\medskip + + +\textbf{ 24 } \quad matthias\\ +\small class-2 \textperiodcentered\ red\\ +\small Ep. Acts 1:15-26\quad\small Ev. Matt 11:25-30\\ +\small Com. ef-lent-2-wednesday\\ + +\medskip + + +\textbf{ 25 } \quad ef-lent-2-thursday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Jer 17:5-10\quad\small Ev. Luke 16:19-31\\ + +\medskip + + +\textbf{ 26 } \quad ef-lent-2-friday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Gen 37:6-22\quad\small Ev. Matt 21:33-46\\ + +\medskip + + +\textbf{ 27 } \quad ef-lent-2-saturday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Gen 27:6-40\quad\small Ev. Luke 15:11-32\\ +\small Com. gabriel-of-our-lady-of-sorrows\\ + +\medskip + + +\textbf{ 28 } \quad ef-lent-sunday-3\\ +\small class-1 \textperiodcentered\ violet\\ +\small Ep. Eph 5:1-9\quad\small Ev. Luke 11:14-28\\ + +\medskip + + + +\section*{ Martius } + +\textbf{ 1 } \quad ef-lent-3-monday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. 4 Kings 5:1-15\quad\small Ev. Luke 4:23-30\\ + +\medskip + + +\textbf{ 2 } \quad ef-lent-3-tuesday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. 4 Kings 4:1-7\quad\small Ev. Matt 18:15-22\\ + +\medskip + + +\textbf{ 3 } \quad ef-lent-3-wednesday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Ex 20:12-24\quad\small Ev. Matt 15:1-20\\ + +\medskip + + +\textbf{ 4 } \quad ef-lent-3-thursday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Jer 7:1-7\quad\small Ev. Luke 4:38-44.\\ +\small Com. casimir\\ +\small Com. lucius\\ + +\medskip + + +\textbf{ 5 } \quad ef-lent-3-friday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Num 20:1, 3; 6-13.\quad\small Ev. John 4:5-42\\ + +\medskip + + +\textbf{ 6 } \quad ef-lent-3-saturday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Dan 13:1-9, 15-17, 19-30, 33-62.\quad\small Ev. John 8:1-11\\ +\small Com. sts-felicitas-perpetua\\ + +\medskip + + +\textbf{ 7 } \quad ef-lent-sunday-4\\ +\small class-1 \textperiodcentered\ rose\\ +\small Ep. Gal 4:22-31\quad\small Ev. John 6:1-15\\ + +\medskip + + +\textbf{ 8 } \quad ef-lent-4-monday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. 3 Kings 3:16-28\quad\small Ev. John 2:13-25\\ +\small Com. john-of-god\\ + +\medskip + + +\textbf{ 9 } \quad ef-lent-4-tuesday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Ex 32:7-14\quad\small Ev. John 7:14-31\\ +\small Com. frances-rome\\ + +\medskip + + +\textbf{ 10 } \quad ef-lent-4-wednesday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Isa. 1:16-19\quad\small Ev. John 9:1-38\\ +\small Com. forty-holy-martyrs-of-sebaste\\ + +\medskip + + +\textbf{ 11 } \quad ef-lent-4-thursday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. 4 Kings 4:25-38\quad\small Ev. Luke 7:11-16\\ + +\medskip + + +\textbf{ 12 } \quad ef-lent-4-friday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. 3 Kings 17:17-24\quad\small Ev. John 11:1-45\\ +\small Com. gregory-the-great\\ + +\medskip + + +\textbf{ 13 } \quad ef-lent-4-saturday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Isa 49:8-15\quad\small Ev. John 8:12-20\\ + +\medskip + + +\textbf{ 14 } \quad ef-passion-sunday\\ +\small class-1 \textperiodcentered\ violet\\ +\small Ep. Heb 9:11-15.\quad\small Ev. John 8:46-59.\\ + +\medskip + + +\textbf{ 15 } \quad ef-passiontide-1-monday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Jonas 3:1-10\quad\small Ev. John 7:32-39\\ + +\medskip + + +\textbf{ 16 } \quad ef-passiontide-1-tuesday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Dan 14:27, 28-42\quad\small Ev. John 7:1-13\\ + +\medskip + + +\textbf{ 17 } \quad ef-passiontide-1-wednesday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Lev 19:1-2, 11-19, 25\quad\small Ev. John 10:22-38\\ +\small Com. patrick\\ + +\medskip + + +\textbf{ 18 } \quad ef-passiontide-1-thursday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Dan 3:25, 34-45.\quad\small Ev. Luke 7:36-50\\ +\small Com. cyril-of-jerusalem\\ + +\medskip + + +\textbf{ 19 } \quad joseph-spouse-of-the-bl-virgin-mary\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Ecclus 45:1-6\quad\small Ev. Matt 1:18-21\\ +\small Com. ef-passiontide-1-friday\\ + +\medskip + + +\textbf{ 20 } \quad ef-passiontide-1-saturday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Jer 18:18-23\quad\small Ev. John 12:10-36\\ + +\medskip + + +\textbf{ 21 } \quad ef-palm-sunday\\ +\small class-1 \textperiodcentered\ violet\\ +\small Ep. Phil 2:5-11\quad\small Ev. Matt. 26:36-75; 27:1-60.\\ + +\medskip + + +\textbf{ 22 } \quad ef-passiontide-2-monday\\ +\small class-1 \textperiodcentered\ violet\\ +\small Ep. Isa 50:5-10\quad\small Ev. John 12:1-9\\ + +\medskip + + +\textbf{ 23 } \quad ef-passiontide-2-tuesday\\ +\small class-1 \textperiodcentered\ violet\\ +\small Ep. Jer 11:18-20\quad\small Ev. Mark 14:32-72; 15, 1-46\\ + +\medskip + + +\textbf{ 24 } \quad ef-passiontide-2-wednesday\\ +\small class-1 \textperiodcentered\ violet\\ +\small Ep. Isa 53:1-12\quad\small Ev. Luke 22:39-71; 23:1-53\\ + +\medskip + + +\textbf{ 25 } \quad Feria V in Cena Domini\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. 1 Cor 11:20-32\quad\small Ev. John 13:1-15\\ + +\medskip + + +\textbf{ 26 } \quad Feria VI in Passione et Morte Domini\\ +\small class-1 \textperiodcentered\ black\\ +\small Ep. Ex 12:1-11\quad\small Ev. John 18:1-40; 19:1-42\\ + +\medskip + + +\textbf{ 27 } \quad Sabbato sancto\\ +\small class-1 \textperiodcentered\ violet\\ +\small Ep. Col 3:1-4\quad\small Ev. Matt 28:1-7\\ + +\medskip + + +\textbf{ 28 } \quad ef-easter-sunday\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. 1 Cor 5:7-8\quad\small Ev. Mark 16:1-7\\ + +\medskip + + +\textbf{ 29 } \quad ef-easter-1-monday\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Acts 10:37-43.\quad\small Ev. Luke 24:13-35\\ + +\medskip + + +\textbf{ 30 } \quad ef-easter-1-tuesday\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Acts 13:16; 13:26-33\quad\small Ev. Luke 24:36-47\\ + +\medskip + + +\textbf{ 31 } \quad ef-easter-1-wednesday\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Acts 3:13-15; 3:17-19\quad\small Ev. John 21:1-14\\ + +\medskip + + + +\section*{ Aprilis } + +\textbf{ 1 } \quad ef-easter-1-thursday\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Acts 8:26-40\quad\small Ev. John 20:11-18\\ + +\medskip + + +\textbf{ 2 } \quad ef-easter-1-friday\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. 1 Pet 3:18-22\quad\small Ev. Matt 28:16-20\\ + +\medskip + + +\textbf{ 3 } \quad ef-easter-1-saturday\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. 1 Pet 2:1-10\quad\small Ev. John 20:1-9\\ + +\medskip + + +\textbf{ 4 } \quad ef-low-sunday\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. 1 John 5:4-10\quad\small Ev. John 20:19-31\\ + +\medskip + + +\textbf{ 5 } \quad annunciation-of-the-blessed-virgin-mary\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Isa 7:10-15\quad\small Ev. Luke 1:26-38\\ + +\medskip + + +\textbf{ 6 } \quad ef-easter-2-tuesday\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. 1 John 5:4-10\quad\small Ev. John 20:19-31\\ + +\medskip + + +\textbf{ 7 } \quad ef-easter-2-wednesday\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. 1 John 5:4-10\quad\small Ev. John 20:19-31\\ + +\medskip + + +\textbf{ 8 } \quad ef-easter-2-thursday\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. 1 John 5:4-10\quad\small Ev. John 20:19-31\\ + +\medskip + + +\textbf{ 9 } \quad ef-easter-2-friday\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. 1 John 5:4-10\quad\small Ev. John 20:19-31\\ + +\medskip + + +\textbf{ 10 } \quad Officium sanctae Mariae in sabbato\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Ecclus 24:14-16\quad\small Ev. John 19:25-27\\ + +\medskip + + +\textbf{ 11 } \quad ef-easter-sunday-3\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. 1 Pet 2:21-25\quad\small Ev. John 10:11-16\\ + +\medskip + + +\textbf{ 12 } \quad ef-easter-3-monday\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. 1 Pet 2:21-25\quad\small Ev. John 10:11-16\\ + +\medskip + + +\textbf{ 13 } \quad hermenegild\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Wis 10:10-14\quad\small Ev. Luke 14:26-33.\\ + +\medskip + + +\textbf{ 14 } \quad justin\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. 1 Cor 1:18-25; 1:30;\quad\small Ev. Luke 12:2-8\\ +\small Com. sts-tiburtius-valerian-et-maximus-martyrs\\ + +\medskip + + +\textbf{ 15 } \quad ef-easter-3-thursday\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. 1 Pet 2:21-25\quad\small Ev. John 10:11-16\\ + +\medskip + + +\textbf{ 16 } \quad ef-easter-3-friday\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. 1 Pet 2:21-25\quad\small Ev. John 10:11-16\\ + +\medskip + + +\textbf{ 17 } \quad Officium sanctae Mariae in sabbato\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Ecclus 24:14-16\quad\small Ev. John 19:25-27\\ +\small Com. anicetus\\ + +\medskip + + +\textbf{ 18 } \quad ef-easter-sunday-4\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. 1 Pet 2:11-19\quad\small Ev. John 16:16-22\\ + +\medskip + + +\textbf{ 19 } \quad ef-easter-4-monday\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. 1 Pet 2:11-19\quad\small Ev. John 16:16-22\\ + +\medskip + + +\textbf{ 20 } \quad ef-easter-4-tuesday\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. 1 Pet 2:11-19\quad\small Ev. John 16:16-22\\ + +\medskip + + +\textbf{ 21 } \quad anselm\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ + +\medskip + + +\textbf{ 22 } \quad sts-soter-caius\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\ + +\medskip + + +\textbf{ 23 } \quad ef-easter-4-friday\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. 1 Pet 2:11-19\quad\small Ev. John 16:16-22\\ +\small Com. george\\ + +\medskip + + +\textbf{ 24 } \quad fidelis-of-sigmaringen\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Wis 5:1-5\quad\small Ev. John 15:1-7\\ + +\medskip + + +\textbf{ 25 } \quad ef-easter-sunday-5\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Jas 1:17-21\quad\small Ev. John 16:5-14\\ +\small Com. major-litanies\\ + +\medskip + + +\textbf{ 26 } \quad sts-cletus-marcellinus\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\ + +\medskip + + +\textbf{ 27 } \quad peter-canisius\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ + +\medskip + + +\textbf{ 28 } \quad paul-of-the-cross\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 1 Cor 1:17-25.\quad\small Ev. Luke 10:1-9\\ + +\medskip + + +\textbf{ 29 } \quad peter-of-verona\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. 2 Tim. 2:8-10; 3:10-12.\quad\small Ev. Matt 10:34-42\\ + +\medskip + + +\textbf{ 30 } \quad catherine-of-siena\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\ + +\medskip + + + +\section*{ Maius } + +\textbf{ 1 } \quad joseph-the-workman\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Col. 3:14-15, 17, 23-24\quad\small Ev. Matt 13:54-58\\ + +\medskip + + +\textbf{ 2 } \quad ef-easter-sunday-6\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Jas 1:22-27\quad\small Ev. John 16:23-30\\ + +\medskip + + +\textbf{ 3 } \quad ef-rogation-monday\\ +\small class-4 \textperiodcentered\ violet\\ +\small Ep. Jas 1:22-27\quad\small Ev. John 16:23-30\\ +\small Com. sts-alexander-companions\\ + +\medskip + + +\textbf{ 4 } \quad monica\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 1 Tim. 5:3-10.\quad\small Ev. Luke 7:11-16\\ + +\medskip + + +\textbf{ 5 } \quad ef-ascension-vigil\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Eph. 4:7-13.\quad\small Ev. John 17:1-11.\\ +\small Com. pius-v\\ + +\medskip + + +\textbf{ 6 } \quad ef-ascension\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Acts 1:1-11\quad\small Ev. Mark 16:14-20\\ + +\medskip + + +\textbf{ 7 } \quad stanislaus\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Wis 5:1-5\quad\small Ev. John 15:1-7\\ + +\medskip + + +\textbf{ 8 } \quad Officium sanctae Mariae in sabbato\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Ecclus 24:14-16\quad\small Ev. John 19:25-27\\ + +\medskip + + +\textbf{ 9 } \quad ef-easter-sunday-7\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. 1 Pet 4:7-11.\quad\small Ev. John 15:26-27; 16:1-4.\\ + +\medskip + + +\textbf{ 10 } \quad antoninus\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Matt 25:14-23\\ +\small Com. gordiano-and-epimacho\\ + +\medskip + + +\textbf{ 11 } \quad sts-philip-james\\ +\small class-2 \textperiodcentered\ red\\ +\small Ep. Wis. 5:1-5\quad\small Ev. John 14:1-13\\ + +\medskip + + +\textbf{ 12 } \quad sts-nereus-achilleus-domitilla-pancras\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Wis. 5:1-5\quad\small Ev. John 4:46-53\\ + +\medskip + + +\textbf{ 13 } \quad robert-bellarmine\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Wis 7:7-14.\quad\small Ev. Matt 5:13-19\\ + +\medskip + + +\textbf{ 14 } \quad ef-easter-7-friday\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. 1 Pet 4:7-11.\quad\small Ev. John 15:26-27; 16:1-4.\\ +\small Com. boniface-martyr\\ + +\medskip + + +\textbf{ 15 } \quad ef-pentecost-vigil\\ +\small class-1 \textperiodcentered\ red\\ +\small Ep. Acts 19:1-8.\quad\small Ev. John 14:15-21.\\ + +\medskip + + +\textbf{ 16 } \quad ef-pentecost\\ +\small class-1 \textperiodcentered\ red\\ +\small Ep. Acts 2:1-11.\quad\small Ev. John 14:23-31.\\ + +\medskip + + +\textbf{ 17 } \quad ef-easter-8-monday\\ +\small class-1 \textperiodcentered\ red\\ +\small Ep. Acts 10:34, 42-48\quad\small Ev. John 3:16-21\\ + +\medskip + + +\textbf{ 18 } \quad ef-easter-8-tuesday\\ +\small class-1 \textperiodcentered\ red\\ +\small Ep. Acts 8:14-17.\quad\small Ev. John 10:1-10.\\ + +\medskip + + +\textbf{ 19 } \quad ef-pentecost-ember-wed\\ +\small class-1 \textperiodcentered\ red\\ +\small Ep. Acts 5:12-16\quad\small Ev. John 6:44-52.\\ + +\medskip + + +\textbf{ 20 } \quad ef-easter-8-thursday\\ +\small class-1 \textperiodcentered\ red\\ +\small Ep. Acts 8:5-8\quad\small Ev. Luke 9:1-6\\ + +\medskip + + +\textbf{ 21 } \quad ef-pentecost-ember-fri\\ +\small class-1 \textperiodcentered\ red\\ +\small Ep. Joel 2:23-24; 26-27\quad\small Ev. Luke 5:17-26\\ + +\medskip + + +\textbf{ 22 } \quad ef-pentecost-ember-sat\\ +\small class-1 \textperiodcentered\ red\\ +\small Ep. Rom 5:1-5.\quad\small Ev. Luke 4:38-44.\\ + +\medskip + + +\textbf{ 23 } \quad ef-trinity\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Rom 11:33-36.\quad\small Ev. Matt 28:18-20\\ + +\medskip + + +\textbf{ 24 } \quad ef-time-after-pentecost-1-monday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. 1 John 4:8-21\quad\small Ev. Luke 6:36-42\\ + +\medskip + + +\textbf{ 25 } \quad gregory-vii\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\ +\small Com. urban-pope-and-martyr\\ + +\medskip + + +\textbf{ 26 } \quad philip-neri\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Wis 7:7-14.\quad\small Ev. Luke 12:35-40\\ +\small Com. eleutherius\\ + +\medskip + + +\textbf{ 27 } \quad ef-corpus-christi\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. 1 Cor 11:23-29\quad\small Ev. John 6:56-59\\ + +\medskip + + +\textbf{ 28 } \quad augustine-of-canterbury\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 1 Thess 2:2-9\quad\small Ev. Luke 10:1-9\\ + +\medskip + + +\textbf{ 29 } \quad mary-magdalene-de-pazzi\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\ + +\medskip + + +\textbf{ 30 } \quad ef-time-after-pentecost-sunday-2\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. 1 John 3:13-18.\quad\small Ev. Luke 14:16-24.\\ + +\medskip + + +\textbf{ 31 } \quad queenship-of-the-blessed-virgin-mary\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Eccli 24:5; 14:7; 14:9-11; 24:30-31\quad\small Ev. Luke 1:26-33\\ +\small Com. petronilla\\ + +\medskip + + + +\section*{ Iunius } + +\textbf{ 1 } \quad angela-merici\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\ + +\medskip + + +\textbf{ 2 } \quad ef-time-after-pentecost-2-wednesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. 1 John 3:13-18.\quad\small Ev. Luke 14:16-24.\\ +\small Com. sts-marcellinus-peter-erasmus\\ + +\medskip + + +\textbf{ 3 } \quad ef-time-after-pentecost-2-thursday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. 1 John 3:13-18.\quad\small Ev. Luke 14:16-24.\\ + +\medskip + + +\textbf{ 4 } \quad ef-sacred-heart\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Eph 3:8-12, 14-19\quad\small Ev. John 19:31-37\\ + +\medskip + + +\textbf{ 5 } \quad boniface\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Ecclus 44:1-15\quad\small Ev. Matt 5:1-12\\ + +\medskip + + +\textbf{ 6 } \quad ef-time-after-pentecost-sunday-3\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. 1 Pet. 5:6-11\quad\small Ev. Luke 15:1-10\\ + +\medskip + + +\textbf{ 7 } \quad ef-time-after-pentecost-3-monday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. 1 Pet. 5:6-11\quad\small Ev. Luke 15:1-10\\ + +\medskip + + +\textbf{ 8 } \quad ef-time-after-pentecost-3-tuesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. 1 Pet. 5:6-11\quad\small Ev. Luke 15:1-10\\ + +\medskip + + +\textbf{ 9 } \quad ef-time-after-pentecost-3-wednesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. 1 Pet. 5:6-11\quad\small Ev. Luke 15:1-10\\ +\small Com. sts-primus-felicianus\\ + +\medskip + + +\textbf{ 10 } \quad margaret-of-scotland\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\ + +\medskip + + +\textbf{ 11 } \quad barnabas\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Acts 11:21-26; 13:1-3\quad\small Ev. Matt 10:16-22\\ + +\medskip + + +\textbf{ 12 } \quad john-of-san-fecundo\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ +\small Com. basilidus\\ + +\medskip + + +\textbf{ 13 } \quad ef-time-after-pentecost-sunday-4\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. Rom 8:18-23\quad\small Ev. Luke 5:1-11\\ + +\medskip + + +\textbf{ 14 } \quad basil-the-great\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim 4:1-8\quad\small Ev. Luke 14:26-35\\ + +\medskip + + +\textbf{ 15 } \quad ef-time-after-pentecost-4-tuesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Rom 8:18-23\quad\small Ev. Luke 5:1-11\\ +\small Com. vitus\\ + +\medskip + + +\textbf{ 16 } \quad ef-time-after-pentecost-4-wednesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Rom 8:18-23\quad\small Ev. Luke 5:1-11\\ + +\medskip + + +\textbf{ 17 } \quad gregory-barbarigo\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Matt 25:14-23\\ + +\medskip + + +\textbf{ 18 } \quad ephrem-of-syria\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ +\small Com. marcus-and-marcellianus\\ + +\medskip + + +\textbf{ 19 } \quad julia-of-falconieri\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\ +\small Com. sts-gervasius-and-protasius\\ + +\medskip + + +\textbf{ 20 } \quad ef-time-after-pentecost-sunday-5\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. 1 Pet 3:8-15.\quad\small Ev. Matt 5:20-24.\\ + +\medskip + + +\textbf{ 21 } \quad aloysius-gongzaga\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 31:8-11\quad\small Ev. Matt 22:29-40\\ + +\medskip + + +\textbf{ 22 } \quad paulinus-of-nola\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Cor. 8:9-15\quad\small Ev. Luke 12:32-34\\ + +\medskip + + +\textbf{ 23 } \quad vigil-of-the-nativity-of-st-john-the-baptist\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. Jer 1:4-10\quad\small Ev. Luke 1:5-17\\ + +\medskip + + +\textbf{ 24 } \quad nativity-of-st-john-the-baptist\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Isa 49:1-3, 5-7.\quad\small Ev. Luke 1:57-68\\ + +\medskip + + +\textbf{ 25 } \quad william\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Ecclus 45:1-6\quad\small Ev. Matt 19:27-29.\\ + +\medskip + + +\textbf{ 26 } \quad sts-john-paul\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Eccli 44:10-15\quad\small Ev. Luke 12:1-8\\ + +\medskip + + +\textbf{ 27 } \quad ef-time-after-pentecost-sunday-6\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. Rom 6:3-11.\quad\small Ev. Mark 8:1-9\\ + +\medskip + + +\textbf{ 28 } \quad vigil-of-sts-peter-paul\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. Acts 3:1-10\quad\small Ev. John 21:15-19\\ + +\medskip + + +\textbf{ 29 } \quad sts-peter-paul\\ +\small class-1 \textperiodcentered\ red\\ +\small Ep. Acts 12:1-11\quad\small Ev. Matt 16:13-19\\ + +\medskip + + +\textbf{ 30 } \quad in-commemoratione-sancti-pauli-apostoli\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Gal 1:11-20\quad\small Ev. Matt 10:16-22\\ +\small Com. commemoration-of-st-peter\\ + +\medskip + + + +\section*{ Iulius } + +\textbf{ 1 } \quad precious-blood-of-our-lord-jesus-christ\\ +\small class-1 \textperiodcentered\ red\\ +\small Ep. Heb 9:11-15.\quad\small Ev. John 19:30-35\\ + +\medskip + + +\textbf{ 2 } \quad visitation-of-the-blessed-virgin-mary\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Song 2:8-14\quad\small Ev. Luke 1:39-47\\ +\small Com. processus-and-martinian\\ + +\medskip + + +\textbf{ 3 } \quad irenaeus\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. 2 Tim. 3:14-17; 4:1-5\quad\small Ev. Matt 10:28-33\\ + +\medskip + + +\textbf{ 4 } \quad ef-time-after-pentecost-sunday-7\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. Rom 6:19-23\quad\small Ev. Matt 7:15-21\\ + +\medskip + + +\textbf{ 5 } \quad anthony-mary-zaccariah\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 1 Tim. 4:8-16\quad\small Ev. Mark 10:15-21\\ + +\medskip + + +\textbf{ 6 } \quad ef-time-after-pentecost-7-tuesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Rom 6:19-23\quad\small Ev. Matt 7:15-21\\ + +\medskip + + +\textbf{ 7 } \quad sts-cyril-methodius\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Heb 7:23-27\quad\small Ev. Luke 10:1-9\\ + +\medskip + + +\textbf{ 8 } \quad elizabeth-of-portugal\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\ + +\medskip + + +\textbf{ 9 } \quad ef-time-after-pentecost-7-friday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Rom 6:19-23\quad\small Ev. Matt 7:15-21\\ + +\medskip + + +\textbf{ 10 } \quad seven-holy-brothers-and-sts-rufina-secunda\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Prov 31:10-31\quad\small Ev. Matt 12:46-50\\ + +\medskip + + +\textbf{ 11 } \quad ef-time-after-pentecost-sunday-8\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. Rom 8:12-17\quad\small Ev. Luke 16:1-9\\ + +\medskip + + +\textbf{ 12 } \quad john-gualbert\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Ecclus 45:1-6\quad\small Ev. Matt 5:43-48\\ +\small Com. naboris-et-felicis\\ + +\medskip + + +\textbf{ 13 } \quad ef-time-after-pentecost-8-tuesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Rom 8:12-17\quad\small Ev. Luke 16:1-9\\ + +\medskip + + +\textbf{ 14 } \quad bonaventure\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ + +\medskip + + +\textbf{ 15 } \quad henry-the-emperor\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ + +\medskip + + +\textbf{ 16 } \quad ef-time-after-pentecost-8-friday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Rom 8:12-17\quad\small Ev. Luke 16:1-9\\ +\small Com. our-lady-of-mt-carmel\\ + +\medskip + + +\textbf{ 17 } \quad Officium sanctae Mariae in sabbato\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\ +\small Com. alexis\\ + +\medskip + + +\textbf{ 18 } \quad ef-time-after-pentecost-sunday-9\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. 1 Cor. 10:6-13\quad\small Ev. Luke 19:41-47\\ + +\medskip + + +\textbf{ 19 } \quad vincent-de-paul\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 1 Cor. 4:9-14\quad\small Ev. Luke 10:1-9\\ + +\medskip + + +\textbf{ 20 } \quad jerome-emiliani\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Isa 58:7-11\quad\small Ev. Matt 19:13-21\\ +\small Com. margaret\\ + +\medskip + + +\textbf{ 21 } \quad laurence-of-brindisi\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ +\small Com. praxedis-virginis\\ + +\medskip + + +\textbf{ 22 } \quad mary-magdalene\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Song 3:2-5; 8:6-7\quad\small Ev. Luke 7:36-50\\ + +\medskip + + +\textbf{ 23 } \quad apollinaris\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. 1 Pet. 5:1-11\quad\small Ev. Luke 22:24-30\\ +\small Com. liborii\\ + +\medskip + + +\textbf{ 24 } \quad Officium sanctae Mariae in sabbato\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\ +\small Com. christina\\ + +\medskip + + +\textbf{ 25 } \quad ef-time-after-pentecost-sunday-10\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. 1 Cor. 12:2-11\quad\small Ev. Luke 18:9-14\\ +\small Com. james-the-greater\\ + +\medskip + + +\textbf{ 26 } \quad anne-mother-of-the-blessed-virgin\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\ + +\medskip + + +\textbf{ 27 } \quad ef-time-after-pentecost-10-tuesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. 1 Cor. 12:2-11\quad\small Ev. Luke 18:9-14\\ +\small Com. pantaleon\\ + +\medskip + + +\textbf{ 28 } \quad sts-nazarius-celsus-st-victor-i-st-innocent-i\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Wis 10:17-20\quad\small Ev. Luke 21:9-19\\ + +\medskip + + +\textbf{ 29 } \quad martha\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Luke 10:38-42\\ +\small Com. felicis-simplicii-faustini-et-beatricis\\ + +\medskip + + +\textbf{ 30 } \quad ef-time-after-pentecost-10-friday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. 1 Cor. 12:2-11\quad\small Ev. Luke 18:9-14\\ +\small Com. sts-abdon-sennen\\ + +\medskip + + +\textbf{ 31 } \quad ignatius-loyola\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim. 2:8-10; 3:10-12.\quad\small Ev. Luke 10:1-9\\ + +\medskip + + + +\section*{ Augustus } + +\textbf{ 1 } \quad ef-time-after-pentecost-sunday-11\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. 1 Cor. 15:1-10\quad\small Ev. Mark 7:31-37\\ + +\medskip + + +\textbf{ 2 } \quad alphonsus-liguori\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim. 2:1-7\quad\small Ev. Luke 10:1-9\\ +\small Com. stephen-i-pope-and-martyr\\ + +\medskip + + +\textbf{ 3 } \quad ef-time-after-pentecost-11-tuesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. 1 Cor. 15:1-10\quad\small Ev. Mark 7:31-37\\ + +\medskip + + +\textbf{ 4 } \quad dominic\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim. 4:1-8\quad\small Ev. Luke 12:35-40\\ + +\medskip + + +\textbf{ 5 } \quad dedication-of-the-basilica-of-st-mary-major\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\ + +\medskip + + +\textbf{ 6 } \quad transfiguration-of-our-lord\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. 2 Pet. 1:16-19\quad\small Ev. Matt 17:1-9\\ +\small Com. pope-sixtus-ii-felicissimus-and-agapitus-martyrs\\ + +\medskip + + +\textbf{ 7 } \quad cajetan\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 31:8-11\quad\small Ev. Matt 6:24-33\\ +\small Com. donatus\\ + +\medskip + + +\textbf{ 8 } \quad ef-time-after-pentecost-sunday-12\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. 2 Cor. 3:4-9\quad\small Ev. Luke 10:23-37\\ + +\medskip + + +\textbf{ 9 } \quad vigil-of-st-lawrence\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Ecclus 51:1-8, 12\quad\small Ev. Matt 16:24-27\\ +\small Com. romanus\\ + +\medskip + + +\textbf{ 10 } \quad lawrence\\ +\small class-2 \textperiodcentered\ red\\ +\small Ep. 2 Cor. 9:6-10\quad\small Ev. John 12:24-26\\ + +\medskip + + +\textbf{ 11 } \quad ef-time-after-pentecost-12-wednesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. 2 Cor. 3:4-9\quad\small Ev. Luke 10:23-37\\ +\small Com. sts-tiburtius-susanna\\ + +\medskip + + +\textbf{ 12 } \quad clare\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\ + +\medskip + + +\textbf{ 13 } \quad ef-time-after-pentecost-12-friday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. 2 Cor. 3:4-9\quad\small Ev. Luke 10:23-37\\ +\small Com. sts-hippolytus-cassian\\ + +\medskip + + +\textbf{ 14 } \quad vigil-of-the-assumption\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. Sir 24:23-31\quad\small Ev. Luke 11:27-28\\ +\small Com. eusebius-confessor\\ + +\medskip + + +\textbf{ 15 } \quad assumption-of-the-blessed-virgin-mary\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Judith 13:22-25; 15:10\quad\small Ev. Luke 1:41-50\\ +\small Com. ef-time-after-pentecost-sunday-13\\ + +\medskip + + +\textbf{ 16 } \quad joachim-father-of-the-blessed-virgin\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Sir 31:8-11\quad\small Ev. Matt 1:1-16\\ + +\medskip + + +\textbf{ 17 } \quad hyacinth\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ + +\medskip + + +\textbf{ 18 } \quad ef-time-after-pentecost-13-wednesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Gal 3:16-22\quad\small Ev. Luke 17:11-19\\ +\small Com. agapitus\\ + +\medskip + + +\textbf{ 19 } \quad john-eudes\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ + +\medskip + + +\textbf{ 20 } \quad bernard-of-clairvaux\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Ecclus 39:6-14\quad\small Ev. Matt 5:13-19\\ + +\medskip + + +\textbf{ 21 } \quad jane-frances-de-chantal\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\ + +\medskip + + +\textbf{ 22 } \quad ef-time-after-pentecost-sunday-14\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. Gal 5:16-24\quad\small Ev. Matt 6:24-33\\ +\small Com. immaculate-heart-of-mary\\ + +\medskip + + +\textbf{ 23 } \quad philip-benizi\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 1 Cor. 4:9-14\quad\small Ev. Luke 12:32-34\\ + +\medskip + + +\textbf{ 24 } \quad bartholomew\\ +\small class-2 \textperiodcentered\ red\\ +\small Ep. 1 Cor. 12:27-31\quad\small Ev. Luke 6:12-19\\ + +\medskip + + +\textbf{ 25 } \quad louis-ix\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Wis 10:10-14\quad\small Ev. Luke 19:12-26\\ + +\medskip + + +\textbf{ 26 } \quad ef-time-after-pentecost-14-thursday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Gal 5:16-24\quad\small Ev. Matt 6:24-33\\ +\small Com. zephyrinus\\ + +\medskip + + +\textbf{ 27 } \quad joseph-calasance\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Wis 10:10-14\quad\small Ev. Matt 18:1-5\\ + +\medskip + + +\textbf{ 28 } \quad augustine\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ +\small Com. hermes\\ + +\medskip + + +\textbf{ 29 } \quad ef-time-after-pentecost-sunday-15\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. Gal 5:25-26; 6:1-10\quad\small Ev. Luke 7:11-16\\ + +\medskip + + +\textbf{ 30 } \quad rose-of-lima\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\ +\small Com. sts-felix-and-adauctus\\ + +\medskip + + +\textbf{ 31 } \quad raymond-nonnatus\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ + +\medskip + + + +\section*{ September } + +\textbf{ 1 } \quad ef-time-after-pentecost-15-wednesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Gal 5:25-26; 6:1-10\quad\small Ev. Luke 7:11-16\\ +\small Com. giles\\ +\small Com. twelve-holy-brothers-martyrs\\ + +\medskip + + +\textbf{ 2 } \quad stephen-of-hungary\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 31:8-11\quad\small Ev. Luke 19:12-26\\ + +\medskip + + +\textbf{ 3 } \quad pius-x\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 1 Thess. 2:2-8\quad\small Ev. John 21:15-17\\ + +\medskip + + +\textbf{ 4 } \quad Officium sanctae Mariae in sabbato\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\ + +\medskip + + +\textbf{ 5 } \quad ef-time-after-pentecost-sunday-16\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. Eph 3:13-21\quad\small Ev. Luke 14:1-11\\ + +\medskip + + +\textbf{ 6 } \quad ef-time-after-pentecost-16-monday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Eph 3:13-21\quad\small Ev. Luke 14:1-11\\ + +\medskip + + +\textbf{ 7 } \quad ef-time-after-pentecost-16-tuesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Eph 3:13-21\quad\small Ev. Luke 14:1-11\\ + +\medskip + + +\textbf{ 8 } \quad nativity-of-the-blessed-virgin-mary\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Prov 8:22-35\quad\small Ev. Matt 1:1-16\\ +\small Com. hadriani\\ + +\medskip + + +\textbf{ 9 } \quad ef-time-after-pentecost-16-thursday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Eph 3:13-21\quad\small Ev. Luke 14:1-11\\ +\small Com. gorgonius\\ + +\medskip + + +\textbf{ 10 } \quad nicholas-of-tolentino\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 1 Cor. 4:9-14\quad\small Ev. Luke 12:32-34\\ + +\medskip + + +\textbf{ 11 } \quad Officium sanctae Mariae in sabbato\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\ +\small Com. sts-protus-hyacinth\\ + +\medskip + + +\textbf{ 12 } \quad ef-time-after-pentecost-sunday-17\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. Eph 4:1-6\quad\small Ev. Matt 22:34-46\\ + +\medskip + + +\textbf{ 13 } \quad ef-time-after-pentecost-17-monday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Eph 4:1-6\quad\small Ev. Matt 22:34-46\\ + +\medskip + + +\textbf{ 14 } \quad exaltation-of-the-holy-cross\\ +\small class-2 \textperiodcentered\ red\\ +\small Ep. Phil 2:5-11\quad\small Ev. John 12:31-36\\ + +\medskip + + +\textbf{ 15 } \quad seven-sorrows-of-the-blessed-virgin-mary\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Judith 13:22; 13:23-25\quad\small Ev. John 19:25-27\\ +\small Com. nicomedes\\ + +\medskip + + +\textbf{ 16 } \quad sts-cornelius-cyprian\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Wis 3:1-8\quad\small Ev. Luke 21:9-19\\ +\small Com. sts-euphemia-lucy-and-geminianus\\ + +\medskip + + +\textbf{ 17 } \quad ef-time-after-pentecost-17-friday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Eph 4:1-6\quad\small Ev. Matt 22:34-46\\ +\small Com. stigmata-of-st-francis\\ + +\medskip + + +\textbf{ 18 } \quad joseph-of-cupertino\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 1 Cor 13:1-8\quad\small Ev. Matt 22:1-14\\ + +\medskip + + +\textbf{ 19 } \quad ef-time-after-pentecost-sunday-18\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. 1 Cor. 1:4-8\quad\small Ev. Matt 9:1-8\\ + +\medskip + + +\textbf{ 20 } \quad ef-time-after-pentecost-18-monday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. 1 Cor. 1:4-8\quad\small Ev. Matt 9:1-8\\ +\small Com. sts-eustace-companions\\ + +\medskip + + +\textbf{ 21 } \quad matthew\\ +\small class-2 \textperiodcentered\ red\\ +\small Ep. Ezek 1:10-14\quad\small Ev. Matt 9:9-13\\ + +\medskip + + +\textbf{ 22 } \quad ef-september-ember-wed\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. 2 Esd. 8:1-10\quad\small Ev. Mark 9:16-28\\ +\small Com. thomas-of-villanova\\ + +\medskip + + +\textbf{ 23 } \quad linus\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\ +\small Com. thecla\\ + +\medskip + + +\textbf{ 24 } \quad ef-september-ember-fri\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. Osee 14:2-10\quad\small Ev. Luke 7:36-50\\ +\small Com. our-lady-of-ransom\\ + +\medskip + + +\textbf{ 25 } \quad ef-september-ember-sat\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. Heb 9:2-12\quad\small Ev. Luke 13:6-17\\ + +\medskip + + +\textbf{ 26 } \quad ef-time-after-pentecost-sunday-19\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. Eph 4:23-28\quad\small Ev. Matt 22:1-14\\ + +\medskip + + +\textbf{ 27 } \quad sts-cosmas-damian\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Wis 5:16-20\quad\small Ev. Luke 6:17-23\\ + +\medskip + + +\textbf{ 28 } \quad wenceslaus\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Wis 10:10-14\quad\small Ev. Matt 10:34-42\\ + +\medskip + + +\textbf{ 29 } \quad dedication-of-st-michael-the-archangel\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Rev 1:1-5\quad\small Ev. Matt 18:1-10\\ + +\medskip + + +\textbf{ 30 } \quad jerome\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ + +\medskip + + + +\section*{ October } + +\textbf{ 1 } \quad ef-time-after-pentecost-19-friday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Eph 4:23-28\quad\small Ev. Matt 22:1-14\\ +\small Com. remigius\\ + +\medskip + + +\textbf{ 2 } \quad holy-guardian-angels\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Exod 23:20-23\quad\small Ev. Matt 18:1-10\\ + +\medskip + + +\textbf{ 3 } \quad ef-time-after-pentecost-sunday-20\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. Eph 5:15-21\quad\small Ev. John 4:46-53\\ + +\medskip + + +\textbf{ 4 } \quad francis-of-assisi\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Gal 6:14-18\quad\small Ev. Matt 11:25-30\\ + +\medskip + + +\textbf{ 5 } \quad ef-time-after-pentecost-20-tuesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Eph 5:15-21\quad\small Ev. John 4:46-53\\ +\small Com. placid-companions\\ + +\medskip + + +\textbf{ 6 } \quad bruno\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ + +\medskip + + +\textbf{ 7 } \quad our-lady-of-the-rosary\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Prov 8:22-24, 32-35.\quad\small Ev. Luke 1:26-38\\ +\small Com. mark-i\\ + +\medskip + + +\textbf{ 8 } \quad bridget-of-sweden\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 1 Tim. 5:3-10.\quad\small Ev. Matt 13:44-52.\\ +\small Com. sergio-baccho-marcello-and-apulejo-martyrs\\ + +\medskip + + +\textbf{ 9 } \quad john-leonardi\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Cor 4:1-6; 4:15-18\quad\small Ev. Luke 10:1-9\\ +\small Com. dionysius-and-companions\\ + +\medskip + + +\textbf{ 10 } \quad ef-time-after-pentecost-sunday-21\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. Eph 6:10-17\quad\small Ev. Matt 18:23-35\\ + +\medskip + + +\textbf{ 11 } \quad maternity-of-the-blessed-virgin-mary\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Sir 24:23-31\quad\small Ev. Luke 2:43-51\\ + +\medskip + + +\textbf{ 12 } \quad ef-time-after-pentecost-21-tuesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Eph 6:10-17\quad\small Ev. Matt 18:23-35\\ + +\medskip + + +\textbf{ 13 } \quad edward\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ + +\medskip + + +\textbf{ 14 } \quad callistus-i\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\ + +\medskip + + +\textbf{ 15 } \quad teresa-of-avila\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\ + +\medskip + + +\textbf{ 16 } \quad hedwig\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\ + +\medskip + + +\textbf{ 17 } \quad ef-time-after-pentecost-sunday-22\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. Phil 1:6-11\quad\small Ev. Matt 22:15-21\\ + +\medskip + + +\textbf{ 18 } \quad luke-the-evangelist\\ +\small class-2 \textperiodcentered\ red\\ +\small Ep. 2 Cor. 8:16-24\quad\small Ev. Luke 10:1-9\\ + +\medskip + + +\textbf{ 19 } \quad peter-of-alcantara\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Phil 3:7-12\quad\small Ev. Luke 12:32-34\\ + +\medskip + + +\textbf{ 20 } \quad john-cantius\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. James 2:12-17\quad\small Ev. Luke 12:35-40\\ + +\medskip + + +\textbf{ 21 } \quad ef-time-after-pentecost-22-thursday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Phil 1:6-11\quad\small Ev. Matt 22:15-21\\ +\small Com. hilarion\\ +\small Com. ursula-and-companions\\ + +\medskip + + +\textbf{ 22 } \quad ef-time-after-pentecost-22-friday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Phil 1:6-11\quad\small Ev. Matt 22:15-21\\ + +\medskip + + +\textbf{ 23 } \quad anthony-mary-claret\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Heb 7:23-27\quad\small Ev. Matt 24:42-47\\ + +\medskip + + +\textbf{ 24 } \quad ef-time-after-pentecost-sunday-23\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 9:18-26\\ + +\medskip + + +\textbf{ 25 } \quad ef-time-after-pentecost-23-monday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 9:18-26\\ +\small Com. sts-chrysanthus-daria\\ + +\medskip + + +\textbf{ 26 } \quad ef-time-after-pentecost-23-tuesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 9:18-26\\ +\small Com. evaristus\\ + +\medskip + + +\textbf{ 27 } \quad ef-time-after-pentecost-23-wednesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 9:18-26\\ + +\medskip + + +\textbf{ 28 } \quad sts-simon-jude\\ +\small class-2 \textperiodcentered\ red\\ +\small Ep. Eph. 4:7-13.\quad\small Ev. John 15:17-25\\ + +\medskip + + +\textbf{ 29 } \quad ef-time-after-pentecost-23-friday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 9:18-26\\ + +\medskip + + +\textbf{ 30 } \quad Officium sanctae Mariae in sabbato\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\ + +\medskip + + +\textbf{ 31 } \quad ef-christ-the-king\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Col 1:12-20.\quad\small Ev. John 18:33-37\\ + +\medskip + + + +\section*{ November } + +\textbf{ 1 } \quad all-saints\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Apoc 7:2-12\quad\small Ev. Matt 5:1-12\\ + +\medskip + + +\textbf{ 2 } \quad commemoration-of-all-souls\\ +\small class-1 \textperiodcentered\ black\\ +\small Ep. 1 Cor. 15:51-57\quad\small Ev. John 5:25-29\\ + +\medskip + + +\textbf{ 3 } \quad ef-time-after-pentecost-24-wednesday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Col 1:12-20.\quad\small Ev. John 18:33-37\\ + +\medskip + + +\textbf{ 4 } \quad charles-borromeo\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Matt 25:14-23\\ +\small Com. sts-vitalis-and-agricola-martyrs\\ + +\medskip + + +\textbf{ 5 } \quad ef-time-after-pentecost-24-friday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Col 1:12-20.\quad\small Ev. John 18:33-37\\ + +\medskip + + +\textbf{ 6 } \quad Officium sanctae Mariae in sabbato\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\ + +\medskip + + +\textbf{ 7 } \quad ef-time-after-epiphany-sunday-5\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. Col 3:12-17\quad\small Ev. Matt 13:24-30\\ + +\medskip + + +\textbf{ 8 } \quad ef-time-after-pentecost-25-monday\\ +\small class-4 \textperiodcentered\ green\\ +\small Ep. Col 3:12-17\quad\small Ev. Matt 13:24-30\\ +\small Com. four-holy-crowned-martyrs\\ + +\medskip + + +\textbf{ 9 } \quad dedication-of-the-archbasilica-of-our-holy-savior\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Rev 21:2-5\quad\small Ev. Luke 19:1-10\\ +\small Com. theodore\\ + +\medskip + + +\textbf{ 10 } \quad andrew-avellino\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 31:8-11\quad\small Ev. Luke 12:35-40\\ +\small Com. sts-tryphonis-respicii-et-nymphae\\ + +\medskip + + +\textbf{ 11 } \quad martin-of-tours\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Luke 11:33-36\\ +\small Com. menna\\ + +\medskip + + +\textbf{ 12 } \quad martin-i\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\ + +\medskip + + +\textbf{ 13 } \quad didacus\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 1 Cor 4:9-14\quad\small Ev. Luke 12:32-34\\ + +\medskip + + +\textbf{ 14 } \quad ef-time-after-epiphany-sunday-6\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. 1 Thess 1:2-10\quad\small Ev. Matt 13:31-35\\ + +\medskip + + +\textbf{ 15 } \quad albert-the-great\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ + +\medskip + + +\textbf{ 16 } \quad gertrude-the-great\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 25:1-13.\\ + +\medskip + + +\textbf{ 17 } \quad gregory-the-wonderworker\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Sir 44:16-27; 45:3-20\quad\small Ev. Mark 11:22-24\\ + +\medskip + + +\textbf{ 18 } \quad dedication-of-the-basilicas-of-sts-peter-paul\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Rev 21:2-5\quad\small Ev. Luke 19:1-10\\ + +\medskip + + +\textbf{ 19 } \quad elizabeth-of-hungary\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Prov 31:10-31\quad\small Ev. Matt 13:44-52.\\ +\small Com. pontian\\ + +\medskip + + +\textbf{ 20 } \quad felix-of-valois\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 1 Cor. 4:9-14\quad\small Ev. Luke 12:32-34\\ + +\medskip + + +\textbf{ 21 } \quad ef-time-after-pentecost-sunday-24\\ +\small class-2 \textperiodcentered\ green\\ +\small Ep. Col 1:9-14\quad\small Ev. Matt 24:15-35\\ + +\medskip + + +\textbf{ 22 } \quad cecilia\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Sir 51:13-17.\quad\small Ev. Matt 25:1-13.\\ + +\medskip + + +\textbf{ 23 } \quad clement-i\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Phil 3:17-21; 4:1-3\quad\small Ev. Matt 16:13-19\\ +\small Com. felicity\\ + +\medskip + + +\textbf{ 24 } \quad john-of-the-cross\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ +\small Com. chrysogonus\\ + +\medskip + + +\textbf{ 25 } \quad catherine-of-alexandria\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Sir 51:1-8; 51:12\quad\small Ev. Matt 25:1-13.\\ + +\medskip + + +\textbf{ 26 } \quad sylvester\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Ecclus 45:1-6\quad\small Ev. Matt 19:27-29.\\ +\small Com. peter-of-alexandria\\ + +\medskip + + +\textbf{ 27 } \quad Officium sanctae Mariae in sabbato\\ +\small class-4 \textperiodcentered\ white\\ +\small Ep. Ecclus 24:14-16\quad\small Ev. Luke 11:27-28\\ + +\medskip + + +\textbf{ 28 } \quad ef-advent-sunday-1\\ +\small class-1 \textperiodcentered\ violet\\ +\small Ep. Rom 13:11-14\quad\small Ev. Luke 21:25-33\\ + +\medskip + + +\textbf{ 29 } \quad ef-advent-1-monday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Rom 13:11-14\quad\small Ev. Luke 21:25-33\\ +\small Com. saturninus\\ + +\medskip + + +\textbf{ 30 } \quad andrew\\ +\small class-2 \textperiodcentered\ red\\ +\small Ep. Rom 10:10-18\quad\small Ev. Matt 4:18-22\\ +\small Com. ef-advent-1-tuesday\\ + +\medskip + + + +\section*{ December } + +\textbf{ 1 } \quad ef-advent-1-wednesday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Rom 13:11-14\quad\small Ev. Luke 21:25-33\\ + +\medskip + + +\textbf{ 2 } \quad vivian\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. Sir 51:13-17.\quad\small Ev. Matt 13:44-52.\\ +\small Com. ef-advent-1-thursday\\ + +\medskip + + +\textbf{ 3 } \quad francis-xavier\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Rom 10:10-18\quad\small Ev. Mark 16:15-18\\ +\small Com. ef-advent-1-friday\\ + +\medskip + + +\textbf{ 4 } \quad peter-chrysologus\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ +\small Com. ef-advent-1-saturday\\ +\small Com. barbara\\ + +\medskip + + +\textbf{ 5 } \quad ef-advent-sunday-2\\ +\small class-1 \textperiodcentered\ violet\\ +\small Ep. Rom 15:4-13\quad\small Ev. Matt 11:2-10\\ + +\medskip + + +\textbf{ 6 } \quad nicholas\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. Heb 13:7-17\quad\small Ev. Matt 25:14-23\\ +\small Com. ef-advent-2-monday\\ + +\medskip + + +\textbf{ 7 } \quad ambrose\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 2 Tim 4:1-8\quad\small Ev. Matt 5:13-19\\ +\small Com. ef-advent-2-tuesday\\ + +\medskip + + +\textbf{ 8 } \quad immaculate-conception-of-the-blessed-virgin-mary\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Prov 8:22-35\quad\small Ev. Luke 1:26-28\\ +\small Com. ef-advent-2-wednesday\\ + +\medskip + + +\textbf{ 9 } \quad ef-advent-2-thursday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Rom 15:4-13\quad\small Ev. Matt 11:2-10\\ + +\medskip + + +\textbf{ 10 } \quad ef-advent-2-friday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Rom 15:4-13\quad\small Ev. Matt 11:2-10\\ +\small Com. melchiades\\ + +\medskip + + +\textbf{ 11 } \quad damasus-i\\ +\small class-3 \textperiodcentered\ white\\ +\small Ep. 1 Pet 5:1-4; 5:10-11.\quad\small Ev. Matt 16:13-19\\ +\small Com. ef-advent-2-saturday\\ + +\medskip + + +\textbf{ 12 } \quad ef-advent-sunday-3\\ +\small class-1 \textperiodcentered\ rose\\ +\small Ep. Phil 4:4-7\quad\small Ev. John 1:19-28\\ + +\medskip + + +\textbf{ 13 } \quad lucy\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. 2 Cor 10:17-18; 11:1-2\quad\small Ev. Matt 13:44-52.\\ +\small Com. ef-advent-3-monday\\ + +\medskip + + +\textbf{ 14 } \quad ef-advent-3-tuesday\\ +\small class-3 \textperiodcentered\ violet\\ +\small Ep. Phil 4:4-7\quad\small Ev. John 1:19-28\\ + +\medskip + + +\textbf{ 15 } \quad ef-advent-ember-wed\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. Isa 7:10-15\quad\small Ev. Luke 1:26-38\\ + +\medskip + + +\textbf{ 16 } \quad eusebius\\ +\small class-3 \textperiodcentered\ red\\ +\small Ep. 2 Cor. 1:3-7\quad\small Ev. Matt 16:24-27.\\ +\small Com. ef-advent-3-thursday\\ + +\medskip + + +\textbf{ 17 } \quad ef-advent-ember-fri\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. Isa 11:1-5\quad\small Ev. Luke 1:39-47\\ + +\medskip + + +\textbf{ 18 } \quad ef-advent-ember-sat\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. 2 Thess 2:1-8\quad\small Ev. Luke 3:1-6\\ + +\medskip + + +\textbf{ 19 } \quad ef-advent-sunday-4\\ +\small class-1 \textperiodcentered\ violet\\ +\small Ep. 1 Cor. 4:1-5\quad\small Ev. Luke 3:1-6\\ + +\medskip + + +\textbf{ 20 } \quad ef-advent-4-monday\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. 1 Cor. 4:1-5\quad\small Ev. Luke 3:1-6\\ + +\medskip + + +\textbf{ 21 } \quad thomas\\ +\small class-2 \textperiodcentered\ red\\ +\small Ep. Eph 2:19-22\quad\small Ev. John 20:24-29\\ +\small Com. ef-advent-4-tuesday\\ + +\medskip + + +\textbf{ 22 } \quad ef-advent-4-wednesday\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. 1 Cor. 4:1-5\quad\small Ev. Luke 3:1-6\\ + +\medskip + + +\textbf{ 23 } \quad ef-advent-4-thursday\\ +\small class-2 \textperiodcentered\ violet\\ +\small Ep. 1 Cor. 4:1-5\quad\small Ev. Luke 3:1-6\\ + +\medskip + + +\textbf{ 24 } \quad ef-nativity-vigil\\ +\small class-1 \textperiodcentered\ violet\\ +\small Ep. Rom 1:1-6\quad\small Ev. Matt 1:18-21\\ + +\medskip + + +\textbf{ 25 } \quad ef-nativity\\ +\small class-1 \textperiodcentered\ white\\ +\small Ep. Heb 1:1-12\quad\small Ev. John 1:1-14\\ + +\medskip + + +\textbf{ 26 } \quad ef-christmas-sunday-0\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Gal 4:1-7\quad\small Ev. Luke 2:33-40\\ +\small Com. stephen\\ + +\medskip + + +\textbf{ 27 } \quad john-the-evangelist\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Ecclus 15:1-6\quad\small Ev. John 21:19-24\\ +\small Com. ef-nativity-octave-day-3\\ + +\medskip + + +\textbf{ 28 } \quad holy-innocents\\ +\small class-2 \textperiodcentered\ red\\ +\small Ep. Apoc 14:1-5\quad\small Ev. Matt 2:13-18\\ +\small Com. ef-nativity-octave-day-4\\ + +\medskip + + +\textbf{ 29 } \quad ef-nativity-octave-day-5\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Titus 3:4-7\quad\small Ev. Luke 2:15-20\\ +\small Com. thomas-becket\\ + +\medskip + + +\textbf{ 30 } \quad ef-nativity-octave-day-6\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Titus 3:4-7\quad\small Ev. Luke 2:15-20\\ + +\medskip + + +\textbf{ 31 } \quad ef-nativity-octave-day-7\\ +\small class-2 \textperiodcentered\ white\\ +\small Ep. Titus 3:4-7\quad\small Ev. Luke 2:15-20\\ +\small Com. silvester\\ + +\medskip + + + +\end{document} diff --git a/test/golden/ordo-2027.txt b/test/golden/ordo-2027.txt new file mode 100644 index 0000000..daf66e3 --- /dev/null +++ b/test/golden/ordo-2027.txt @@ -0,0 +1,1986 @@ + +Ianuarius 2027 + +1 ef-circumcision + class-1 · white + Ep. Titus 2:11-15 + Ev. Luke 2:21 + +2 ef-christmas-1-saturday + class-4 · white + Ep. Titus 3:4-7 + Ev. Luke 2:15-20 + +3 ef-holy-name-sunday + class-2 · white + Ep. Acts 4:8-12 + Ev. Luke 2:21 + +4 ef-christmas-1-monday + class-4 · white + Ep. Titus 2:11-15 + Ev. Luke 2:21 + +5 ef-christmas-1-tuesday + class-4 · white + Ep. Titus 2:11-15 + Ev. Luke 2:21 + Com. telesphorus-pope-and-martyr + +6 ef-epiphany + class-1 · white + Ep. Isa 60:1-6 + Ev. Matt 2:1-12 + +7 ef-christmas-2-thursday + class-4 · white + Ep. Isa 60:1-6 + Ev. Matt 2:1-12 + +8 ef-christmas-2-friday + class-4 · white + Ep. Isa 60:1-6 + Ev. Matt 2:1-12 + +9 ef-christmas-2-saturday + class-4 · white + Ep. Titus 3:4-7 + Ev. Luke 2:15-20 + +10 ef-time-after-epiphany-sunday-1 + class-2 · white + Ep. Col 3:12-17 + Ev. Luke 2:42-52 + +11 ef-time-after-epiphany-1-monday + class-4 · white + Ep. Rom 12:1-5 + Ev. Luke 2:42-52 + Com. hyginus-pope-and-martyr + +12 ef-time-after-epiphany-1-tuesday + class-4 · white + Ep. Rom 12:1-5 + Ev. Luke 2:42-52 + +13 commemoration-of-the-baptism-of-the-lord + class-2 · white + Ep. Isa 60:1-6 + Ev. John 1:29-34 + +14 hilary + class-3 · white + Ep. 2 Tim 4:1-8 + Ev. Matt 5:13-19 + Com. felicis + +15 paul-the-first-hermit + class-3 · white + Ep. Phil 3:7-12 + Ev. Matt 11:25-30 + Com. maur-abbot + +16 marcellus-i + class-3 · red + Ep. 1 Pet 5:1-4; 5:10-11. + Ev. Matt 16:13-19 + +17 ef-time-after-epiphany-sunday-2 + class-2 · green + Ep. Rom 12:6-16 + Ev. John 2:1-11 + +18 ef-time-after-epiphany-2-monday + class-4 · green + Ep. Rom 12:6-16 + Ev. John 2:1-11 + Com. prisca + +19 ef-time-after-epiphany-2-tuesday + class-4 · green + Ep. Rom 12:6-16 + Ev. John 2:1-11 + Com. canute-martyr + Com. sts-marius-martha-audifax-abachum + +20 sts-fabian-sebastian + class-3 · red + Ep. Heb 11:33-39 + Ev. Luke 6:17-23 + +21 agnes + class-3 · red + Ep. Sir 51:1-8; 51:12 + Ev. Matt 25:1-13. + +22 sts-vincent-anastasius + class-3 · red + Ep. Wis 3:1-8 + Ev. Luke 21:9-19 + +23 raymond-of-pe-afort + class-3 · white + Ep. Sir 31:8-11 + Ev. Luke 12:35-40 + Com. emerentiana + +24 ef-septuagesima-sunday-1 + class-2 · violet + Ep. 1 Cor. 9:24-27; 10:1-5 + Ev. Matt 20:1-16 + +25 conversion-of-st-paul + class-3 · white + Ep. Acts 9:1-22 + Ev. Matt 19:27-29. + Com. peter + +26 polycarp + class-3 · red + Ep. 1 John 3:10-16 + Ev. Matt 10:26-32. + +27 john-chrysostom + class-3 · white + Ep. 2 Tim 4:1-8 + Ev. Matt 5:13-19 + +28 peter-nolasco + class-3 · white + Ep. 1 Cor. 4:9-14 + Ev. Luke 12:32-34 + Com. agnes-secundo + +29 francis-de-sales + class-3 · white + Ep. 2 Tim 4:1-8 + Ev. Matt 5:13-19 + +30 martina + class-3 · red + Ep. Sir 51:1-8; 51:12 + Ev. Matt 25:1-13. + +31 ef-septuagesima-sunday-2 + class-2 · violet + Ep. 2 Cor. 11:19-33; 12:1-9 + Ev. Luke 8:4-15 + + +Februarius 2027 + +1 ignatius-of-antioch + class-3 · red + Ep. Rom 8:35-39 + Ev. John 12:24-26 + +2 purification-of-the-blessed-virgin-mary + class-2 · white + Ep. Mal 3:1-4 + Ev. Luke 2:22-32 + +3 ef-septuagesima-2-wednesday + class-4 · violet + Ep. 2 Cor. 11:19-33; 12:1-9 + Ev. Luke 8:4-15 + Com. blaise + +4 andrew-corsini + class-3 · white + Ep. Sir 44:16-27; 45:3-20 + Ev. Matt 25:14-23 + +5 agatha + class-3 · red + Ep. 1 Cor. 1:26-31 + Ev. Matt 19:3-12. + +6 titus + class-3 · white + Ep. Sir 44:16-27; 45:3-20 + Ev. Luke 10:1-9 + Com. dorothy + +7 ef-septuagesima-sunday-3 + class-2 · violet + Ep. 1 Cor. 13:1-13 + Ev. Luke 18:31-43 + +8 john-of-matha + class-3 · white + Ep. Sir 31:8-11 + Ev. Luke 12:35-40 + +9 cyril-of-alexandria + class-3 · white + Ep. 2 Tim 4:1-8 + Ev. Matt 5:13-19 + Com. appollonia + +10 ef-ash-wednesday + class-1 · violet + Ep. Joel 2:12-19 + Ev. Matt 6:16-21 + +11 ef-lent-after-ashes-thursday + class-3 · violet + Ep. Isa 38:1-6 + Ev. Matt 8:5-13 + Com. our-lady-of-lourdes + +12 ef-lent-after-ashes-friday + class-3 · violet + Ep. Isa 58:1-9 + Ev. Matt 5:43-48; 6:1-4 + Com. seven-holy-servite-founders + +13 ef-lent-after-ashes-saturday + class-3 · violet + Ep. Isa 58:9-14 + Ev. Mark 6:47-56 + +14 ef-lent-sunday-1 + class-1 · violet + Ep. 2 Cor. 6:1-10 + Ev. Matt 4:1-11 + +15 ef-lent-1-monday + class-3 · violet + Ep. Ezech 34:11-16 + Ev. Matt 25:31-46 + Com. sts-faustinus-jovita + +16 ef-lent-1-tuesday + class-3 · violet + Ep. Isa 55:6-11 + Ev. Matt 21:10-17 + +17 ef-lent-ember-wed + class-2 · violet + Ep. 3 Kgs. 19:3-8 + Ev. Matt 12:38-50 + +18 ef-lent-1-thursday + class-3 · violet + Ep. Ezech 18:1-9 + Ev. Matt 15:21-28 + Com. simeon + +19 ef-lent-ember-fri + class-2 · violet + Ep. Ezech 18:20-28 + Ev. John 5:1-15 + +20 ef-lent-ember-sat + class-2 · violet + Ep. 1 Thess. 5:14-23 + Ev. Matt 17:1-9 + +21 ef-lent-sunday-2 + class-1 · violet + Ep. 1 Thess. 4:1-7 + Ev. Matt 17:1-9 + +22 chair-of-st-peter + class-2 · white + Ep. 1 Pet 1:1-7 + Ev. Matt 16:13-19 + Com. ef-lent-2-monday + Com. paul + +23 ef-lent-2-tuesday + class-3 · violet + Ep. 3 Kings 17:8-16 + Ev. Matt 23:1-12 + Com. peter-damien + +24 matthias + class-2 · red + Ep. Acts 1:15-26 + Ev. Matt 11:25-30 + Com. ef-lent-2-wednesday + +25 ef-lent-2-thursday + class-3 · violet + Ep. Jer 17:5-10 + Ev. Luke 16:19-31 + +26 ef-lent-2-friday + class-3 · violet + Ep. Gen 37:6-22 + Ev. Matt 21:33-46 + +27 ef-lent-2-saturday + class-3 · violet + Ep. Gen 27:6-40 + Ev. Luke 15:11-32 + Com. gabriel-of-our-lady-of-sorrows + +28 ef-lent-sunday-3 + class-1 · violet + Ep. Eph 5:1-9 + Ev. Luke 11:14-28 + + +Martius 2027 + +1 ef-lent-3-monday + class-3 · violet + Ep. 4 Kings 5:1-15 + Ev. Luke 4:23-30 + +2 ef-lent-3-tuesday + class-3 · violet + Ep. 4 Kings 4:1-7 + Ev. Matt 18:15-22 + +3 ef-lent-3-wednesday + class-3 · violet + Ep. Ex 20:12-24 + Ev. Matt 15:1-20 + +4 ef-lent-3-thursday + class-3 · violet + Ep. Jer 7:1-7 + Ev. Luke 4:38-44. + Com. casimir + Com. lucius + +5 ef-lent-3-friday + class-3 · violet + Ep. Num 20:1, 3; 6-13. + Ev. John 4:5-42 + +6 ef-lent-3-saturday + class-3 · violet + Ep. Dan 13:1-9, 15-17, 19-30, 33-62. + Ev. John 8:1-11 + Com. sts-felicitas-perpetua + +7 ef-lent-sunday-4 + class-1 · rose + Ep. Gal 4:22-31 + Ev. John 6:1-15 + +8 ef-lent-4-monday + class-3 · violet + Ep. 3 Kings 3:16-28 + Ev. John 2:13-25 + Com. john-of-god + +9 ef-lent-4-tuesday + class-3 · violet + Ep. Ex 32:7-14 + Ev. John 7:14-31 + Com. frances-rome + +10 ef-lent-4-wednesday + class-3 · violet + Ep. Isa. 1:16-19 + Ev. John 9:1-38 + Com. forty-holy-martyrs-of-sebaste + +11 ef-lent-4-thursday + class-3 · violet + Ep. 4 Kings 4:25-38 + Ev. Luke 7:11-16 + +12 ef-lent-4-friday + class-3 · violet + Ep. 3 Kings 17:17-24 + Ev. John 11:1-45 + Com. gregory-the-great + +13 ef-lent-4-saturday + class-3 · violet + Ep. Isa 49:8-15 + Ev. John 8:12-20 + +14 ef-passion-sunday + class-1 · violet + Ep. Heb 9:11-15. + Ev. John 8:46-59. + +15 ef-passiontide-1-monday + class-3 · violet + Ep. Jonas 3:1-10 + Ev. John 7:32-39 + +16 ef-passiontide-1-tuesday + class-3 · violet + Ep. Dan 14:27, 28-42 + Ev. John 7:1-13 + +17 ef-passiontide-1-wednesday + class-3 · violet + Ep. Lev 19:1-2, 11-19, 25 + Ev. John 10:22-38 + Com. patrick + +18 ef-passiontide-1-thursday + class-3 · violet + Ep. Dan 3:25, 34-45. + Ev. Luke 7:36-50 + Com. cyril-of-jerusalem + +19 joseph-spouse-of-the-bl-virgin-mary + class-1 · white + Ep. Ecclus 45:1-6 + Ev. Matt 1:18-21 + Com. ef-passiontide-1-friday + +20 ef-passiontide-1-saturday + class-3 · violet + Ep. Jer 18:18-23 + Ev. John 12:10-36 + +21 ef-palm-sunday + class-1 · violet + Ep. Phil 2:5-11 + Ev. Matt. 26:36-75; 27:1-60. + +22 ef-passiontide-2-monday + class-1 · violet + Ep. Isa 50:5-10 + Ev. John 12:1-9 + +23 ef-passiontide-2-tuesday + class-1 · violet + Ep. Jer 11:18-20 + Ev. Mark 14:32-72; 15, 1-46 + +24 ef-passiontide-2-wednesday + class-1 · violet + Ep. Isa 53:1-12 + Ev. Luke 22:39-71; 23:1-53 + +25 ef-passiontide-2-thursday + class-1 · white + Ep. 1 Cor 11:20-32 + Ev. John 13:1-15 + +26 ef-passiontide-2-friday + class-1 · black + Ep. Ex 12:1-11 + Ev. John 18:1-40; 19:1-42 + +27 ef-passiontide-2-saturday + class-1 · violet + Ep. Col 3:1-4 + Ev. Matt 28:1-7 + +28 ef-easter-sunday + class-1 · white + Ep. 1 Cor 5:7-8 + Ev. Mark 16:1-7 + +29 ef-easter-1-monday + class-1 · white + Ep. Acts 10:37-43. + Ev. Luke 24:13-35 + +30 ef-easter-1-tuesday + class-1 · white + Ep. Acts 13:16; 13:26-33 + Ev. Luke 24:36-47 + +31 ef-easter-1-wednesday + class-1 · white + Ep. Acts 3:13-15; 3:17-19 + Ev. John 21:1-14 + + +Aprilis 2027 + +1 ef-easter-1-thursday + class-1 · white + Ep. Acts 8:26-40 + Ev. John 20:11-18 + +2 ef-easter-1-friday + class-1 · white + Ep. 1 Pet 3:18-22 + Ev. Matt 28:16-20 + +3 ef-easter-1-saturday + class-1 · white + Ep. 1 Pet 2:1-10 + Ev. John 20:1-9 + +4 ef-low-sunday + class-1 · white + Ep. 1 John 5:4-10 + Ev. John 20:19-31 + +5 annunciation-of-the-blessed-virgin-mary + class-1 · white + Ep. Isa 7:10-15 + Ev. Luke 1:26-38 + +6 ef-easter-2-tuesday + class-4 · white + Ep. 1 John 5:4-10 + Ev. John 20:19-31 + +7 ef-easter-2-wednesday + class-4 · white + Ep. 1 John 5:4-10 + Ev. John 20:19-31 + +8 ef-easter-2-thursday + class-4 · white + Ep. 1 John 5:4-10 + Ev. John 20:19-31 + +9 ef-easter-2-friday + class-4 · white + Ep. 1 John 5:4-10 + Ev. John 20:19-31 + +10 ef-easter-2-saturday + class-4 · white + Ep. Ecclus 24:14-16 + Ev. John 19:25-27 + +11 ef-easter-sunday-3 + class-2 · white + Ep. 1 Pet 2:21-25 + Ev. John 10:11-16 + +12 ef-easter-3-monday + class-4 · white + Ep. 1 Pet 2:21-25 + Ev. John 10:11-16 + +13 hermenegild + class-3 · red + Ep. Wis 10:10-14 + Ev. Luke 14:26-33. + +14 justin + class-3 · red + Ep. 1 Cor 1:18-25; 1:30; + Ev. Luke 12:2-8 + Com. sts-tiburtius-valerian-et-maximus-martyrs + +15 ef-easter-3-thursday + class-4 · white + Ep. 1 Pet 2:21-25 + Ev. John 10:11-16 + +16 ef-easter-3-friday + class-4 · white + Ep. 1 Pet 2:21-25 + Ev. John 10:11-16 + +17 ef-easter-3-saturday + class-4 · white + Ep. Ecclus 24:14-16 + Ev. John 19:25-27 + Com. anicetus + +18 ef-easter-sunday-4 + class-2 · white + Ep. 1 Pet 2:11-19 + Ev. John 16:16-22 + +19 ef-easter-4-monday + class-4 · white + Ep. 1 Pet 2:11-19 + Ev. John 16:16-22 + +20 ef-easter-4-tuesday + class-4 · white + Ep. 1 Pet 2:11-19 + Ev. John 16:16-22 + +21 anselm + class-3 · white + Ep. 2 Tim 4:1-8 + Ev. Matt 5:13-19 + +22 sts-soter-caius + class-3 · red + Ep. 1 Pet 5:1-4; 5:10-11. + Ev. Matt 16:13-19 + +23 ef-easter-4-friday + class-4 · white + Ep. 1 Pet 2:11-19 + Ev. John 16:16-22 + Com. george + +24 fidelis-of-sigmaringen + class-3 · red + Ep. Wis 5:1-5 + Ev. John 15:1-7 + +25 ef-easter-sunday-5 + class-2 · white + Ep. Jas 1:17-21 + Ev. John 16:5-14 + Com. major-litanies + +26 sts-cletus-marcellinus + class-3 · red + Ep. 1 Pet 5:1-4; 5:10-11. + Ev. Matt 16:13-19 + +27 peter-canisius + class-3 · white + Ep. 2 Tim 4:1-8 + Ev. Matt 5:13-19 + +28 paul-of-the-cross + class-3 · white + Ep. 1 Cor 1:17-25. + Ev. Luke 10:1-9 + +29 peter-of-verona + class-3 · red + Ep. 2 Tim. 2:8-10; 3:10-12. + Ev. Matt 10:34-42 + +30 catherine-of-siena + class-3 · white + Ep. 2 Cor 10:17-18; 11:1-2 + Ev. Matt 25:1-13. + + +Maius 2027 + +1 joseph-the-workman + class-1 · white + Ep. Col. 3:14-15, 17, 23-24 + Ev. Matt 13:54-58 + +2 ef-easter-sunday-6 + class-2 · white + Ep. Jas 1:22-27 + Ev. John 16:23-30 + +3 ef-rogation-monday + class-4 · violet + Ep. Jas 1:22-27 + Ev. John 16:23-30 + Com. sts-alexander-companions + +4 monica + class-3 · white + Ep. 1 Tim. 5:3-10. + Ev. Luke 7:11-16 + +5 ef-ascension-vigil + class-2 · white + Ep. Eph. 4:7-13. + Ev. John 17:1-11. + Com. pius-v + +6 ef-ascension + class-1 · white + Ep. Acts 1:1-11 + Ev. Mark 16:14-20 + +7 stanislaus + class-3 · red + Ep. Wis 5:1-5 + Ev. John 15:1-7 + +8 ef-easter-6-saturday + class-4 · white + Ep. Ecclus 24:14-16 + Ev. John 19:25-27 + +9 ef-easter-sunday-7 + class-2 · white + Ep. 1 Pet 4:7-11. + Ev. John 15:26-27; 16:1-4. + +10 antoninus + class-3 · white + Ep. Sir 44:16-27; 45:3-20 + Ev. Matt 25:14-23 + Com. gordiano-and-epimacho + +11 sts-philip-james + class-2 · red + Ep. Wis. 5:1-5 + Ev. John 14:1-13 + +12 sts-nereus-achilleus-domitilla-pancras + class-3 · red + Ep. Wis. 5:1-5 + Ev. John 4:46-53 + +13 robert-bellarmine + class-3 · white + Ep. Wis 7:7-14. + Ev. Matt 5:13-19 + +14 ef-easter-7-friday + class-4 · white + Ep. 1 Pet 4:7-11. + Ev. John 15:26-27; 16:1-4. + Com. boniface-martyr + +15 ef-pentecost-vigil + class-1 · red + Ep. Acts 19:1-8. + Ev. John 14:15-21. + +16 ef-pentecost + class-1 · red + Ep. Acts 2:1-11. + Ev. John 14:23-31. + +17 ef-easter-8-monday + class-1 · red + Ep. Acts 10:34, 42-48 + Ev. John 3:16-21 + +18 ef-easter-8-tuesday + class-1 · red + Ep. Acts 8:14-17. + Ev. John 10:1-10. + +19 ef-pentecost-ember-wed + class-1 · red + Ep. Acts 5:12-16 + Ev. John 6:44-52. + +20 ef-easter-8-thursday + class-1 · red + Ep. Acts 8:5-8 + Ev. Luke 9:1-6 + +21 ef-pentecost-ember-fri + class-1 · red + Ep. Joel 2:23-24; 26-27 + Ev. Luke 5:17-26 + +22 ef-pentecost-ember-sat + class-1 · red + Ep. Rom 5:1-5. + Ev. Luke 4:38-44. + +23 ef-trinity + class-1 · white + Ep. Rom 11:33-36. + Ev. Matt 28:18-20 + +24 ef-time-after-pentecost-1-monday + class-4 · green + Ep. 1 John 4:8-21 + Ev. Luke 6:36-42 + +25 gregory-vii + class-3 · white + Ep. 1 Pet 5:1-4; 5:10-11. + Ev. Matt 16:13-19 + Com. urban-pope-and-martyr + +26 philip-neri + class-3 · white + Ep. Wis 7:7-14. + Ev. Luke 12:35-40 + Com. eleutherius + +27 ef-corpus-christi + class-1 · white + Ep. 1 Cor 11:23-29 + Ev. John 6:56-59 + +28 augustine-of-canterbury + class-3 · white + Ep. 1 Thess 2:2-9 + Ev. Luke 10:1-9 + +29 mary-magdalene-de-pazzi + class-3 · white + Ep. 2 Cor 10:17-18; 11:1-2 + Ev. Matt 25:1-13. + +30 ef-time-after-pentecost-sunday-2 + class-2 · green + Ep. 1 John 3:13-18. + Ev. Luke 14:16-24. + +31 queenship-of-the-blessed-virgin-mary + class-2 · white + Ep. Eccli 24:5; 14:7; 14:9-11; 24:30-31 + Ev. Luke 1:26-33 + Com. petronilla + + +Iunius 2027 + +1 angela-merici + class-3 · white + Ep. 2 Cor 10:17-18; 11:1-2 + Ev. Matt 25:1-13. + +2 ef-time-after-pentecost-2-wednesday + class-4 · green + Ep. 1 John 3:13-18. + Ev. Luke 14:16-24. + Com. sts-marcellinus-peter-erasmus + +3 ef-time-after-pentecost-2-thursday + class-4 · green + Ep. 1 John 3:13-18. + Ev. Luke 14:16-24. + +4 ef-sacred-heart + class-1 · white + Ep. Eph 3:8-12, 14-19 + Ev. John 19:31-37 + +5 boniface + class-3 · red + Ep. Ecclus 44:1-15 + Ev. Matt 5:1-12 + +6 ef-time-after-pentecost-sunday-3 + class-2 · green + Ep. 1 Pet. 5:6-11 + Ev. Luke 15:1-10 + +7 ef-time-after-pentecost-3-monday + class-4 · green + Ep. 1 Pet. 5:6-11 + Ev. Luke 15:1-10 + +8 ef-time-after-pentecost-3-tuesday + class-4 · green + Ep. 1 Pet. 5:6-11 + Ev. Luke 15:1-10 + +9 ef-time-after-pentecost-3-wednesday + class-4 · green + Ep. 1 Pet. 5:6-11 + Ev. Luke 15:1-10 + Com. sts-primus-felicianus + +10 margaret-of-scotland + class-3 · white + Ep. Prov 31:10-31 + Ev. Matt 13:44-52. + +11 barnabas + class-3 · red + Ep. Acts 11:21-26; 13:1-3 + Ev. Matt 10:16-22 + +12 john-of-san-fecundo + class-3 · white + Ep. Sir 31:8-11 + Ev. Luke 12:35-40 + Com. basilidus + +13 ef-time-after-pentecost-sunday-4 + class-2 · green + Ep. Rom 8:18-23 + Ev. Luke 5:1-11 + +14 basil-the-great + class-3 · white + Ep. 2 Tim 4:1-8 + Ev. Luke 14:26-35 + +15 ef-time-after-pentecost-4-tuesday + class-4 · green + Ep. Rom 8:18-23 + Ev. Luke 5:1-11 + Com. vitus + +16 ef-time-after-pentecost-4-wednesday + class-4 · green + Ep. Rom 8:18-23 + Ev. Luke 5:1-11 + +17 gregory-barbarigo + class-3 · white + Ep. Sir 44:16-27; 45:3-20 + Ev. Matt 25:14-23 + +18 ephrem-of-syria + class-3 · white + Ep. 2 Tim 4:1-8 + Ev. Matt 5:13-19 + Com. marcus-and-marcellianus + +19 julia-of-falconieri + class-3 · white + Ep. 2 Cor 10:17-18; 11:1-2 + Ev. Matt 25:1-13. + Com. sts-gervasius-and-protasius + +20 ef-time-after-pentecost-sunday-5 + class-2 · green + Ep. 1 Pet 3:8-15. + Ev. Matt 5:20-24. + +21 aloysius-gongzaga + class-3 · white + Ep. Sir 31:8-11 + Ev. Matt 22:29-40 + +22 paulinus-of-nola + class-3 · white + Ep. 2 Cor. 8:9-15 + Ev. Luke 12:32-34 + +23 vigil-of-the-nativity-of-st-john-the-baptist + class-2 · violet + Ep. Jer 1:4-10 + Ev. Luke 1:5-17 + +24 nativity-of-st-john-the-baptist + class-1 · white + Ep. Isa 49:1-3, 5-7. + Ev. Luke 1:57-68 + +25 william + class-3 · white + Ep. Ecclus 45:1-6 + Ev. Matt 19:27-29. + +26 sts-john-paul + class-3 · red + Ep. Eccli 44:10-15 + Ev. Luke 12:1-8 + +27 ef-time-after-pentecost-sunday-6 + class-2 · green + Ep. Rom 6:3-11. + Ev. Mark 8:1-9 + +28 vigil-of-sts-peter-paul + class-2 · violet + Ep. Acts 3:1-10 + Ev. John 21:15-19 + +29 sts-peter-paul + class-1 · red + Ep. Acts 12:1-11 + Ev. Matt 16:13-19 + +30 in-commemoratione-sancti-pauli-apostoli + class-3 · red + Ep. Gal 1:11-20 + Ev. Matt 10:16-22 + Com. commemoration-of-st-peter + + +Iulius 2027 + +1 precious-blood-of-our-lord-jesus-christ + class-1 · red + Ep. Heb 9:11-15. + Ev. John 19:30-35 + +2 visitation-of-the-blessed-virgin-mary + class-2 · white + Ep. Song 2:8-14 + Ev. Luke 1:39-47 + Com. processus-and-martinian + +3 irenaeus + class-3 · red + Ep. 2 Tim. 3:14-17; 4:1-5 + Ev. Matt 10:28-33 + +4 ef-time-after-pentecost-sunday-7 + class-2 · green + Ep. Rom 6:19-23 + Ev. Matt 7:15-21 + +5 anthony-mary-zaccariah + class-3 · white + Ep. 1 Tim. 4:8-16 + Ev. Mark 10:15-21 + +6 ef-time-after-pentecost-7-tuesday + class-4 · green + Ep. Rom 6:19-23 + Ev. Matt 7:15-21 + +7 sts-cyril-methodius + class-3 · white + Ep. Heb 7:23-27 + Ev. Luke 10:1-9 + +8 elizabeth-of-portugal + class-3 · white + Ep. Prov 31:10-31 + Ev. Matt 13:44-52. + +9 ef-time-after-pentecost-7-friday + class-4 · green + Ep. Rom 6:19-23 + Ev. Matt 7:15-21 + +10 seven-holy-brothers-and-sts-rufina-secunda + class-3 · red + Ep. Prov 31:10-31 + Ev. Matt 12:46-50 + +11 ef-time-after-pentecost-sunday-8 + class-2 · green + Ep. Rom 8:12-17 + Ev. Luke 16:1-9 + +12 john-gualbert + class-3 · white + Ep. Ecclus 45:1-6 + Ev. Matt 5:43-48 + Com. naboris-et-felicis + +13 ef-time-after-pentecost-8-tuesday + class-4 · green + Ep. Rom 8:12-17 + Ev. Luke 16:1-9 + +14 bonaventure + class-3 · white + Ep. 2 Tim 4:1-8 + Ev. Matt 5:13-19 + +15 henry-the-emperor + class-3 · white + Ep. Sir 31:8-11 + Ev. Luke 12:35-40 + +16 ef-time-after-pentecost-8-friday + class-4 · green + Ep. Rom 8:12-17 + Ev. Luke 16:1-9 + Com. our-lady-of-mt-carmel + +17 ef-time-after-pentecost-8-saturday + class-4 · white + Ep. Ecclus 24:14-16 + Ev. Luke 11:27-28 + Com. alexis + +18 ef-time-after-pentecost-sunday-9 + class-2 · green + Ep. 1 Cor. 10:6-13 + Ev. Luke 19:41-47 + +19 vincent-de-paul + class-3 · white + Ep. 1 Cor. 4:9-14 + Ev. Luke 10:1-9 + +20 jerome-emiliani + class-3 · white + Ep. Isa 58:7-11 + Ev. Matt 19:13-21 + Com. margaret + +21 laurence-of-brindisi + class-3 · white + Ep. 2 Tim 4:1-8 + Ev. Matt 5:13-19 + Com. praxedis-virginis + +22 mary-magdalene + class-3 · white + Ep. Song 3:2-5; 8:6-7 + Ev. Luke 7:36-50 + +23 apollinaris + class-3 · red + Ep. 1 Pet. 5:1-11 + Ev. Luke 22:24-30 + Com. liborii + +24 ef-time-after-pentecost-9-saturday + class-4 · white + Ep. Ecclus 24:14-16 + Ev. Luke 11:27-28 + Com. christina + +25 ef-time-after-pentecost-sunday-10 + class-2 · green + Ep. 1 Cor. 12:2-11 + Ev. Luke 18:9-14 + Com. james-the-greater + +26 anne-mother-of-the-blessed-virgin + class-2 · white + Ep. Prov 31:10-31 + Ev. Matt 13:44-52. + +27 ef-time-after-pentecost-10-tuesday + class-4 · green + Ep. 1 Cor. 12:2-11 + Ev. Luke 18:9-14 + Com. pantaleon + +28 sts-nazarius-celsus-st-victor-i-st-innocent-i + class-3 · red + Ep. Wis 10:17-20 + Ev. Luke 21:9-19 + +29 martha + class-3 · white + Ep. 2 Cor 10:17-18; 11:1-2 + Ev. Luke 10:38-42 + Com. felicis-simplicii-faustini-et-beatricis + +30 ef-time-after-pentecost-10-friday + class-4 · green + Ep. 1 Cor. 12:2-11 + Ev. Luke 18:9-14 + Com. sts-abdon-sennen + +31 ignatius-loyola + class-3 · white + Ep. 2 Tim. 2:8-10; 3:10-12. + Ev. Luke 10:1-9 + + +Augustus 2027 + +1 ef-time-after-pentecost-sunday-11 + class-2 · green + Ep. 1 Cor. 15:1-10 + Ev. Mark 7:31-37 + +2 alphonsus-liguori + class-3 · white + Ep. 2 Tim. 2:1-7 + Ev. Luke 10:1-9 + Com. stephen-i-pope-and-martyr + +3 ef-time-after-pentecost-11-tuesday + class-4 · green + Ep. 1 Cor. 15:1-10 + Ev. Mark 7:31-37 + +4 dominic + class-3 · white + Ep. 2 Tim. 4:1-8 + Ev. Luke 12:35-40 + +5 dedication-of-the-basilica-of-st-mary-major + class-3 · white + Ep. Ecclus 24:14-16 + Ev. Luke 11:27-28 + +6 transfiguration-of-our-lord + class-2 · white + Ep. 2 Pet. 1:16-19 + Ev. Matt 17:1-9 + Com. pope-sixtus-ii-felicissimus-and-agapitus-martyrs + +7 cajetan + class-3 · white + Ep. Sir 31:8-11 + Ev. Matt 6:24-33 + Com. donatus + +8 ef-time-after-pentecost-sunday-12 + class-2 · green + Ep. 2 Cor. 3:4-9 + Ev. Luke 10:23-37 + +9 vigil-of-st-lawrence + class-3 · violet + Ep. Ecclus 51:1-8, 12 + Ev. Matt 16:24-27 + Com. romanus + +10 lawrence + class-2 · red + Ep. 2 Cor. 9:6-10 + Ev. John 12:24-26 + +11 ef-time-after-pentecost-12-wednesday + class-4 · green + Ep. 2 Cor. 3:4-9 + Ev. Luke 10:23-37 + Com. sts-tiburtius-susanna + +12 clare + class-3 · white + Ep. 2 Cor 10:17-18; 11:1-2 + Ev. Matt 25:1-13. + +13 ef-time-after-pentecost-12-friday + class-4 · green + Ep. 2 Cor. 3:4-9 + Ev. Luke 10:23-37 + Com. sts-hippolytus-cassian + +14 vigil-of-the-assumption + class-2 · violet + Ep. Sir 24:23-31 + Ev. Luke 11:27-28 + Com. eusebius-confessor + +15 assumption-of-the-blessed-virgin-mary + class-1 · white + Ep. Judith 13:22-25; 15:10 + Ev. Luke 1:41-50 + Com. ef-time-after-pentecost-sunday-13 + +16 joachim-father-of-the-blessed-virgin + class-2 · white + Ep. Sir 31:8-11 + Ev. Matt 1:1-16 + +17 hyacinth + class-3 · white + Ep. Sir 31:8-11 + Ev. Luke 12:35-40 + +18 ef-time-after-pentecost-13-wednesday + class-4 · green + Ep. Gal 3:16-22 + Ev. Luke 17:11-19 + Com. agapitus + +19 john-eudes + class-3 · white + Ep. Sir 31:8-11 + Ev. Luke 12:35-40 + +20 bernard-of-clairvaux + class-3 · white + Ep. Ecclus 39:6-14 + Ev. Matt 5:13-19 + +21 jane-frances-de-chantal + class-3 · white + Ep. Prov 31:10-31 + Ev. Matt 13:44-52. + +22 ef-time-after-pentecost-sunday-14 + class-2 · green + Ep. Gal 5:16-24 + Ev. Matt 6:24-33 + Com. immaculate-heart-of-mary + +23 philip-benizi + class-3 · white + Ep. 1 Cor. 4:9-14 + Ev. Luke 12:32-34 + +24 bartholomew + class-2 · red + Ep. 1 Cor. 12:27-31 + Ev. Luke 6:12-19 + +25 louis-ix + class-3 · white + Ep. Wis 10:10-14 + Ev. Luke 19:12-26 + +26 ef-time-after-pentecost-14-thursday + class-4 · green + Ep. Gal 5:16-24 + Ev. Matt 6:24-33 + Com. zephyrinus + +27 joseph-calasance + class-3 · white + Ep. Wis 10:10-14 + Ev. Matt 18:1-5 + +28 augustine + class-3 · white + Ep. 2 Tim 4:1-8 + Ev. Matt 5:13-19 + Com. hermes + +29 ef-time-after-pentecost-sunday-15 + class-2 · green + Ep. Gal 5:25-26; 6:1-10 + Ev. Luke 7:11-16 + +30 rose-of-lima + class-3 · white + Ep. 2 Cor 10:17-18; 11:1-2 + Ev. Matt 25:1-13. + Com. sts-felix-and-adauctus + +31 raymond-nonnatus + class-3 · white + Ep. Sir 31:8-11 + Ev. Luke 12:35-40 + + +September 2027 + +1 ef-time-after-pentecost-15-wednesday + class-4 · green + Ep. Gal 5:25-26; 6:1-10 + Ev. Luke 7:11-16 + Com. giles + Com. twelve-holy-brothers-martyrs + +2 stephen-of-hungary + class-3 · white + Ep. Sir 31:8-11 + Ev. Luke 19:12-26 + +3 pius-x + class-3 · white + Ep. 1 Thess. 2:2-8 + Ev. John 21:15-17 + +4 ef-time-after-pentecost-15-saturday + class-4 · white + Ep. Ecclus 24:14-16 + Ev. Luke 11:27-28 + +5 ef-time-after-pentecost-sunday-16 + class-2 · green + Ep. Eph 3:13-21 + Ev. Luke 14:1-11 + +6 ef-time-after-pentecost-16-monday + class-4 · green + Ep. Eph 3:13-21 + Ev. Luke 14:1-11 + +7 ef-time-after-pentecost-16-tuesday + class-4 · green + Ep. Eph 3:13-21 + Ev. Luke 14:1-11 + +8 nativity-of-the-blessed-virgin-mary + class-2 · white + Ep. Prov 8:22-35 + Ev. Matt 1:1-16 + Com. hadriani + +9 ef-time-after-pentecost-16-thursday + class-4 · green + Ep. Eph 3:13-21 + Ev. Luke 14:1-11 + Com. gorgonius + +10 nicholas-of-tolentino + class-3 · white + Ep. 1 Cor. 4:9-14 + Ev. Luke 12:32-34 + +11 ef-time-after-pentecost-16-saturday + class-4 · white + Ep. Ecclus 24:14-16 + Ev. Luke 11:27-28 + Com. sts-protus-hyacinth + +12 ef-time-after-pentecost-sunday-17 + class-2 · green + Ep. Eph 4:1-6 + Ev. Matt 22:34-46 + +13 ef-time-after-pentecost-17-monday + class-4 · green + Ep. Eph 4:1-6 + Ev. Matt 22:34-46 + +14 exaltation-of-the-holy-cross + class-2 · red + Ep. Phil 2:5-11 + Ev. John 12:31-36 + +15 seven-sorrows-of-the-blessed-virgin-mary + class-2 · white + Ep. Judith 13:22; 13:23-25 + Ev. John 19:25-27 + Com. nicomedes + +16 sts-cornelius-cyprian + class-3 · red + Ep. Wis 3:1-8 + Ev. Luke 21:9-19 + Com. sts-euphemia-lucy-and-geminianus + +17 ef-time-after-pentecost-17-friday + class-4 · green + Ep. Eph 4:1-6 + Ev. Matt 22:34-46 + Com. stigmata-of-st-francis + +18 joseph-of-cupertino + class-3 · white + Ep. 1 Cor 13:1-8 + Ev. Matt 22:1-14 + +19 ef-time-after-pentecost-sunday-18 + class-2 · green + Ep. 1 Cor. 1:4-8 + Ev. Matt 9:1-8 + +20 ef-time-after-pentecost-18-monday + class-4 · green + Ep. 1 Cor. 1:4-8 + Ev. Matt 9:1-8 + Com. sts-eustace-companions + +21 matthew + class-2 · red + Ep. Ezek 1:10-14 + Ev. Matt 9:9-13 + +22 ef-september-ember-wed + class-2 · violet + Ep. 2 Esd. 8:1-10 + Ev. Mark 9:16-28 + Com. thomas-of-villanova + +23 linus + class-3 · red + Ep. 1 Pet 5:1-4; 5:10-11. + Ev. Matt 16:13-19 + Com. thecla + +24 ef-september-ember-fri + class-2 · violet + Ep. Osee 14:2-10 + Ev. Luke 7:36-50 + Com. our-lady-of-ransom + +25 ef-september-ember-sat + class-2 · violet + Ep. Heb 9:2-12 + Ev. Luke 13:6-17 + +26 ef-time-after-pentecost-sunday-19 + class-2 · green + Ep. Eph 4:23-28 + Ev. Matt 22:1-14 + +27 sts-cosmas-damian + class-3 · red + Ep. Wis 5:16-20 + Ev. Luke 6:17-23 + +28 wenceslaus + class-3 · red + Ep. Wis 10:10-14 + Ev. Matt 10:34-42 + +29 dedication-of-st-michael-the-archangel + class-1 · white + Ep. Rev 1:1-5 + Ev. Matt 18:1-10 + +30 jerome + class-3 · white + Ep. 2 Tim 4:1-8 + Ev. Matt 5:13-19 + + +October 2027 + +1 ef-time-after-pentecost-19-friday + class-4 · green + Ep. Eph 4:23-28 + Ev. Matt 22:1-14 + Com. remigius + +2 holy-guardian-angels + class-3 · white + Ep. Exod 23:20-23 + Ev. Matt 18:1-10 + +3 ef-time-after-pentecost-sunday-20 + class-2 · green + Ep. Eph 5:15-21 + Ev. John 4:46-53 + +4 francis-of-assisi + class-3 · white + Ep. Gal 6:14-18 + Ev. Matt 11:25-30 + +5 ef-time-after-pentecost-20-tuesday + class-4 · green + Ep. Eph 5:15-21 + Ev. John 4:46-53 + Com. placid-companions + +6 bruno + class-3 · white + Ep. Sir 31:8-11 + Ev. Luke 12:35-40 + +7 our-lady-of-the-rosary + class-2 · white + Ep. Prov 8:22-24, 32-35. + Ev. Luke 1:26-38 + Com. mark-i + +8 bridget-of-sweden + class-3 · white + Ep. 1 Tim. 5:3-10. + Ev. Matt 13:44-52. + Com. sergio-baccho-marcello-and-apulejo-martyrs + +9 john-leonardi + class-3 · white + Ep. 2 Cor 4:1-6; 4:15-18 + Ev. Luke 10:1-9 + Com. dionysius-and-companions + +10 ef-time-after-pentecost-sunday-21 + class-2 · green + Ep. Eph 6:10-17 + Ev. Matt 18:23-35 + +11 maternity-of-the-blessed-virgin-mary + class-2 · white + Ep. Sir 24:23-31 + Ev. Luke 2:43-51 + +12 ef-time-after-pentecost-21-tuesday + class-4 · green + Ep. Eph 6:10-17 + Ev. Matt 18:23-35 + +13 edward + class-3 · white + Ep. Sir 31:8-11 + Ev. Luke 12:35-40 + +14 callistus-i + class-3 · red + Ep. 1 Pet 5:1-4; 5:10-11. + Ev. Matt 16:13-19 + +15 teresa-of-avila + class-3 · white + Ep. 2 Cor 10:17-18; 11:1-2 + Ev. Matt 25:1-13. + +16 hedwig + class-3 · white + Ep. Prov 31:10-31 + Ev. Matt 13:44-52. + +17 ef-time-after-pentecost-sunday-22 + class-2 · green + Ep. Phil 1:6-11 + Ev. Matt 22:15-21 + +18 luke-the-evangelist + class-2 · red + Ep. 2 Cor. 8:16-24 + Ev. Luke 10:1-9 + +19 peter-of-alcantara + class-3 · white + Ep. Phil 3:7-12 + Ev. Luke 12:32-34 + +20 john-cantius + class-3 · white + Ep. James 2:12-17 + Ev. Luke 12:35-40 + +21 ef-time-after-pentecost-22-thursday + class-4 · green + Ep. Phil 1:6-11 + Ev. Matt 22:15-21 + Com. hilarion + Com. ursula-and-companions + +22 ef-time-after-pentecost-22-friday + class-4 · green + Ep. Phil 1:6-11 + Ev. Matt 22:15-21 + +23 anthony-mary-claret + class-3 · white + Ep. Heb 7:23-27 + Ev. Matt 24:42-47 + +24 ef-time-after-pentecost-sunday-23 + class-2 · green + Ep. Phil 3:17-21; 4:1-3 + Ev. Matt 9:18-26 + +25 ef-time-after-pentecost-23-monday + class-4 · green + Ep. Phil 3:17-21; 4:1-3 + Ev. Matt 9:18-26 + Com. sts-chrysanthus-daria + +26 ef-time-after-pentecost-23-tuesday + class-4 · green + Ep. Phil 3:17-21; 4:1-3 + Ev. Matt 9:18-26 + Com. evaristus + +27 ef-time-after-pentecost-23-wednesday + class-4 · green + Ep. Phil 3:17-21; 4:1-3 + Ev. Matt 9:18-26 + +28 sts-simon-jude + class-2 · red + Ep. Eph. 4:7-13. + Ev. John 15:17-25 + +29 ef-time-after-pentecost-23-friday + class-4 · green + Ep. Phil 3:17-21; 4:1-3 + Ev. Matt 9:18-26 + +30 ef-time-after-pentecost-23-saturday + class-4 · white + Ep. Ecclus 24:14-16 + Ev. Luke 11:27-28 + +31 ef-christ-the-king + class-1 · white + Ep. Col 1:12-20. + Ev. John 18:33-37 + + +November 2027 + +1 all-saints + class-1 · white + Ep. Apoc 7:2-12 + Ev. Matt 5:1-12 + +2 commemoration-of-all-souls + class-1 · black + Ep. 1 Cor. 15:51-57 + Ev. John 5:25-29 + +3 ef-time-after-pentecost-24-wednesday + class-4 · green + Ep. Col 1:12-20. + Ev. John 18:33-37 + +4 charles-borromeo + class-3 · white + Ep. Sir 44:16-27; 45:3-20 + Ev. Matt 25:14-23 + Com. sts-vitalis-and-agricola-martyrs + +5 ef-time-after-pentecost-24-friday + class-4 · green + Ep. Col 1:12-20. + Ev. John 18:33-37 + +6 ef-time-after-pentecost-24-saturday + class-4 · white + Ep. Ecclus 24:14-16 + Ev. Luke 11:27-28 + +7 ef-time-after-epiphany-sunday-5 + class-2 · green + Ep. Col 3:12-17 + Ev. Matt 13:24-30 + +8 ef-time-after-pentecost-25-monday + class-4 · green + Ep. Col 3:12-17 + Ev. Matt 13:24-30 + Com. four-holy-crowned-martyrs + +9 dedication-of-the-archbasilica-of-our-holy-savior + class-2 · white + Ep. Rev 21:2-5 + Ev. Luke 19:1-10 + Com. theodore + +10 andrew-avellino + class-3 · white + Ep. Sir 31:8-11 + Ev. Luke 12:35-40 + Com. sts-tryphonis-respicii-et-nymphae + +11 martin-of-tours + class-3 · white + Ep. Sir 44:16-27; 45:3-20 + Ev. Luke 11:33-36 + Com. menna + +12 martin-i + class-3 · red + Ep. 1 Pet 5:1-4; 5:10-11. + Ev. Matt 16:13-19 + +13 didacus + class-3 · white + Ep. 1 Cor 4:9-14 + Ev. Luke 12:32-34 + +14 ef-time-after-epiphany-sunday-6 + class-2 · green + Ep. 1 Thess 1:2-10 + Ev. Matt 13:31-35 + +15 albert-the-great + class-3 · white + Ep. 2 Tim 4:1-8 + Ev. Matt 5:13-19 + +16 gertrude-the-great + class-3 · white + Ep. 2 Cor 10:17-18; 11:1-2 + Ev. Matt 25:1-13. + +17 gregory-the-wonderworker + class-3 · white + Ep. Sir 44:16-27; 45:3-20 + Ev. Mark 11:22-24 + +18 dedication-of-the-basilicas-of-sts-peter-paul + class-3 · white + Ep. Rev 21:2-5 + Ev. Luke 19:1-10 + +19 elizabeth-of-hungary + class-3 · white + Ep. Prov 31:10-31 + Ev. Matt 13:44-52. + Com. pontian + +20 felix-of-valois + class-3 · white + Ep. 1 Cor. 4:9-14 + Ev. Luke 12:32-34 + +21 ef-time-after-pentecost-sunday-24 + class-2 · green + Ep. Col 1:9-14 + Ev. Matt 24:15-35 + +22 cecilia + class-3 · red + Ep. Sir 51:13-17. + Ev. Matt 25:1-13. + +23 clement-i + class-3 · red + Ep. Phil 3:17-21; 4:1-3 + Ev. Matt 16:13-19 + Com. felicity + +24 john-of-the-cross + class-3 · white + Ep. 2 Tim 4:1-8 + Ev. Matt 5:13-19 + Com. chrysogonus + +25 catherine-of-alexandria + class-3 · red + Ep. Sir 51:1-8; 51:12 + Ev. Matt 25:1-13. + +26 sylvester + class-3 · white + Ep. Ecclus 45:1-6 + Ev. Matt 19:27-29. + Com. peter-of-alexandria + +27 ef-time-after-pentecost-27-saturday + class-4 · white + Ep. Ecclus 24:14-16 + Ev. Luke 11:27-28 + +28 ef-advent-sunday-1 + class-1 · violet + Ep. Rom 13:11-14 + Ev. Luke 21:25-33 + +29 ef-advent-1-monday + class-3 · violet + Ep. Rom 13:11-14 + Ev. Luke 21:25-33 + Com. saturninus + +30 andrew + class-2 · red + Ep. Rom 10:10-18 + Ev. Matt 4:18-22 + Com. ef-advent-1-tuesday + + +December 2027 + +1 ef-advent-1-wednesday + class-3 · violet + Ep. Rom 13:11-14 + Ev. Luke 21:25-33 + +2 vivian + class-3 · red + Ep. Sir 51:13-17. + Ev. Matt 13:44-52. + Com. ef-advent-1-thursday + +3 francis-xavier + class-3 · white + Ep. Rom 10:10-18 + Ev. Mark 16:15-18 + Com. ef-advent-1-friday + +4 peter-chrysologus + class-3 · white + Ep. 2 Tim 4:1-8 + Ev. Matt 5:13-19 + Com. ef-advent-1-saturday + Com. barbara + +5 ef-advent-sunday-2 + class-1 · violet + Ep. Rom 15:4-13 + Ev. Matt 11:2-10 + +6 nicholas + class-3 · white + Ep. Heb 13:7-17 + Ev. Matt 25:14-23 + Com. ef-advent-2-monday + +7 ambrose + class-3 · white + Ep. 2 Tim 4:1-8 + Ev. Matt 5:13-19 + Com. ef-advent-2-tuesday + +8 immaculate-conception-of-the-blessed-virgin-mary + class-1 · white + Ep. Prov 8:22-35 + Ev. Luke 1:26-28 + Com. ef-advent-2-wednesday + +9 ef-advent-2-thursday + class-3 · violet + Ep. Rom 15:4-13 + Ev. Matt 11:2-10 + +10 ef-advent-2-friday + class-3 · violet + Ep. Rom 15:4-13 + Ev. Matt 11:2-10 + Com. melchiades + +11 damasus-i + class-3 · white + Ep. 1 Pet 5:1-4; 5:10-11. + Ev. Matt 16:13-19 + Com. ef-advent-2-saturday + +12 ef-advent-sunday-3 + class-1 · rose + Ep. Phil 4:4-7 + Ev. John 1:19-28 + +13 lucy + class-3 · red + Ep. 2 Cor 10:17-18; 11:1-2 + Ev. Matt 13:44-52. + Com. ef-advent-3-monday + +14 ef-advent-3-tuesday + class-3 · violet + Ep. Phil 4:4-7 + Ev. John 1:19-28 + +15 ef-advent-ember-wed + class-2 · violet + Ep. Isa 7:10-15 + Ev. Luke 1:26-38 + +16 eusebius + class-3 · red + Ep. 2 Cor. 1:3-7 + Ev. Matt 16:24-27. + Com. ef-advent-3-thursday + +17 ef-advent-ember-fri + class-2 · violet + Ep. Isa 11:1-5 + Ev. Luke 1:39-47 + +18 ef-advent-ember-sat + class-2 · violet + Ep. 2 Thess 2:1-8 + Ev. Luke 3:1-6 + +19 ef-advent-sunday-4 + class-1 · violet + Ep. 1 Cor. 4:1-5 + Ev. Luke 3:1-6 + +20 ef-advent-4-monday + class-2 · violet + Ep. 1 Cor. 4:1-5 + Ev. Luke 3:1-6 + +21 thomas + class-2 · red + Ep. Eph 2:19-22 + Ev. John 20:24-29 + Com. ef-advent-4-tuesday + +22 ef-advent-4-wednesday + class-2 · violet + Ep. 1 Cor. 4:1-5 + Ev. Luke 3:1-6 + +23 ef-advent-4-thursday + class-2 · violet + Ep. 1 Cor. 4:1-5 + Ev. Luke 3:1-6 + +24 ef-nativity-vigil + class-1 · violet + Ep. Rom 1:1-6 + Ev. Matt 1:18-21 + +25 ef-nativity + class-1 · white + Ep. Heb 1:1-12 + Ev. John 1:1-14 + +26 ef-christmas-sunday-0 + class-2 · white + Ep. Gal 4:1-7 + Ev. Luke 2:33-40 + Com. stephen + +27 john-the-evangelist + class-2 · white + Ep. Ecclus 15:1-6 + Ev. John 21:19-24 + Com. ef-nativity-octave-day-3 + +28 holy-innocents + class-2 · red + Ep. Apoc 14:1-5 + Ev. Matt 2:13-18 + Com. ef-nativity-octave-day-4 + +29 ef-nativity-octave-day-5 + class-2 · white + Ep. Titus 3:4-7 + Ev. Luke 2:15-20 + Com. thomas-becket + +30 ef-nativity-octave-day-6 + class-2 · white + Ep. Titus 3:4-7 + Ev. Luke 2:15-20 + +31 ef-nativity-octave-day-7 + class-2 · white + Ep. Titus 3:4-7 + Ev. Luke 2:15-20 + Com. silvester + + diff --git a/test/test_colitur.ml b/test/test_colitur.ml index d4ba6d3..04bbdee 100644 --- a/test/test_colitur.ml +++ b/test/test_colitur.ml @@ -13,4 +13,5 @@ let () = Test_view.suite; Test_emit.suite; Test_emit.xml_suite; - Test_ics.suite ] + Test_ics.suite; + Test_render_golden.suite ] diff --git a/test/test_render_golden.ml b/test/test_render_golden.ml new file mode 100644 index 0000000..913513a --- /dev/null +++ b/test/test_render_golden.ml @@ -0,0 +1,40 @@ +(* Pins the six shipped ordo booklet templates, one per flavour, under + templates/ef/, against a byte-for-byte golden render of 2027. These are + the templates a real user ships with colitur, rendered through the same + Template.render_string / View.of_days path colitur table uses -- so a + change to the view shape, the escaping rules, or the templates themselves + that alters output is caught here, not only in test_view.ml's shape + assertions. *) + +module T = Colitur_render.Template +module E = Colitur_render.Escape + +let render_template path year = + let ic = open_in_bin path in + let src = really_input_string ic (in_channel_length ic) in + close_in ic; + let ext = + match String.rindex_opt path '.' with + | Some i -> String.sub path i (String.length path - i) + | None -> "" + in + let flavour = match E.of_extension ext with Some f -> f | None -> Alcotest.failf "flavour for %s" ext in + let v = Test_view.view_of year in + match T.render_string ~flavour src v with Ok s -> s | Error e -> Alcotest.failf "%s: %s" path e + +let read path = + let ic = open_in_bin path in + let s = really_input_string ic (in_channel_length ic) in + close_in ic; + s + +let check_golden name = + let got = render_template ("../templates/ef/" ^ name) 2027 in + let want = read ("golden/" ^ Filename.remove_extension name ^ "-2027" ^ Filename.extension name) in + Alcotest.(check string) name want got + +let cases = [ "ordo.tex"; "ordo.ms"; "ordo.html"; "ordo.adoc"; "ordo.md"; "ordo.txt" ] + +let suite = + ( "Render/golden", + List.map (fun n -> Alcotest.test_case n `Quick (fun () -> check_golden n)) cases ) -- cgit v1.3 From 24de019a3e1d5b9a6d4601bdd65489813baa7e58 Mon Sep 17 00:00:00 2001 From: Lukasz Kasprzak Date: Wed, 19 Aug 2026 09:59:47 +0200 Subject: feat(templates): wall calendar grid in LaTeX, groff and HTML Three flavours, not six: a month grid in Markdown or plain text is a worse artefact than the booklet already is, and shipping a template we would not use ourselves is maintenance with no reader. These are the first templates to use weeks and in_month, so this is where the view model earns its keep -- the booklet and the grid come from one model with no second code path. Every cell carries a per-cell 'last' boolean (already in the view). A table row needs a separator BETWEEN cells and the engine deliberately has no 'unless last' construct; the rule is shape the data, not the template. Without it the LaTeX grid emits eight columns for seven cells and pdflatex rejects the file. Day cells resolve their label as {{#name}}{{la}}{{^la}}{{slug}}{{/la}} {{/name}}, never a bare {{name.la}}: the enclosing month object has its own name.la, and the engine's scope lookup falls back outward, so a bare dotted lookup would render the month's own Latin name on every day lacking one -- a wall calendar where every day reads "January". Verified on the goldens: Ianuarius appears exactly once per file, the month heading, never as a day label. --- templates/ef/grid.html | 35 ++++++ templates/ef/grid.ms | 25 ++++ templates/ef/grid.tex | 35 ++++++ test/dune | 8 +- test/golden/grid-2027.html | 287 +++++++++++++++++++++++++++++++++++++++++++++ test/golden/grid-2027.ms | 186 +++++++++++++++++++++++++++++ test/golden/grid-2027.tex | 174 +++++++++++++++++++++++++++ test/test_render_golden.ml | 4 +- 8 files changed, 752 insertions(+), 2 deletions(-) create mode 100644 templates/ef/grid.html create mode 100644 templates/ef/grid.ms create mode 100644 templates/ef/grid.tex create mode 100644 test/golden/grid-2027.html create mode 100644 test/golden/grid-2027.ms create mode 100644 test/golden/grid-2027.tex (limited to 'test/dune') diff --git a/templates/ef/grid.html b/templates/ef/grid.html new file mode 100644 index 0000000..b92e14a --- /dev/null +++ b/templates/ef/grid.html @@ -0,0 +1,35 @@ + + + + +Calendarium {{year}} + +

Calendarium {{year}} · {{rite}}

+{{#months}} + + + + {{#weeks}} + {{#days}}{{#in_month}}{{/in_month}}{{^in_month}}{{/in_month}}{{/days}} + + {{/weeks}} +
{{name.la}}
DomLunMarMerIovVenSab
{{dom}}{{#name}}{{la}}{{^la}}{{slug}}{{/la}}{{/name}}
+{{/months}} + diff --git a/templates/ef/grid.ms b/templates/ef/grid.ms new file mode 100644 index 0000000..0ec2fb3 --- /dev/null +++ b/templates/ef/grid.ms @@ -0,0 +1,25 @@ +.\" colitur wall calendar -- groff ms with tbl. flavour: groff +.\" Build: colitur table --year 2027 --template grid.ms | groff -ms -t -Tpdf > grid.pdf +.\" +.\" Day label falls back to the slug when the day carries no Latin name (most +.\" temporal days, and most sanctoral entries, which are Latin-less in the +.\" shipped data) -- see ordo.tex's own comment for why the fallback is +.\" written as a name-section wrapping a plain var and its inverse, rather +.\" than a single dotted lookup and its inverse. +.\" +.\" Every cell also carries a last flag, true on the seventh of its row: tbl +.\" needs the tab separator BETWEEN columns, not after the last one, and the +.\" engine has no unless-last construct, so the flag comes from data. +.TL +Calendarium {{year}} \(bu {{rite}} +{{#months}} +.SH +{{name.la}} +.TS +allbox; +c c c c c c c +l l l l l l l. +Dom Lun Mar Mer Iov Ven Sab +{{#weeks}}{{#days}}{{#in_month}}{{dom}} {{#name}}{{la}}{{^la}}{{slug}}{{/la}}{{/name}}{{/in_month}}{{^last}} {{/last}}{{/days}} +{{/weeks}}.TE +{{/months}} diff --git a/templates/ef/grid.tex b/templates/ef/grid.tex new file mode 100644 index 0000000..51432e9 --- /dev/null +++ b/templates/ef/grid.tex @@ -0,0 +1,35 @@ +% colitur wall calendar -- LaTeX. flavour: latex +% Build: colitur table --year 2027 --template grid.tex > grid.tex && pdflatex grid.tex +% +% Day label falls back to the slug when the day carries no Latin name (most +% temporal days, and most sanctoral entries, which are Latin-less in the +% shipped data). The fallback is written as a name-section wrapping a plain +% var and its inverse, deliberately NOT as a single dotted-path lookup +% followed by its own inverse: a dotted lookup that misses climbs to the +% enclosing scope for the WHOLE path, and the month object also carries a +% same-named key one level up, so the naive form would render the month's +% own Latin name on every day lacking one, and never fall back at all. +% +% Every cell also carries a last flag, true on the seventh of its row: the +% engine has no unless-last construct, so the separator BETWEEN cells comes +% from data, not the template. A trailing separator on every cell would give +% eight columns for seven and pdflatex would reject the file outright. +\documentclass[10pt,landscape]{article} +\usepackage[a4paper,margin=10mm]{geometry} +\usepackage[T1]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage[table]{xcolor} +\definecolor{lwhite}{HTML}{FFFFFF}\definecolor{lred}{HTML}{FFDDDD} +\definecolor{lgreen}{HTML}{DDFFDD}\definecolor{lviolet}{HTML}{EEAAEE} +\definecolor{lrose}{HTML}{FFDDEE}\definecolor{lblack}{HTML}{DDDDDD} +\begin{document} +{{#months}} +\section*{ {{name.la}} {{year}} } +\begin{tabular}{|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|} +\hline Dom & Lun & Mar & Mer & Iov & Ven & Sab \\ \hline +{{#weeks}}{{#days}}{{#in_month}}\cellcolor{l{{colour}}}\textbf{ {{dom}} } \footnotesize {{#name}}{{la}}{{^la}}{{slug}}{{/la}}{{/name}}{{/in_month}}{{^last}} & {{/last}}{{/days}} \\ \hline +{{/weeks}} +\end{tabular} +\newpage +{{/months}} +\end{document} diff --git a/test/dune b/test/dune index 504a639..aa4bd66 100644 --- a/test/dune +++ b/test/dune @@ -19,12 +19,18 @@ ../templates/ef/ordo.adoc ../templates/ef/ordo.md ../templates/ef/ordo.txt + ../templates/ef/grid.tex + ../templates/ef/grid.ms + ../templates/ef/grid.html golden/ordo-2027.tex golden/ordo-2027.ms golden/ordo-2027.html golden/ordo-2027.adoc golden/ordo-2027.md - golden/ordo-2027.txt) + golden/ordo-2027.txt + golden/grid-2027.tex + golden/grid-2027.ms + golden/grid-2027.html) (preprocess (pps ppx_sexp_conv))) diff --git a/test/golden/grid-2027.html b/test/golden/grid-2027.html new file mode 100644 index 0000000..9068788 --- /dev/null +++ b/test/golden/grid-2027.html @@ -0,0 +1,287 @@ + + + + +Calendarium 2027 + +

Calendarium 2027 · ef

+ + + + + + + + + + + + + + + + + + + + + + + +
Ianuarius
DomLunMarMerIovVenSab
1ef-circumcision2Officium sanctae Mariae in sabbato
3Sanctissimi Nominis Iesu4ef-christmas-1-monday5ef-christmas-1-tuesday6ef-epiphany7ef-christmas-2-thursday8ef-christmas-2-friday9Officium sanctae Mariae in sabbato
10Sanctae Familiae Iesu, Mariae, Ioseph11ef-time-after-epiphany-1-monday12ef-time-after-epiphany-1-tuesday13commemoration-of-the-baptism-of-the-lord14hilary15paul-the-first-hermit16marcellus-i
17ef-time-after-epiphany-sunday-218ef-time-after-epiphany-2-monday19ef-time-after-epiphany-2-tuesday20sts-fabian-sebastian21agnes22sts-vincent-anastasius23raymond-of-pe-afort
24ef-septuagesima-sunday-125conversion-of-st-paul26polycarp27john-chrysostom28peter-nolasco29francis-de-sales30martina
31ef-septuagesima-sunday-2
+ + + + + + + + + + + + + + + + + + + + +
Februarius
DomLunMarMerIovVenSab
1ignatius-of-antioch2purification-of-the-blessed-virgin-mary3ef-septuagesima-2-wednesday4andrew-corsini5agatha6titus
7ef-septuagesima-sunday-38john-of-matha9cyril-of-alexandria10ef-ash-wednesday11ef-lent-after-ashes-thursday12ef-lent-after-ashes-friday13ef-lent-after-ashes-saturday
14ef-lent-sunday-115ef-lent-1-monday16ef-lent-1-tuesday17ef-lent-ember-wed18ef-lent-1-thursday19ef-lent-ember-fri20ef-lent-ember-sat
21ef-lent-sunday-222chair-of-st-peter23ef-lent-2-tuesday24matthias25ef-lent-2-thursday26ef-lent-2-friday27ef-lent-2-saturday
28ef-lent-sunday-3
+ + + + + + + + + + + + + + + + + + + + +
Martius
DomLunMarMerIovVenSab
1ef-lent-3-monday2ef-lent-3-tuesday3ef-lent-3-wednesday4ef-lent-3-thursday5ef-lent-3-friday6ef-lent-3-saturday
7ef-lent-sunday-48ef-lent-4-monday9ef-lent-4-tuesday10ef-lent-4-wednesday11ef-lent-4-thursday12ef-lent-4-friday13ef-lent-4-saturday
14ef-passion-sunday15ef-passiontide-1-monday16ef-passiontide-1-tuesday17ef-passiontide-1-wednesday18ef-passiontide-1-thursday19joseph-spouse-of-the-bl-virgin-mary20ef-passiontide-1-saturday
21ef-palm-sunday22ef-passiontide-2-monday23ef-passiontide-2-tuesday24ef-passiontide-2-wednesday25Feria V in Cena Domini26Feria VI in Passione et Morte Domini27Sabbato sancto
28ef-easter-sunday29ef-easter-1-monday30ef-easter-1-tuesday31ef-easter-1-wednesday
+ + + + + + + + + + + + + + + + + + + + +
Aprilis
DomLunMarMerIovVenSab
1ef-easter-1-thursday2ef-easter-1-friday3ef-easter-1-saturday
4ef-low-sunday5annunciation-of-the-blessed-virgin-mary6ef-easter-2-tuesday7ef-easter-2-wednesday8ef-easter-2-thursday9ef-easter-2-friday10Officium sanctae Mariae in sabbato
11ef-easter-sunday-312ef-easter-3-monday13hermenegild14justin15ef-easter-3-thursday16ef-easter-3-friday17Officium sanctae Mariae in sabbato
18ef-easter-sunday-419ef-easter-4-monday20ef-easter-4-tuesday21anselm22sts-soter-caius23ef-easter-4-friday24fidelis-of-sigmaringen
25ef-easter-sunday-526sts-cletus-marcellinus27peter-canisius28paul-of-the-cross29peter-of-verona30catherine-of-siena
+ + + + + + + + + + + + + + + + + + + + + + + +
Maius
DomLunMarMerIovVenSab
1joseph-the-workman
2ef-easter-sunday-63ef-rogation-monday4monica5ef-ascension-vigil6ef-ascension7stanislaus8Officium sanctae Mariae in sabbato
9ef-easter-sunday-710antoninus11sts-philip-james12sts-nereus-achilleus-domitilla-pancras13robert-bellarmine14ef-easter-7-friday15ef-pentecost-vigil
16ef-pentecost17ef-easter-8-monday18ef-easter-8-tuesday19ef-pentecost-ember-wed20ef-easter-8-thursday21ef-pentecost-ember-fri22ef-pentecost-ember-sat
23ef-trinity24ef-time-after-pentecost-1-monday25gregory-vii26philip-neri27ef-corpus-christi28augustine-of-canterbury29mary-magdalene-de-pazzi
30ef-time-after-pentecost-sunday-231queenship-of-the-blessed-virgin-mary
+ + + + + + + + + + + + + + + + + + + + +
Iunius
DomLunMarMerIovVenSab
1angela-merici2ef-time-after-pentecost-2-wednesday3ef-time-after-pentecost-2-thursday4ef-sacred-heart5boniface
6ef-time-after-pentecost-sunday-37ef-time-after-pentecost-3-monday8ef-time-after-pentecost-3-tuesday9ef-time-after-pentecost-3-wednesday10margaret-of-scotland11barnabas12john-of-san-fecundo
13ef-time-after-pentecost-sunday-414basil-the-great15ef-time-after-pentecost-4-tuesday16ef-time-after-pentecost-4-wednesday17gregory-barbarigo18ephrem-of-syria19julia-of-falconieri
20ef-time-after-pentecost-sunday-521aloysius-gongzaga22paulinus-of-nola23vigil-of-the-nativity-of-st-john-the-baptist24nativity-of-st-john-the-baptist25william26sts-john-paul
27ef-time-after-pentecost-sunday-628vigil-of-sts-peter-paul29sts-peter-paul30in-commemoratione-sancti-pauli-apostoli
+ + + + + + + + + + + + + + + + + + + + +
Iulius
DomLunMarMerIovVenSab
1precious-blood-of-our-lord-jesus-christ2visitation-of-the-blessed-virgin-mary3irenaeus
4ef-time-after-pentecost-sunday-75anthony-mary-zaccariah6ef-time-after-pentecost-7-tuesday7sts-cyril-methodius8elizabeth-of-portugal9ef-time-after-pentecost-7-friday10seven-holy-brothers-and-sts-rufina-secunda
11ef-time-after-pentecost-sunday-812john-gualbert13ef-time-after-pentecost-8-tuesday14bonaventure15henry-the-emperor16ef-time-after-pentecost-8-friday17Officium sanctae Mariae in sabbato
18ef-time-after-pentecost-sunday-919vincent-de-paul20jerome-emiliani21laurence-of-brindisi22mary-magdalene23apollinaris24Officium sanctae Mariae in sabbato
25ef-time-after-pentecost-sunday-1026anne-mother-of-the-blessed-virgin27ef-time-after-pentecost-10-tuesday28sts-nazarius-celsus-st-victor-i-st-innocent-i29martha30ef-time-after-pentecost-10-friday31ignatius-loyola
+ + + + + + + + + + + + + + + + + + + + +
Augustus
DomLunMarMerIovVenSab
1ef-time-after-pentecost-sunday-112alphonsus-liguori3ef-time-after-pentecost-11-tuesday4dominic5dedication-of-the-basilica-of-st-mary-major6transfiguration-of-our-lord7cajetan
8ef-time-after-pentecost-sunday-129vigil-of-st-lawrence10lawrence11ef-time-after-pentecost-12-wednesday12clare13ef-time-after-pentecost-12-friday14vigil-of-the-assumption
15assumption-of-the-blessed-virgin-mary16joachim-father-of-the-blessed-virgin17hyacinth18ef-time-after-pentecost-13-wednesday19john-eudes20bernard-of-clairvaux21jane-frances-de-chantal
22ef-time-after-pentecost-sunday-1423philip-benizi24bartholomew25louis-ix26ef-time-after-pentecost-14-thursday27joseph-calasance28augustine
29ef-time-after-pentecost-sunday-1530rose-of-lima31raymond-nonnatus
+ + + + + + + + + + + + + + + + + + + + +
September
DomLunMarMerIovVenSab
1ef-time-after-pentecost-15-wednesday2stephen-of-hungary3pius-x4Officium sanctae Mariae in sabbato
5ef-time-after-pentecost-sunday-166ef-time-after-pentecost-16-monday7ef-time-after-pentecost-16-tuesday8nativity-of-the-blessed-virgin-mary9ef-time-after-pentecost-16-thursday10nicholas-of-tolentino11Officium sanctae Mariae in sabbato
12ef-time-after-pentecost-sunday-1713ef-time-after-pentecost-17-monday14exaltation-of-the-holy-cross15seven-sorrows-of-the-blessed-virgin-mary16sts-cornelius-cyprian17ef-time-after-pentecost-17-friday18joseph-of-cupertino
19ef-time-after-pentecost-sunday-1820ef-time-after-pentecost-18-monday21matthew22ef-september-ember-wed23linus24ef-september-ember-fri25ef-september-ember-sat
26ef-time-after-pentecost-sunday-1927sts-cosmas-damian28wenceslaus29dedication-of-st-michael-the-archangel30jerome
+ + + + + + + + + + + + + + + + + + + + + + + +
October
DomLunMarMerIovVenSab
1ef-time-after-pentecost-19-friday2holy-guardian-angels
3ef-time-after-pentecost-sunday-204francis-of-assisi5ef-time-after-pentecost-20-tuesday6bruno7our-lady-of-the-rosary8bridget-of-sweden9john-leonardi
10ef-time-after-pentecost-sunday-2111maternity-of-the-blessed-virgin-mary12ef-time-after-pentecost-21-tuesday13edward14callistus-i15teresa-of-avila16hedwig
17ef-time-after-pentecost-sunday-2218luke-the-evangelist19peter-of-alcantara20john-cantius21ef-time-after-pentecost-22-thursday22ef-time-after-pentecost-22-friday23anthony-mary-claret
24ef-time-after-pentecost-sunday-2325ef-time-after-pentecost-23-monday26ef-time-after-pentecost-23-tuesday27ef-time-after-pentecost-23-wednesday28sts-simon-jude29ef-time-after-pentecost-23-friday30Officium sanctae Mariae in sabbato
31ef-christ-the-king
+ + + + + + + + + + + + + + + + + + + + +
November
DomLunMarMerIovVenSab
1all-saints2commemoration-of-all-souls3ef-time-after-pentecost-24-wednesday4charles-borromeo5ef-time-after-pentecost-24-friday6Officium sanctae Mariae in sabbato
7ef-time-after-epiphany-sunday-58ef-time-after-pentecost-25-monday9dedication-of-the-archbasilica-of-our-holy-savior10andrew-avellino11martin-of-tours12martin-i13didacus
14ef-time-after-epiphany-sunday-615albert-the-great16gertrude-the-great17gregory-the-wonderworker18dedication-of-the-basilicas-of-sts-peter-paul19elizabeth-of-hungary20felix-of-valois
21ef-time-after-pentecost-sunday-2422cecilia23clement-i24john-of-the-cross25catherine-of-alexandria26sylvester27Officium sanctae Mariae in sabbato
28ef-advent-sunday-129ef-advent-1-monday30andrew
+ + + + + + + + + + + + + + + + + + + + +
December
DomLunMarMerIovVenSab
1ef-advent-1-wednesday2vivian3francis-xavier4peter-chrysologus
5ef-advent-sunday-26nicholas7ambrose8immaculate-conception-of-the-blessed-virgin-mary9ef-advent-2-thursday10ef-advent-2-friday11damasus-i
12ef-advent-sunday-313lucy14ef-advent-3-tuesday15ef-advent-ember-wed16eusebius17ef-advent-ember-fri18ef-advent-ember-sat
19ef-advent-sunday-420ef-advent-4-monday21thomas22ef-advent-4-wednesday23ef-advent-4-thursday24ef-nativity-vigil25ef-nativity
26ef-christmas-sunday-027john-the-evangelist28holy-innocents29ef-nativity-octave-day-530ef-nativity-octave-day-631ef-nativity-octave-day-7
+ + diff --git a/test/golden/grid-2027.ms b/test/golden/grid-2027.ms new file mode 100644 index 0000000..785d59a --- /dev/null +++ b/test/golden/grid-2027.ms @@ -0,0 +1,186 @@ +.\" colitur wall calendar -- groff ms with tbl. flavour: groff +.\" Build: colitur table --year 2027 --template grid.ms | groff -ms -t -Tpdf > grid.pdf +.\" +.\" Day label falls back to the slug when the day carries no Latin name (most +.\" temporal days, and most sanctoral entries, which are Latin-less in the +.\" shipped data) -- see ordo.tex's own comment for why the fallback is +.\" written as a name-section wrapping a plain var and its inverse, rather +.\" than a single dotted lookup and its inverse. +.\" +.\" Every cell also carries a last flag, true on the seventh of its row: tbl +.\" needs the tab separator BETWEEN columns, not after the last one, and the +.\" engine has no unless-last construct, so the flag comes from data. +.TL +Calendarium 2027 \(bu ef + +.SH +Ianuarius +.TS +allbox; +c c c c c c c +l l l l l l l. +Dom Lun Mar Mer Iov Ven Sab + 1 ef-circumcision 2 Officium sanctae Mariae in sabbato +3 Sanctissimi Nominis Iesu 4 ef-christmas-1-monday 5 ef-christmas-1-tuesday 6 ef-epiphany 7 ef-christmas-2-thursday 8 ef-christmas-2-friday 9 Officium sanctae Mariae in sabbato +10 Sanctae Familiae Iesu, Mariae, Ioseph 11 ef-time-after-epiphany-1-monday 12 ef-time-after-epiphany-1-tuesday 13 commemoration-of-the-baptism-of-the-lord 14 hilary 15 paul-the-first-hermit 16 marcellus-i +17 ef-time-after-epiphany-sunday-2 18 ef-time-after-epiphany-2-monday 19 ef-time-after-epiphany-2-tuesday 20 sts-fabian-sebastian 21 agnes 22 sts-vincent-anastasius 23 raymond-of-pe-afort +24 ef-septuagesima-sunday-1 25 conversion-of-st-paul 26 polycarp 27 john-chrysostom 28 peter-nolasco 29 francis-de-sales 30 martina +31 ef-septuagesima-sunday-2 +.TE + +.SH +Februarius +.TS +allbox; +c c c c c c c +l l l l l l l. +Dom Lun Mar Mer Iov Ven Sab + 1 ignatius-of-antioch 2 purification-of-the-blessed-virgin-mary 3 ef-septuagesima-2-wednesday 4 andrew-corsini 5 agatha 6 titus +7 ef-septuagesima-sunday-3 8 john-of-matha 9 cyril-of-alexandria 10 ef-ash-wednesday 11 ef-lent-after-ashes-thursday 12 ef-lent-after-ashes-friday 13 ef-lent-after-ashes-saturday +14 ef-lent-sunday-1 15 ef-lent-1-monday 16 ef-lent-1-tuesday 17 ef-lent-ember-wed 18 ef-lent-1-thursday 19 ef-lent-ember-fri 20 ef-lent-ember-sat +21 ef-lent-sunday-2 22 chair-of-st-peter 23 ef-lent-2-tuesday 24 matthias 25 ef-lent-2-thursday 26 ef-lent-2-friday 27 ef-lent-2-saturday +28 ef-lent-sunday-3 +.TE + +.SH +Martius +.TS +allbox; +c c c c c c c +l l l l l l l. +Dom Lun Mar Mer Iov Ven Sab + 1 ef-lent-3-monday 2 ef-lent-3-tuesday 3 ef-lent-3-wednesday 4 ef-lent-3-thursday 5 ef-lent-3-friday 6 ef-lent-3-saturday +7 ef-lent-sunday-4 8 ef-lent-4-monday 9 ef-lent-4-tuesday 10 ef-lent-4-wednesday 11 ef-lent-4-thursday 12 ef-lent-4-friday 13 ef-lent-4-saturday +14 ef-passion-sunday 15 ef-passiontide-1-monday 16 ef-passiontide-1-tuesday 17 ef-passiontide-1-wednesday 18 ef-passiontide-1-thursday 19 joseph-spouse-of-the-bl-virgin-mary 20 ef-passiontide-1-saturday +21 ef-palm-sunday 22 ef-passiontide-2-monday 23 ef-passiontide-2-tuesday 24 ef-passiontide-2-wednesday 25 Feria V in Cena Domini 26 Feria VI in Passione et Morte Domini 27 Sabbato sancto +28 ef-easter-sunday 29 ef-easter-1-monday 30 ef-easter-1-tuesday 31 ef-easter-1-wednesday +.TE + +.SH +Aprilis +.TS +allbox; +c c c c c c c +l l l l l l l. +Dom Lun Mar Mer Iov Ven Sab + 1 ef-easter-1-thursday 2 ef-easter-1-friday 3 ef-easter-1-saturday +4 ef-low-sunday 5 annunciation-of-the-blessed-virgin-mary 6 ef-easter-2-tuesday 7 ef-easter-2-wednesday 8 ef-easter-2-thursday 9 ef-easter-2-friday 10 Officium sanctae Mariae in sabbato +11 ef-easter-sunday-3 12 ef-easter-3-monday 13 hermenegild 14 justin 15 ef-easter-3-thursday 16 ef-easter-3-friday 17 Officium sanctae Mariae in sabbato +18 ef-easter-sunday-4 19 ef-easter-4-monday 20 ef-easter-4-tuesday 21 anselm 22 sts-soter-caius 23 ef-easter-4-friday 24 fidelis-of-sigmaringen +25 ef-easter-sunday-5 26 sts-cletus-marcellinus 27 peter-canisius 28 paul-of-the-cross 29 peter-of-verona 30 catherine-of-siena +.TE + +.SH +Maius +.TS +allbox; +c c c c c c c +l l l l l l l. +Dom Lun Mar Mer Iov Ven Sab + 1 joseph-the-workman +2 ef-easter-sunday-6 3 ef-rogation-monday 4 monica 5 ef-ascension-vigil 6 ef-ascension 7 stanislaus 8 Officium sanctae Mariae in sabbato +9 ef-easter-sunday-7 10 antoninus 11 sts-philip-james 12 sts-nereus-achilleus-domitilla-pancras 13 robert-bellarmine 14 ef-easter-7-friday 15 ef-pentecost-vigil +16 ef-pentecost 17 ef-easter-8-monday 18 ef-easter-8-tuesday 19 ef-pentecost-ember-wed 20 ef-easter-8-thursday 21 ef-pentecost-ember-fri 22 ef-pentecost-ember-sat +23 ef-trinity 24 ef-time-after-pentecost-1-monday 25 gregory-vii 26 philip-neri 27 ef-corpus-christi 28 augustine-of-canterbury 29 mary-magdalene-de-pazzi +30 ef-time-after-pentecost-sunday-2 31 queenship-of-the-blessed-virgin-mary +.TE + +.SH +Iunius +.TS +allbox; +c c c c c c c +l l l l l l l. +Dom Lun Mar Mer Iov Ven Sab + 1 angela-merici 2 ef-time-after-pentecost-2-wednesday 3 ef-time-after-pentecost-2-thursday 4 ef-sacred-heart 5 boniface +6 ef-time-after-pentecost-sunday-3 7 ef-time-after-pentecost-3-monday 8 ef-time-after-pentecost-3-tuesday 9 ef-time-after-pentecost-3-wednesday 10 margaret-of-scotland 11 barnabas 12 john-of-san-fecundo +13 ef-time-after-pentecost-sunday-4 14 basil-the-great 15 ef-time-after-pentecost-4-tuesday 16 ef-time-after-pentecost-4-wednesday 17 gregory-barbarigo 18 ephrem-of-syria 19 julia-of-falconieri +20 ef-time-after-pentecost-sunday-5 21 aloysius-gongzaga 22 paulinus-of-nola 23 vigil-of-the-nativity-of-st-john-the-baptist 24 nativity-of-st-john-the-baptist 25 william 26 sts-john-paul +27 ef-time-after-pentecost-sunday-6 28 vigil-of-sts-peter-paul 29 sts-peter-paul 30 in-commemoratione-sancti-pauli-apostoli +.TE + +.SH +Iulius +.TS +allbox; +c c c c c c c +l l l l l l l. +Dom Lun Mar Mer Iov Ven Sab + 1 precious-blood-of-our-lord-jesus-christ 2 visitation-of-the-blessed-virgin-mary 3 irenaeus +4 ef-time-after-pentecost-sunday-7 5 anthony-mary-zaccariah 6 ef-time-after-pentecost-7-tuesday 7 sts-cyril-methodius 8 elizabeth-of-portugal 9 ef-time-after-pentecost-7-friday 10 seven-holy-brothers-and-sts-rufina-secunda +11 ef-time-after-pentecost-sunday-8 12 john-gualbert 13 ef-time-after-pentecost-8-tuesday 14 bonaventure 15 henry-the-emperor 16 ef-time-after-pentecost-8-friday 17 Officium sanctae Mariae in sabbato +18 ef-time-after-pentecost-sunday-9 19 vincent-de-paul 20 jerome-emiliani 21 laurence-of-brindisi 22 mary-magdalene 23 apollinaris 24 Officium sanctae Mariae in sabbato +25 ef-time-after-pentecost-sunday-10 26 anne-mother-of-the-blessed-virgin 27 ef-time-after-pentecost-10-tuesday 28 sts-nazarius-celsus-st-victor-i-st-innocent-i 29 martha 30 ef-time-after-pentecost-10-friday 31 ignatius-loyola +.TE + +.SH +Augustus +.TS +allbox; +c c c c c c c +l l l l l l l. +Dom Lun Mar Mer Iov Ven Sab +1 ef-time-after-pentecost-sunday-11 2 alphonsus-liguori 3 ef-time-after-pentecost-11-tuesday 4 dominic 5 dedication-of-the-basilica-of-st-mary-major 6 transfiguration-of-our-lord 7 cajetan +8 ef-time-after-pentecost-sunday-12 9 vigil-of-st-lawrence 10 lawrence 11 ef-time-after-pentecost-12-wednesday 12 clare 13 ef-time-after-pentecost-12-friday 14 vigil-of-the-assumption +15 assumption-of-the-blessed-virgin-mary 16 joachim-father-of-the-blessed-virgin 17 hyacinth 18 ef-time-after-pentecost-13-wednesday 19 john-eudes 20 bernard-of-clairvaux 21 jane-frances-de-chantal +22 ef-time-after-pentecost-sunday-14 23 philip-benizi 24 bartholomew 25 louis-ix 26 ef-time-after-pentecost-14-thursday 27 joseph-calasance 28 augustine +29 ef-time-after-pentecost-sunday-15 30 rose-of-lima 31 raymond-nonnatus +.TE + +.SH +September +.TS +allbox; +c c c c c c c +l l l l l l l. +Dom Lun Mar Mer Iov Ven Sab + 1 ef-time-after-pentecost-15-wednesday 2 stephen-of-hungary 3 pius-x 4 Officium sanctae Mariae in sabbato +5 ef-time-after-pentecost-sunday-16 6 ef-time-after-pentecost-16-monday 7 ef-time-after-pentecost-16-tuesday 8 nativity-of-the-blessed-virgin-mary 9 ef-time-after-pentecost-16-thursday 10 nicholas-of-tolentino 11 Officium sanctae Mariae in sabbato +12 ef-time-after-pentecost-sunday-17 13 ef-time-after-pentecost-17-monday 14 exaltation-of-the-holy-cross 15 seven-sorrows-of-the-blessed-virgin-mary 16 sts-cornelius-cyprian 17 ef-time-after-pentecost-17-friday 18 joseph-of-cupertino +19 ef-time-after-pentecost-sunday-18 20 ef-time-after-pentecost-18-monday 21 matthew 22 ef-september-ember-wed 23 linus 24 ef-september-ember-fri 25 ef-september-ember-sat +26 ef-time-after-pentecost-sunday-19 27 sts-cosmas-damian 28 wenceslaus 29 dedication-of-st-michael-the-archangel 30 jerome +.TE + +.SH +October +.TS +allbox; +c c c c c c c +l l l l l l l. +Dom Lun Mar Mer Iov Ven Sab + 1 ef-time-after-pentecost-19-friday 2 holy-guardian-angels +3 ef-time-after-pentecost-sunday-20 4 francis-of-assisi 5 ef-time-after-pentecost-20-tuesday 6 bruno 7 our-lady-of-the-rosary 8 bridget-of-sweden 9 john-leonardi +10 ef-time-after-pentecost-sunday-21 11 maternity-of-the-blessed-virgin-mary 12 ef-time-after-pentecost-21-tuesday 13 edward 14 callistus-i 15 teresa-of-avila 16 hedwig +17 ef-time-after-pentecost-sunday-22 18 luke-the-evangelist 19 peter-of-alcantara 20 john-cantius 21 ef-time-after-pentecost-22-thursday 22 ef-time-after-pentecost-22-friday 23 anthony-mary-claret +24 ef-time-after-pentecost-sunday-23 25 ef-time-after-pentecost-23-monday 26 ef-time-after-pentecost-23-tuesday 27 ef-time-after-pentecost-23-wednesday 28 sts-simon-jude 29 ef-time-after-pentecost-23-friday 30 Officium sanctae Mariae in sabbato +31 ef-christ-the-king +.TE + +.SH +November +.TS +allbox; +c c c c c c c +l l l l l l l. +Dom Lun Mar Mer Iov Ven Sab + 1 all-saints 2 commemoration-of-all-souls 3 ef-time-after-pentecost-24-wednesday 4 charles-borromeo 5 ef-time-after-pentecost-24-friday 6 Officium sanctae Mariae in sabbato +7 ef-time-after-epiphany-sunday-5 8 ef-time-after-pentecost-25-monday 9 dedication-of-the-archbasilica-of-our-holy-savior 10 andrew-avellino 11 martin-of-tours 12 martin-i 13 didacus +14 ef-time-after-epiphany-sunday-6 15 albert-the-great 16 gertrude-the-great 17 gregory-the-wonderworker 18 dedication-of-the-basilicas-of-sts-peter-paul 19 elizabeth-of-hungary 20 felix-of-valois +21 ef-time-after-pentecost-sunday-24 22 cecilia 23 clement-i 24 john-of-the-cross 25 catherine-of-alexandria 26 sylvester 27 Officium sanctae Mariae in sabbato +28 ef-advent-sunday-1 29 ef-advent-1-monday 30 andrew +.TE + +.SH +December +.TS +allbox; +c c c c c c c +l l l l l l l. +Dom Lun Mar Mer Iov Ven Sab + 1 ef-advent-1-wednesday 2 vivian 3 francis-xavier 4 peter-chrysologus +5 ef-advent-sunday-2 6 nicholas 7 ambrose 8 immaculate-conception-of-the-blessed-virgin-mary 9 ef-advent-2-thursday 10 ef-advent-2-friday 11 damasus-i +12 ef-advent-sunday-3 13 lucy 14 ef-advent-3-tuesday 15 ef-advent-ember-wed 16 eusebius 17 ef-advent-ember-fri 18 ef-advent-ember-sat +19 ef-advent-sunday-4 20 ef-advent-4-monday 21 thomas 22 ef-advent-4-wednesday 23 ef-advent-4-thursday 24 ef-nativity-vigil 25 ef-nativity +26 ef-christmas-sunday-0 27 john-the-evangelist 28 holy-innocents 29 ef-nativity-octave-day-5 30 ef-nativity-octave-day-6 31 ef-nativity-octave-day-7 +.TE + diff --git a/test/golden/grid-2027.tex b/test/golden/grid-2027.tex new file mode 100644 index 0000000..9a50ddd --- /dev/null +++ b/test/golden/grid-2027.tex @@ -0,0 +1,174 @@ +% colitur wall calendar -- LaTeX. flavour: latex +% Build: colitur table --year 2027 --template grid.tex > grid.tex && pdflatex grid.tex +% +% Day label falls back to the slug when the day carries no Latin name (most +% temporal days, and most sanctoral entries, which are Latin-less in the +% shipped data). The fallback is written as a name-section wrapping a plain +% var and its inverse, deliberately NOT as a single dotted-path lookup +% followed by its own inverse: a dotted lookup that misses climbs to the +% enclosing scope for the WHOLE path, and the month object also carries a +% same-named key one level up, so the naive form would render the month's +% own Latin name on every day lacking one, and never fall back at all. +% +% Every cell also carries a last flag, true on the seventh of its row: the +% engine has no unless-last construct, so the separator BETWEEN cells comes +% from data, not the template. A trailing separator on every cell would give +% eight columns for seven and pdflatex would reject the file outright. +\documentclass[10pt,landscape]{article} +\usepackage[a4paper,margin=10mm]{geometry} +\usepackage[T1]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage[table]{xcolor} +\definecolor{lwhite}{HTML}{FFFFFF}\definecolor{lred}{HTML}{FFDDDD} +\definecolor{lgreen}{HTML}{DDFFDD}\definecolor{lviolet}{HTML}{EEAAEE} +\definecolor{lrose}{HTML}{FFDDEE}\definecolor{lblack}{HTML}{DDDDDD} +\begin{document} + +\section*{ Ianuarius 2027 } +\begin{tabular}{|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|} +\hline Dom & Lun & Mar & Mer & Iov & Ven & Sab \\ \hline + & & & & & \cellcolor{lwhite}\textbf{ 1 } \footnotesize ef-circumcision & \cellcolor{lwhite}\textbf{ 2 } \footnotesize Officium sanctae Mariae in sabbato \\ \hline +\cellcolor{lwhite}\textbf{ 3 } \footnotesize Sanctissimi Nominis Iesu & \cellcolor{lwhite}\textbf{ 4 } \footnotesize ef-christmas-1-monday & \cellcolor{lwhite}\textbf{ 5 } \footnotesize ef-christmas-1-tuesday & \cellcolor{lwhite}\textbf{ 6 } \footnotesize ef-epiphany & \cellcolor{lwhite}\textbf{ 7 } \footnotesize ef-christmas-2-thursday & \cellcolor{lwhite}\textbf{ 8 } \footnotesize ef-christmas-2-friday & \cellcolor{lwhite}\textbf{ 9 } \footnotesize Officium sanctae Mariae in sabbato \\ \hline +\cellcolor{lwhite}\textbf{ 10 } \footnotesize Sanctae Familiae Iesu, Mariae, Ioseph & \cellcolor{lwhite}\textbf{ 11 } \footnotesize ef-time-after-epiphany-1-monday & \cellcolor{lwhite}\textbf{ 12 } \footnotesize ef-time-after-epiphany-1-tuesday & \cellcolor{lwhite}\textbf{ 13 } \footnotesize commemoration-of-the-baptism-of-the-lord & \cellcolor{lwhite}\textbf{ 14 } \footnotesize hilary & \cellcolor{lwhite}\textbf{ 15 } \footnotesize paul-the-first-hermit & \cellcolor{lred}\textbf{ 16 } \footnotesize marcellus-i \\ \hline +\cellcolor{lgreen}\textbf{ 17 } \footnotesize ef-time-after-epiphany-sunday-2 & \cellcolor{lgreen}\textbf{ 18 } \footnotesize ef-time-after-epiphany-2-monday & \cellcolor{lgreen}\textbf{ 19 } \footnotesize ef-time-after-epiphany-2-tuesday & \cellcolor{lred}\textbf{ 20 } \footnotesize sts-fabian-sebastian & \cellcolor{lred}\textbf{ 21 } \footnotesize agnes & \cellcolor{lred}\textbf{ 22 } \footnotesize sts-vincent-anastasius & \cellcolor{lwhite}\textbf{ 23 } \footnotesize raymond-of-pe-afort \\ \hline +\cellcolor{lviolet}\textbf{ 24 } \footnotesize ef-septuagesima-sunday-1 & \cellcolor{lwhite}\textbf{ 25 } \footnotesize conversion-of-st-paul & \cellcolor{lred}\textbf{ 26 } \footnotesize polycarp & \cellcolor{lwhite}\textbf{ 27 } \footnotesize john-chrysostom & \cellcolor{lwhite}\textbf{ 28 } \footnotesize peter-nolasco & \cellcolor{lwhite}\textbf{ 29 } \footnotesize francis-de-sales & \cellcolor{lred}\textbf{ 30 } \footnotesize martina \\ \hline +\cellcolor{lviolet}\textbf{ 31 } \footnotesize ef-septuagesima-sunday-2 & & & & & & \\ \hline + +\end{tabular} +\newpage + +\section*{ Februarius 2027 } +\begin{tabular}{|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|} +\hline Dom & Lun & Mar & Mer & Iov & Ven & Sab \\ \hline + & \cellcolor{lred}\textbf{ 1 } \footnotesize ignatius-of-antioch & \cellcolor{lwhite}\textbf{ 2 } \footnotesize purification-of-the-blessed-virgin-mary & \cellcolor{lviolet}\textbf{ 3 } \footnotesize ef-septuagesima-2-wednesday & \cellcolor{lwhite}\textbf{ 4 } \footnotesize andrew-corsini & \cellcolor{lred}\textbf{ 5 } \footnotesize agatha & \cellcolor{lwhite}\textbf{ 6 } \footnotesize titus \\ \hline +\cellcolor{lviolet}\textbf{ 7 } \footnotesize ef-septuagesima-sunday-3 & \cellcolor{lwhite}\textbf{ 8 } \footnotesize john-of-matha & \cellcolor{lwhite}\textbf{ 9 } \footnotesize cyril-of-alexandria & \cellcolor{lviolet}\textbf{ 10 } \footnotesize ef-ash-wednesday & \cellcolor{lviolet}\textbf{ 11 } \footnotesize ef-lent-after-ashes-thursday & \cellcolor{lviolet}\textbf{ 12 } \footnotesize ef-lent-after-ashes-friday & \cellcolor{lviolet}\textbf{ 13 } \footnotesize ef-lent-after-ashes-saturday \\ \hline +\cellcolor{lviolet}\textbf{ 14 } \footnotesize ef-lent-sunday-1 & \cellcolor{lviolet}\textbf{ 15 } \footnotesize ef-lent-1-monday & \cellcolor{lviolet}\textbf{ 16 } \footnotesize ef-lent-1-tuesday & \cellcolor{lviolet}\textbf{ 17 } \footnotesize ef-lent-ember-wed & \cellcolor{lviolet}\textbf{ 18 } \footnotesize ef-lent-1-thursday & \cellcolor{lviolet}\textbf{ 19 } \footnotesize ef-lent-ember-fri & \cellcolor{lviolet}\textbf{ 20 } \footnotesize ef-lent-ember-sat \\ \hline +\cellcolor{lviolet}\textbf{ 21 } \footnotesize ef-lent-sunday-2 & \cellcolor{lwhite}\textbf{ 22 } \footnotesize chair-of-st-peter & \cellcolor{lviolet}\textbf{ 23 } \footnotesize ef-lent-2-tuesday & \cellcolor{lred}\textbf{ 24 } \footnotesize matthias & \cellcolor{lviolet}\textbf{ 25 } \footnotesize ef-lent-2-thursday & \cellcolor{lviolet}\textbf{ 26 } \footnotesize ef-lent-2-friday & \cellcolor{lviolet}\textbf{ 27 } \footnotesize ef-lent-2-saturday \\ \hline +\cellcolor{lviolet}\textbf{ 28 } \footnotesize ef-lent-sunday-3 & & & & & & \\ \hline + +\end{tabular} +\newpage + +\section*{ Martius 2027 } +\begin{tabular}{|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|} +\hline Dom & Lun & Mar & Mer & Iov & Ven & Sab \\ \hline + & \cellcolor{lviolet}\textbf{ 1 } \footnotesize ef-lent-3-monday & \cellcolor{lviolet}\textbf{ 2 } \footnotesize ef-lent-3-tuesday & \cellcolor{lviolet}\textbf{ 3 } \footnotesize ef-lent-3-wednesday & \cellcolor{lviolet}\textbf{ 4 } \footnotesize ef-lent-3-thursday & \cellcolor{lviolet}\textbf{ 5 } \footnotesize ef-lent-3-friday & \cellcolor{lviolet}\textbf{ 6 } \footnotesize ef-lent-3-saturday \\ \hline +\cellcolor{lrose}\textbf{ 7 } \footnotesize ef-lent-sunday-4 & \cellcolor{lviolet}\textbf{ 8 } \footnotesize ef-lent-4-monday & \cellcolor{lviolet}\textbf{ 9 } \footnotesize ef-lent-4-tuesday & \cellcolor{lviolet}\textbf{ 10 } \footnotesize ef-lent-4-wednesday & \cellcolor{lviolet}\textbf{ 11 } \footnotesize ef-lent-4-thursday & \cellcolor{lviolet}\textbf{ 12 } \footnotesize ef-lent-4-friday & \cellcolor{lviolet}\textbf{ 13 } \footnotesize ef-lent-4-saturday \\ \hline +\cellcolor{lviolet}\textbf{ 14 } \footnotesize ef-passion-sunday & \cellcolor{lviolet}\textbf{ 15 } \footnotesize ef-passiontide-1-monday & \cellcolor{lviolet}\textbf{ 16 } \footnotesize ef-passiontide-1-tuesday & \cellcolor{lviolet}\textbf{ 17 } \footnotesize ef-passiontide-1-wednesday & \cellcolor{lviolet}\textbf{ 18 } \footnotesize ef-passiontide-1-thursday & \cellcolor{lwhite}\textbf{ 19 } \footnotesize joseph-spouse-of-the-bl-virgin-mary & \cellcolor{lviolet}\textbf{ 20 } \footnotesize ef-passiontide-1-saturday \\ \hline +\cellcolor{lviolet}\textbf{ 21 } \footnotesize ef-palm-sunday & \cellcolor{lviolet}\textbf{ 22 } \footnotesize ef-passiontide-2-monday & \cellcolor{lviolet}\textbf{ 23 } \footnotesize ef-passiontide-2-tuesday & \cellcolor{lviolet}\textbf{ 24 } \footnotesize ef-passiontide-2-wednesday & \cellcolor{lwhite}\textbf{ 25 } \footnotesize Feria V in Cena Domini & \cellcolor{lblack}\textbf{ 26 } \footnotesize Feria VI in Passione et Morte Domini & \cellcolor{lviolet}\textbf{ 27 } \footnotesize Sabbato sancto \\ \hline +\cellcolor{lwhite}\textbf{ 28 } \footnotesize ef-easter-sunday & \cellcolor{lwhite}\textbf{ 29 } \footnotesize ef-easter-1-monday & \cellcolor{lwhite}\textbf{ 30 } \footnotesize ef-easter-1-tuesday & \cellcolor{lwhite}\textbf{ 31 } \footnotesize ef-easter-1-wednesday & & & \\ \hline + +\end{tabular} +\newpage + +\section*{ Aprilis 2027 } +\begin{tabular}{|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|} +\hline Dom & Lun & Mar & Mer & Iov & Ven & Sab \\ \hline + & & & & \cellcolor{lwhite}\textbf{ 1 } \footnotesize ef-easter-1-thursday & \cellcolor{lwhite}\textbf{ 2 } \footnotesize ef-easter-1-friday & \cellcolor{lwhite}\textbf{ 3 } \footnotesize ef-easter-1-saturday \\ \hline +\cellcolor{lwhite}\textbf{ 4 } \footnotesize ef-low-sunday & \cellcolor{lwhite}\textbf{ 5 } \footnotesize annunciation-of-the-blessed-virgin-mary & \cellcolor{lwhite}\textbf{ 6 } \footnotesize ef-easter-2-tuesday & \cellcolor{lwhite}\textbf{ 7 } \footnotesize ef-easter-2-wednesday & \cellcolor{lwhite}\textbf{ 8 } \footnotesize ef-easter-2-thursday & \cellcolor{lwhite}\textbf{ 9 } \footnotesize ef-easter-2-friday & \cellcolor{lwhite}\textbf{ 10 } \footnotesize Officium sanctae Mariae in sabbato \\ \hline +\cellcolor{lwhite}\textbf{ 11 } \footnotesize ef-easter-sunday-3 & \cellcolor{lwhite}\textbf{ 12 } \footnotesize ef-easter-3-monday & \cellcolor{lred}\textbf{ 13 } \footnotesize hermenegild & \cellcolor{lred}\textbf{ 14 } \footnotesize justin & \cellcolor{lwhite}\textbf{ 15 } \footnotesize ef-easter-3-thursday & \cellcolor{lwhite}\textbf{ 16 } \footnotesize ef-easter-3-friday & \cellcolor{lwhite}\textbf{ 17 } \footnotesize Officium sanctae Mariae in sabbato \\ \hline +\cellcolor{lwhite}\textbf{ 18 } \footnotesize ef-easter-sunday-4 & \cellcolor{lwhite}\textbf{ 19 } \footnotesize ef-easter-4-monday & \cellcolor{lwhite}\textbf{ 20 } \footnotesize ef-easter-4-tuesday & \cellcolor{lwhite}\textbf{ 21 } \footnotesize anselm & \cellcolor{lred}\textbf{ 22 } \footnotesize sts-soter-caius & \cellcolor{lwhite}\textbf{ 23 } \footnotesize ef-easter-4-friday & \cellcolor{lred}\textbf{ 24 } \footnotesize fidelis-of-sigmaringen \\ \hline +\cellcolor{lwhite}\textbf{ 25 } \footnotesize ef-easter-sunday-5 & \cellcolor{lred}\textbf{ 26 } \footnotesize sts-cletus-marcellinus & \cellcolor{lwhite}\textbf{ 27 } \footnotesize peter-canisius & \cellcolor{lwhite}\textbf{ 28 } \footnotesize paul-of-the-cross & \cellcolor{lred}\textbf{ 29 } \footnotesize peter-of-verona & \cellcolor{lwhite}\textbf{ 30 } \footnotesize catherine-of-siena & \\ \hline + +\end{tabular} +\newpage + +\section*{ Maius 2027 } +\begin{tabular}{|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|} +\hline Dom & Lun & Mar & Mer & Iov & Ven & Sab \\ \hline + & & & & & & \cellcolor{lwhite}\textbf{ 1 } \footnotesize joseph-the-workman \\ \hline +\cellcolor{lwhite}\textbf{ 2 } \footnotesize ef-easter-sunday-6 & \cellcolor{lviolet}\textbf{ 3 } \footnotesize ef-rogation-monday & \cellcolor{lwhite}\textbf{ 4 } \footnotesize monica & \cellcolor{lwhite}\textbf{ 5 } \footnotesize ef-ascension-vigil & \cellcolor{lwhite}\textbf{ 6 } \footnotesize ef-ascension & \cellcolor{lred}\textbf{ 7 } \footnotesize stanislaus & \cellcolor{lwhite}\textbf{ 8 } \footnotesize Officium sanctae Mariae in sabbato \\ \hline +\cellcolor{lwhite}\textbf{ 9 } \footnotesize ef-easter-sunday-7 & \cellcolor{lwhite}\textbf{ 10 } \footnotesize antoninus & \cellcolor{lred}\textbf{ 11 } \footnotesize sts-philip-james & \cellcolor{lred}\textbf{ 12 } \footnotesize sts-nereus-achilleus-domitilla-pancras & \cellcolor{lwhite}\textbf{ 13 } \footnotesize robert-bellarmine & \cellcolor{lwhite}\textbf{ 14 } \footnotesize ef-easter-7-friday & \cellcolor{lred}\textbf{ 15 } \footnotesize ef-pentecost-vigil \\ \hline +\cellcolor{lred}\textbf{ 16 } \footnotesize ef-pentecost & \cellcolor{lred}\textbf{ 17 } \footnotesize ef-easter-8-monday & \cellcolor{lred}\textbf{ 18 } \footnotesize ef-easter-8-tuesday & \cellcolor{lred}\textbf{ 19 } \footnotesize ef-pentecost-ember-wed & \cellcolor{lred}\textbf{ 20 } \footnotesize ef-easter-8-thursday & \cellcolor{lred}\textbf{ 21 } \footnotesize ef-pentecost-ember-fri & \cellcolor{lred}\textbf{ 22 } \footnotesize ef-pentecost-ember-sat \\ \hline +\cellcolor{lwhite}\textbf{ 23 } \footnotesize ef-trinity & \cellcolor{lgreen}\textbf{ 24 } \footnotesize ef-time-after-pentecost-1-monday & \cellcolor{lwhite}\textbf{ 25 } \footnotesize gregory-vii & \cellcolor{lwhite}\textbf{ 26 } \footnotesize philip-neri & \cellcolor{lwhite}\textbf{ 27 } \footnotesize ef-corpus-christi & \cellcolor{lwhite}\textbf{ 28 } \footnotesize augustine-of-canterbury & \cellcolor{lwhite}\textbf{ 29 } \footnotesize mary-magdalene-de-pazzi \\ \hline +\cellcolor{lgreen}\textbf{ 30 } \footnotesize ef-time-after-pentecost-sunday-2 & \cellcolor{lwhite}\textbf{ 31 } \footnotesize queenship-of-the-blessed-virgin-mary & & & & & \\ \hline + +\end{tabular} +\newpage + +\section*{ Iunius 2027 } +\begin{tabular}{|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|} +\hline Dom & Lun & Mar & Mer & Iov & Ven & Sab \\ \hline + & & \cellcolor{lwhite}\textbf{ 1 } \footnotesize angela-merici & \cellcolor{lgreen}\textbf{ 2 } \footnotesize ef-time-after-pentecost-2-wednesday & \cellcolor{lgreen}\textbf{ 3 } \footnotesize ef-time-after-pentecost-2-thursday & \cellcolor{lwhite}\textbf{ 4 } \footnotesize ef-sacred-heart & \cellcolor{lred}\textbf{ 5 } \footnotesize boniface \\ \hline +\cellcolor{lgreen}\textbf{ 6 } \footnotesize ef-time-after-pentecost-sunday-3 & \cellcolor{lgreen}\textbf{ 7 } \footnotesize ef-time-after-pentecost-3-monday & \cellcolor{lgreen}\textbf{ 8 } \footnotesize ef-time-after-pentecost-3-tuesday & \cellcolor{lgreen}\textbf{ 9 } \footnotesize ef-time-after-pentecost-3-wednesday & \cellcolor{lwhite}\textbf{ 10 } \footnotesize margaret-of-scotland & \cellcolor{lred}\textbf{ 11 } \footnotesize barnabas & \cellcolor{lwhite}\textbf{ 12 } \footnotesize john-of-san-fecundo \\ \hline +\cellcolor{lgreen}\textbf{ 13 } \footnotesize ef-time-after-pentecost-sunday-4 & \cellcolor{lwhite}\textbf{ 14 } \footnotesize basil-the-great & \cellcolor{lgreen}\textbf{ 15 } \footnotesize ef-time-after-pentecost-4-tuesday & \cellcolor{lgreen}\textbf{ 16 } \footnotesize ef-time-after-pentecost-4-wednesday & \cellcolor{lwhite}\textbf{ 17 } \footnotesize gregory-barbarigo & \cellcolor{lwhite}\textbf{ 18 } \footnotesize ephrem-of-syria & \cellcolor{lwhite}\textbf{ 19 } \footnotesize julia-of-falconieri \\ \hline +\cellcolor{lgreen}\textbf{ 20 } \footnotesize ef-time-after-pentecost-sunday-5 & \cellcolor{lwhite}\textbf{ 21 } \footnotesize aloysius-gongzaga & \cellcolor{lwhite}\textbf{ 22 } \footnotesize paulinus-of-nola & \cellcolor{lviolet}\textbf{ 23 } \footnotesize vigil-of-the-nativity-of-st-john-the-baptist & \cellcolor{lwhite}\textbf{ 24 } \footnotesize nativity-of-st-john-the-baptist & \cellcolor{lwhite}\textbf{ 25 } \footnotesize william & \cellcolor{lred}\textbf{ 26 } \footnotesize sts-john-paul \\ \hline +\cellcolor{lgreen}\textbf{ 27 } \footnotesize ef-time-after-pentecost-sunday-6 & \cellcolor{lviolet}\textbf{ 28 } \footnotesize vigil-of-sts-peter-paul & \cellcolor{lred}\textbf{ 29 } \footnotesize sts-peter-paul & \cellcolor{lred}\textbf{ 30 } \footnotesize in-commemoratione-sancti-pauli-apostoli & & & \\ \hline + +\end{tabular} +\newpage + +\section*{ Iulius 2027 } +\begin{tabular}{|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|} +\hline Dom & Lun & Mar & Mer & Iov & Ven & Sab \\ \hline + & & & & \cellcolor{lred}\textbf{ 1 } \footnotesize precious-blood-of-our-lord-jesus-christ & \cellcolor{lwhite}\textbf{ 2 } \footnotesize visitation-of-the-blessed-virgin-mary & \cellcolor{lred}\textbf{ 3 } \footnotesize irenaeus \\ \hline +\cellcolor{lgreen}\textbf{ 4 } \footnotesize ef-time-after-pentecost-sunday-7 & \cellcolor{lwhite}\textbf{ 5 } \footnotesize anthony-mary-zaccariah & \cellcolor{lgreen}\textbf{ 6 } \footnotesize ef-time-after-pentecost-7-tuesday & \cellcolor{lwhite}\textbf{ 7 } \footnotesize sts-cyril-methodius & \cellcolor{lwhite}\textbf{ 8 } \footnotesize elizabeth-of-portugal & \cellcolor{lgreen}\textbf{ 9 } \footnotesize ef-time-after-pentecost-7-friday & \cellcolor{lred}\textbf{ 10 } \footnotesize seven-holy-brothers-and-sts-rufina-secunda \\ \hline +\cellcolor{lgreen}\textbf{ 11 } \footnotesize ef-time-after-pentecost-sunday-8 & \cellcolor{lwhite}\textbf{ 12 } \footnotesize john-gualbert & \cellcolor{lgreen}\textbf{ 13 } \footnotesize ef-time-after-pentecost-8-tuesday & \cellcolor{lwhite}\textbf{ 14 } \footnotesize bonaventure & \cellcolor{lwhite}\textbf{ 15 } \footnotesize henry-the-emperor & \cellcolor{lgreen}\textbf{ 16 } \footnotesize ef-time-after-pentecost-8-friday & \cellcolor{lwhite}\textbf{ 17 } \footnotesize Officium sanctae Mariae in sabbato \\ \hline +\cellcolor{lgreen}\textbf{ 18 } \footnotesize ef-time-after-pentecost-sunday-9 & \cellcolor{lwhite}\textbf{ 19 } \footnotesize vincent-de-paul & \cellcolor{lwhite}\textbf{ 20 } \footnotesize jerome-emiliani & \cellcolor{lwhite}\textbf{ 21 } \footnotesize laurence-of-brindisi & \cellcolor{lwhite}\textbf{ 22 } \footnotesize mary-magdalene & \cellcolor{lred}\textbf{ 23 } \footnotesize apollinaris & \cellcolor{lwhite}\textbf{ 24 } \footnotesize Officium sanctae Mariae in sabbato \\ \hline +\cellcolor{lgreen}\textbf{ 25 } \footnotesize ef-time-after-pentecost-sunday-10 & \cellcolor{lwhite}\textbf{ 26 } \footnotesize anne-mother-of-the-blessed-virgin & \cellcolor{lgreen}\textbf{ 27 } \footnotesize ef-time-after-pentecost-10-tuesday & \cellcolor{lred}\textbf{ 28 } \footnotesize sts-nazarius-celsus-st-victor-i-st-innocent-i & \cellcolor{lwhite}\textbf{ 29 } \footnotesize martha & \cellcolor{lgreen}\textbf{ 30 } \footnotesize ef-time-after-pentecost-10-friday & \cellcolor{lwhite}\textbf{ 31 } \footnotesize ignatius-loyola \\ \hline + +\end{tabular} +\newpage + +\section*{ Augustus 2027 } +\begin{tabular}{|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|} +\hline Dom & Lun & Mar & Mer & Iov & Ven & Sab \\ \hline +\cellcolor{lgreen}\textbf{ 1 } \footnotesize ef-time-after-pentecost-sunday-11 & \cellcolor{lwhite}\textbf{ 2 } \footnotesize alphonsus-liguori & \cellcolor{lgreen}\textbf{ 3 } \footnotesize ef-time-after-pentecost-11-tuesday & \cellcolor{lwhite}\textbf{ 4 } \footnotesize dominic & \cellcolor{lwhite}\textbf{ 5 } \footnotesize dedication-of-the-basilica-of-st-mary-major & \cellcolor{lwhite}\textbf{ 6 } \footnotesize transfiguration-of-our-lord & \cellcolor{lwhite}\textbf{ 7 } \footnotesize cajetan \\ \hline +\cellcolor{lgreen}\textbf{ 8 } \footnotesize ef-time-after-pentecost-sunday-12 & \cellcolor{lviolet}\textbf{ 9 } \footnotesize vigil-of-st-lawrence & \cellcolor{lred}\textbf{ 10 } \footnotesize lawrence & \cellcolor{lgreen}\textbf{ 11 } \footnotesize ef-time-after-pentecost-12-wednesday & \cellcolor{lwhite}\textbf{ 12 } \footnotesize clare & \cellcolor{lgreen}\textbf{ 13 } \footnotesize ef-time-after-pentecost-12-friday & \cellcolor{lviolet}\textbf{ 14 } \footnotesize vigil-of-the-assumption \\ \hline +\cellcolor{lwhite}\textbf{ 15 } \footnotesize assumption-of-the-blessed-virgin-mary & \cellcolor{lwhite}\textbf{ 16 } \footnotesize joachim-father-of-the-blessed-virgin & \cellcolor{lwhite}\textbf{ 17 } \footnotesize hyacinth & \cellcolor{lgreen}\textbf{ 18 } \footnotesize ef-time-after-pentecost-13-wednesday & \cellcolor{lwhite}\textbf{ 19 } \footnotesize john-eudes & \cellcolor{lwhite}\textbf{ 20 } \footnotesize bernard-of-clairvaux & \cellcolor{lwhite}\textbf{ 21 } \footnotesize jane-frances-de-chantal \\ \hline +\cellcolor{lgreen}\textbf{ 22 } \footnotesize ef-time-after-pentecost-sunday-14 & \cellcolor{lwhite}\textbf{ 23 } \footnotesize philip-benizi & \cellcolor{lred}\textbf{ 24 } \footnotesize bartholomew & \cellcolor{lwhite}\textbf{ 25 } \footnotesize louis-ix & \cellcolor{lgreen}\textbf{ 26 } \footnotesize ef-time-after-pentecost-14-thursday & \cellcolor{lwhite}\textbf{ 27 } \footnotesize joseph-calasance & \cellcolor{lwhite}\textbf{ 28 } \footnotesize augustine \\ \hline +\cellcolor{lgreen}\textbf{ 29 } \footnotesize ef-time-after-pentecost-sunday-15 & \cellcolor{lwhite}\textbf{ 30 } \footnotesize rose-of-lima & \cellcolor{lwhite}\textbf{ 31 } \footnotesize raymond-nonnatus & & & & \\ \hline + +\end{tabular} +\newpage + +\section*{ September 2027 } +\begin{tabular}{|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|} +\hline Dom & Lun & Mar & Mer & Iov & Ven & Sab \\ \hline + & & & \cellcolor{lgreen}\textbf{ 1 } \footnotesize ef-time-after-pentecost-15-wednesday & \cellcolor{lwhite}\textbf{ 2 } \footnotesize stephen-of-hungary & \cellcolor{lwhite}\textbf{ 3 } \footnotesize pius-x & \cellcolor{lwhite}\textbf{ 4 } \footnotesize Officium sanctae Mariae in sabbato \\ \hline +\cellcolor{lgreen}\textbf{ 5 } \footnotesize ef-time-after-pentecost-sunday-16 & \cellcolor{lgreen}\textbf{ 6 } \footnotesize ef-time-after-pentecost-16-monday & \cellcolor{lgreen}\textbf{ 7 } \footnotesize ef-time-after-pentecost-16-tuesday & \cellcolor{lwhite}\textbf{ 8 } \footnotesize nativity-of-the-blessed-virgin-mary & \cellcolor{lgreen}\textbf{ 9 } \footnotesize ef-time-after-pentecost-16-thursday & \cellcolor{lwhite}\textbf{ 10 } \footnotesize nicholas-of-tolentino & \cellcolor{lwhite}\textbf{ 11 } \footnotesize Officium sanctae Mariae in sabbato \\ \hline +\cellcolor{lgreen}\textbf{ 12 } \footnotesize ef-time-after-pentecost-sunday-17 & \cellcolor{lgreen}\textbf{ 13 } \footnotesize ef-time-after-pentecost-17-monday & \cellcolor{lred}\textbf{ 14 } \footnotesize exaltation-of-the-holy-cross & \cellcolor{lwhite}\textbf{ 15 } \footnotesize seven-sorrows-of-the-blessed-virgin-mary & \cellcolor{lred}\textbf{ 16 } \footnotesize sts-cornelius-cyprian & \cellcolor{lgreen}\textbf{ 17 } \footnotesize ef-time-after-pentecost-17-friday & \cellcolor{lwhite}\textbf{ 18 } \footnotesize joseph-of-cupertino \\ \hline +\cellcolor{lgreen}\textbf{ 19 } \footnotesize ef-time-after-pentecost-sunday-18 & \cellcolor{lgreen}\textbf{ 20 } \footnotesize ef-time-after-pentecost-18-monday & \cellcolor{lred}\textbf{ 21 } \footnotesize matthew & \cellcolor{lviolet}\textbf{ 22 } \footnotesize ef-september-ember-wed & \cellcolor{lred}\textbf{ 23 } \footnotesize linus & \cellcolor{lviolet}\textbf{ 24 } \footnotesize ef-september-ember-fri & \cellcolor{lviolet}\textbf{ 25 } \footnotesize ef-september-ember-sat \\ \hline +\cellcolor{lgreen}\textbf{ 26 } \footnotesize ef-time-after-pentecost-sunday-19 & \cellcolor{lred}\textbf{ 27 } \footnotesize sts-cosmas-damian & \cellcolor{lred}\textbf{ 28 } \footnotesize wenceslaus & \cellcolor{lwhite}\textbf{ 29 } \footnotesize dedication-of-st-michael-the-archangel & \cellcolor{lwhite}\textbf{ 30 } \footnotesize jerome & & \\ \hline + +\end{tabular} +\newpage + +\section*{ October 2027 } +\begin{tabular}{|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|} +\hline Dom & Lun & Mar & Mer & Iov & Ven & Sab \\ \hline + & & & & & \cellcolor{lgreen}\textbf{ 1 } \footnotesize ef-time-after-pentecost-19-friday & \cellcolor{lwhite}\textbf{ 2 } \footnotesize holy-guardian-angels \\ \hline +\cellcolor{lgreen}\textbf{ 3 } \footnotesize ef-time-after-pentecost-sunday-20 & \cellcolor{lwhite}\textbf{ 4 } \footnotesize francis-of-assisi & \cellcolor{lgreen}\textbf{ 5 } \footnotesize ef-time-after-pentecost-20-tuesday & \cellcolor{lwhite}\textbf{ 6 } \footnotesize bruno & \cellcolor{lwhite}\textbf{ 7 } \footnotesize our-lady-of-the-rosary & \cellcolor{lwhite}\textbf{ 8 } \footnotesize bridget-of-sweden & \cellcolor{lwhite}\textbf{ 9 } \footnotesize john-leonardi \\ \hline +\cellcolor{lgreen}\textbf{ 10 } \footnotesize ef-time-after-pentecost-sunday-21 & \cellcolor{lwhite}\textbf{ 11 } \footnotesize maternity-of-the-blessed-virgin-mary & \cellcolor{lgreen}\textbf{ 12 } \footnotesize ef-time-after-pentecost-21-tuesday & \cellcolor{lwhite}\textbf{ 13 } \footnotesize edward & \cellcolor{lred}\textbf{ 14 } \footnotesize callistus-i & \cellcolor{lwhite}\textbf{ 15 } \footnotesize teresa-of-avila & \cellcolor{lwhite}\textbf{ 16 } \footnotesize hedwig \\ \hline +\cellcolor{lgreen}\textbf{ 17 } \footnotesize ef-time-after-pentecost-sunday-22 & \cellcolor{lred}\textbf{ 18 } \footnotesize luke-the-evangelist & \cellcolor{lwhite}\textbf{ 19 } \footnotesize peter-of-alcantara & \cellcolor{lwhite}\textbf{ 20 } \footnotesize john-cantius & \cellcolor{lgreen}\textbf{ 21 } \footnotesize ef-time-after-pentecost-22-thursday & \cellcolor{lgreen}\textbf{ 22 } \footnotesize ef-time-after-pentecost-22-friday & \cellcolor{lwhite}\textbf{ 23 } \footnotesize anthony-mary-claret \\ \hline +\cellcolor{lgreen}\textbf{ 24 } \footnotesize ef-time-after-pentecost-sunday-23 & \cellcolor{lgreen}\textbf{ 25 } \footnotesize ef-time-after-pentecost-23-monday & \cellcolor{lgreen}\textbf{ 26 } \footnotesize ef-time-after-pentecost-23-tuesday & \cellcolor{lgreen}\textbf{ 27 } \footnotesize ef-time-after-pentecost-23-wednesday & \cellcolor{lred}\textbf{ 28 } \footnotesize sts-simon-jude & \cellcolor{lgreen}\textbf{ 29 } \footnotesize ef-time-after-pentecost-23-friday & \cellcolor{lwhite}\textbf{ 30 } \footnotesize Officium sanctae Mariae in sabbato \\ \hline +\cellcolor{lwhite}\textbf{ 31 } \footnotesize ef-christ-the-king & & & & & & \\ \hline + +\end{tabular} +\newpage + +\section*{ November 2027 } +\begin{tabular}{|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|} +\hline Dom & Lun & Mar & Mer & Iov & Ven & Sab \\ \hline + & \cellcolor{lwhite}\textbf{ 1 } \footnotesize all-saints & \cellcolor{lblack}\textbf{ 2 } \footnotesize commemoration-of-all-souls & \cellcolor{lgreen}\textbf{ 3 } \footnotesize ef-time-after-pentecost-24-wednesday & \cellcolor{lwhite}\textbf{ 4 } \footnotesize charles-borromeo & \cellcolor{lgreen}\textbf{ 5 } \footnotesize ef-time-after-pentecost-24-friday & \cellcolor{lwhite}\textbf{ 6 } \footnotesize Officium sanctae Mariae in sabbato \\ \hline +\cellcolor{lgreen}\textbf{ 7 } \footnotesize ef-time-after-epiphany-sunday-5 & \cellcolor{lgreen}\textbf{ 8 } \footnotesize ef-time-after-pentecost-25-monday & \cellcolor{lwhite}\textbf{ 9 } \footnotesize dedication-of-the-archbasilica-of-our-holy-savior & \cellcolor{lwhite}\textbf{ 10 } \footnotesize andrew-avellino & \cellcolor{lwhite}\textbf{ 11 } \footnotesize martin-of-tours & \cellcolor{lred}\textbf{ 12 } \footnotesize martin-i & \cellcolor{lwhite}\textbf{ 13 } \footnotesize didacus \\ \hline +\cellcolor{lgreen}\textbf{ 14 } \footnotesize ef-time-after-epiphany-sunday-6 & \cellcolor{lwhite}\textbf{ 15 } \footnotesize albert-the-great & \cellcolor{lwhite}\textbf{ 16 } \footnotesize gertrude-the-great & \cellcolor{lwhite}\textbf{ 17 } \footnotesize gregory-the-wonderworker & \cellcolor{lwhite}\textbf{ 18 } \footnotesize dedication-of-the-basilicas-of-sts-peter-paul & \cellcolor{lwhite}\textbf{ 19 } \footnotesize elizabeth-of-hungary & \cellcolor{lwhite}\textbf{ 20 } \footnotesize felix-of-valois \\ \hline +\cellcolor{lgreen}\textbf{ 21 } \footnotesize ef-time-after-pentecost-sunday-24 & \cellcolor{lred}\textbf{ 22 } \footnotesize cecilia & \cellcolor{lred}\textbf{ 23 } \footnotesize clement-i & \cellcolor{lwhite}\textbf{ 24 } \footnotesize john-of-the-cross & \cellcolor{lred}\textbf{ 25 } \footnotesize catherine-of-alexandria & \cellcolor{lwhite}\textbf{ 26 } \footnotesize sylvester & \cellcolor{lwhite}\textbf{ 27 } \footnotesize Officium sanctae Mariae in sabbato \\ \hline +\cellcolor{lviolet}\textbf{ 28 } \footnotesize ef-advent-sunday-1 & \cellcolor{lviolet}\textbf{ 29 } \footnotesize ef-advent-1-monday & \cellcolor{lred}\textbf{ 30 } \footnotesize andrew & & & & \\ \hline + +\end{tabular} +\newpage + +\section*{ December 2027 } +\begin{tabular}{|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|p{2.6cm}|} +\hline Dom & Lun & Mar & Mer & Iov & Ven & Sab \\ \hline + & & & \cellcolor{lviolet}\textbf{ 1 } \footnotesize ef-advent-1-wednesday & \cellcolor{lred}\textbf{ 2 } \footnotesize vivian & \cellcolor{lwhite}\textbf{ 3 } \footnotesize francis-xavier & \cellcolor{lwhite}\textbf{ 4 } \footnotesize peter-chrysologus \\ \hline +\cellcolor{lviolet}\textbf{ 5 } \footnotesize ef-advent-sunday-2 & \cellcolor{lwhite}\textbf{ 6 } \footnotesize nicholas & \cellcolor{lwhite}\textbf{ 7 } \footnotesize ambrose & \cellcolor{lwhite}\textbf{ 8 } \footnotesize immaculate-conception-of-the-blessed-virgin-mary & \cellcolor{lviolet}\textbf{ 9 } \footnotesize ef-advent-2-thursday & \cellcolor{lviolet}\textbf{ 10 } \footnotesize ef-advent-2-friday & \cellcolor{lwhite}\textbf{ 11 } \footnotesize damasus-i \\ \hline +\cellcolor{lrose}\textbf{ 12 } \footnotesize ef-advent-sunday-3 & \cellcolor{lred}\textbf{ 13 } \footnotesize lucy & \cellcolor{lviolet}\textbf{ 14 } \footnotesize ef-advent-3-tuesday & \cellcolor{lviolet}\textbf{ 15 } \footnotesize ef-advent-ember-wed & \cellcolor{lred}\textbf{ 16 } \footnotesize eusebius & \cellcolor{lviolet}\textbf{ 17 } \footnotesize ef-advent-ember-fri & \cellcolor{lviolet}\textbf{ 18 } \footnotesize ef-advent-ember-sat \\ \hline +\cellcolor{lviolet}\textbf{ 19 } \footnotesize ef-advent-sunday-4 & \cellcolor{lviolet}\textbf{ 20 } \footnotesize ef-advent-4-monday & \cellcolor{lred}\textbf{ 21 } \footnotesize thomas & \cellcolor{lviolet}\textbf{ 22 } \footnotesize ef-advent-4-wednesday & \cellcolor{lviolet}\textbf{ 23 } \footnotesize ef-advent-4-thursday & \cellcolor{lviolet}\textbf{ 24 } \footnotesize ef-nativity-vigil & \cellcolor{lwhite}\textbf{ 25 } \footnotesize ef-nativity \\ \hline +\cellcolor{lwhite}\textbf{ 26 } \footnotesize ef-christmas-sunday-0 & \cellcolor{lwhite}\textbf{ 27 } \footnotesize john-the-evangelist & \cellcolor{lred}\textbf{ 28 } \footnotesize holy-innocents & \cellcolor{lwhite}\textbf{ 29 } \footnotesize ef-nativity-octave-day-5 & \cellcolor{lwhite}\textbf{ 30 } \footnotesize ef-nativity-octave-day-6 & \cellcolor{lwhite}\textbf{ 31 } \footnotesize ef-nativity-octave-day-7 & \\ \hline + +\end{tabular} +\newpage + +\end{document} diff --git a/test/test_render_golden.ml b/test/test_render_golden.ml index 913513a..6340109 100644 --- a/test/test_render_golden.ml +++ b/test/test_render_golden.ml @@ -33,7 +33,9 @@ let check_golden name = let want = read ("golden/" ^ Filename.remove_extension name ^ "-2027" ^ Filename.extension name) in Alcotest.(check string) name want got -let cases = [ "ordo.tex"; "ordo.ms"; "ordo.html"; "ordo.adoc"; "ordo.md"; "ordo.txt" ] +let cases = + [ "ordo.tex"; "ordo.ms"; "ordo.html"; "ordo.adoc"; "ordo.md"; "ordo.txt"; + "grid.tex"; "grid.ms"; "grid.html" ] let suite = ( "Render/golden", -- cgit v1.3 From 2760d43d695ba08fc33f65357590675707b6570d Mon Sep 17 00:00:00 2001 From: Lukasz Kasprzak Date: Wed, 19 Aug 2026 10:18:24 +0200 Subject: feat(cli): colitur publish -- the static tree Writes ef/.{json,csv,xml,ics}, one JSON per day, the schema and a generated index. That tree is the API: any web server or git repo serves it, and nothing runs at request time. Deterministic: publishing twice is byte-identical, asserted in cli.t. That is what makes publishing into a git repo safe -- the diff shows only real change, and you review it before pushing. Non-destructive: a manifest records exactly the files this tool wrote, so --prune can only remove files a previous run created. A file you put in the output directory yourself is never touched, with or without --prune. Asserted in both directions. Pruning a stale file also removes any directory it leaves empty behind it (e.g. an old year's own ef// tree), stopping at --out itself -- without this, a pruned year's own directory would survive empty and test -d would still see it. schema/day-v1.json is resolved the same prefix-relative way data/ef's own sexp files are (installed vs build-tree, probed rather than assumed), never from cwd, and a missing schema fails with one line on stderr before anything is written rather than emitting an empty file. Needed schema/day-v1.json wired into the root dune file's default alias and into test/dune's cram deps -- unlike data/ and templates/, nothing made dune mirror schema/ into the build tree before this. unix is added to bin/dune's libraries for mkdir_p; it ships with the compiler, so colitur.opam and dune-project are unchanged. --- bin/dune | 6 +- bin/main.ml | 269 ++++++++++++++++++++++++++++++++++- dune | 14 +- man/colitur.1 | 157 ++++++++++++++++++++- test/cli.t | 442 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ test/dune | 8 +- 6 files changed, 888 insertions(+), 8 deletions(-) (limited to 'test/dune') diff --git a/bin/dune b/bin/dune index 376fe70..856dafe 100644 --- a/bin/dune +++ b/bin/dune @@ -2,4 +2,8 @@ (name main) (public_name colitur) (package colitur) - (libraries colitur_kernel rite_ef colitur_render)) + ; [unix] ships with the OCaml compiler -- it is not a new entry in + ; colitur.opam's frozen depends, only a new library this executable links + ; against. Used by Task 12's [mkdir_p] (colitur publish, recursive + ; directory creation) and nowhere else. + (libraries colitur_kernel rite_ef colitur_render unix)) diff --git a/bin/main.ml b/bin/main.ml index e916cbe..1669a47 100644 --- a/bin/main.ml +++ b/bin/main.ml @@ -516,6 +516,183 @@ let table_report ~template ~flavour_opt ~overlays y = exit 2 | Ok out -> print_string out) +(* Task 12: `colitur publish` -- writes the static tree that IS this + project's API: a set of files any web server or git repo can serve as-is, + computed once, with nothing running at request time. + + Two properties matter more than anything else here: + + DETERMINISTIC -- publishing the same year range twice must produce a + byte-identical tree. That is what makes publishing into a git repo safe: + `git status` shows only genuine change, and a human reviews a real diff + before pushing. Nothing below reads a wall clock; [dtstamp] is threaded + through as a plain parameter all the way to + {!Colitur_render.Emit_ics.year}, exactly as `emit --format ics` already + requires (see that command's own comment above). + + NON-DESTRUCTIVE -- publish writes only files it owns, names every one of + them in a manifest ([.colitur-manifest], one relative path per line, + itself never subject to pruning), and [--prune] removes only entries + THAT MANIFEST lists which this run did not rewrite. A file the caller put + in the output directory themselves is never in the manifest, so it is + never touched, with or without [--prune] -- asserted in both directions + in test/cli.t. *) + +let rec mkdir_p path = + if path <> "" && path <> "/" && not (Sys.file_exists path) then begin + mkdir_p (Filename.dirname path); + try Unix.mkdir path 0o755 with Unix.Unix_error (Unix.EEXIST, _, _) -> () + end + +let write_file path contents = + mkdir_p (Filename.dirname path); + let oc = open_out_bin path in + output_string oc contents; + close_out oc + +let manifest_name = ".colitur-manifest" + +(* [read_file] rather than a second hand-rolled reader -- see its own + comment above for why the whole read, not only the open, is guarded. A + missing manifest (the very first publish into a fresh directory) is not + an error here: it just means there is nothing yet to prune against. *) +let read_manifest out = + match read_file (Filename.concat out manifest_name) with + | Error _ -> [] + | Ok contents -> String.split_on_char '\n' contents |> List.filter (fun l -> l <> "") + +(* [--prune] deletes the FILES a stale manifest entry names, but that alone + can leave their parent directories (ef///, then ef//) + empty behind them -- and an empty directory still makes `test -d + out/ef/` true, which is exactly the check a caller uses to confirm + an old year is gone. Walk upward from each deleted file's own directory, + removing it while it is empty, stopping at (never including) [out] + itself: [out] is the caller's own directory, never ours to remove, even + when it is empty. *) +let rec prune_empty_dirs ~out dir = + if dir <> out && String.length dir > String.length out && Sys.file_exists dir then + match Sys.readdir dir with + | [||] -> + (try Unix.rmdir dir with Unix.Unix_error _ -> ()); + prune_empty_dirs ~out (Filename.dirname dir) + | _ -> () + | exception Sys_error _ -> () + +(* schema/day-v1.json is resolved the same prefix-relative way [data_dir] + above resolves data/ef/*.sexp -- NOT from the process's own cwd, which + would break an installed binary invoked from an arbitrary directory. Two + candidates, installed then build-tree, the same shape as [data_dir]; a + candidate counts only if the file is actually there. No COLITUR_DATA_DIR + override here: that variable's whole contract is about the directory + holding sanctoral.sexp, and schema/ is not nested inside it. + + The installed candidate assumes schema/ lands at + /share/colitur/schema/day-v1.json, mirroring data/dune's own ef/ + layout. Adding that install rule is explicitly Task 13's job, not this + one -- this function only has to be ready to find the file once the rule + exists, which is why it is PROBED rather than assumed, exactly like + [data_dir]'s own installed candidate. *) +let schema_path () = + let prefix = Filename.dirname (Filename.dirname Sys.executable_name) in + let installed = + List.fold_left Filename.concat prefix [ "share"; "colitur"; "schema"; "day-v1.json" ] + in + let build_tree = List.fold_left Filename.concat prefix [ "schema"; "day-v1.json" ] in + if Sys.file_exists installed then Some installed else if Sys.file_exists build_tree then Some build_tree else None + +(* An ordinary OCaml string, NOT a template: it describes the TREE, not the + calendar, so it has no business in the template vocabulary. *) +let index_html ~from_y ~to_y = + let b = Buffer.create 4096 in + Buffer.add_string b + "\n\n\ + colitur\n\ + \n\ +

colitur

\n\ +

Liturgical calendar of the 1962 Missale Romanum. Citations only \xe2\x80\x94 never scripture text.

\n"; + Buffer.add_string b "

Subscribe

\n
    \n"; + for y = from_y to to_y do + Buffer.add_string b (Printf.sprintf "
  • ef/%d.ics
  • \n" y y) + done; + Buffer.add_string b "
\n

Data

\n
    \n"; + for y = from_y to to_y do + Buffer.add_string b + (Printf.sprintf + "
  • %d: json csv \ + xml \xe2\x80\x94 per-day at ef/%d/MM/DD.json
  • \n" + y y y y y) + done; + Buffer.add_string b + "
\n

Contract: schema/day-v1.json

\n\ + \n"; + Buffer.contents b + +let publish_report ~from_y ~to_y ~out ~overlays ~dtstamp ~prune = + if from_y > to_y then begin + Printf.eprintf "colitur: --from %d is after --to %d\n" from_y to_y; + exit 2 + end; + (* Resolved and read BEFORE any file is written, so a missing/unreadable + schema fails fast, before the output directory has anything half- + written in it. [read_file]'s own error text says "cannot read + template ..." (it was built for Task 9's template reads) -- accurate + about the mechanism, wrong about the noun, so the message here is + rebuilt rather than printed verbatim. *) + let schema = + match schema_path () with + | None -> + Printf.eprintf + "colitur: cannot find schema/day-v1.json (looked in the installed and build-tree locations)\n"; + exit 2 + | Some p -> ( + match read_file p with + | Error _ -> + Printf.eprintf "colitur: cannot read schema %s\n" p; + exit 2 + | Ok s -> s) + in + let written = ref [] in + let emit rel contents = + write_file (Filename.concat out rel) contents; + written := rel :: !written + in + for y = from_y to to_y do + let days = resolved_year_days ~overlays y in + let v = Colitur_render.View.of_days ~vocab:Rite_ef.Vocab_ef.vocab ~rite:"ef" ~year:y days in + let ys = string_of_int y in + emit ("ef/" ^ ys ^ ".json") (Colitur_render.Emit_json.year v); + emit ("ef/" ^ ys ^ ".csv") (Colitur_render.Emit_csv.year v); + emit ("ef/" ^ ys ^ ".xml") (Colitur_render.Emit_xml.year v); + emit ("ef/" ^ ys ^ ".ics") (Colitur_render.Emit_ics.year ?dtstamp v); + (* One file per day: the static equivalent of a per-day endpoint. + [View.of_days] with a one-day list yields 12 months, 11 empty, one + populated -- exactly the shape a single day's own page needs. *) + List.iter + (fun d -> + let iso = D.to_iso8601 d.Colitur_kernel.Liturgical_day.date in + let mm = String.sub iso 5 2 and dd = String.sub iso 8 2 in + let one = Colitur_render.View.of_days ~vocab:Rite_ef.Vocab_ef.vocab ~rite:"ef" ~year:y [ d ] in + emit (Printf.sprintf "ef/%s/%s/%s.json" ys mm dd) (Colitur_render.Emit_json.year one)) + days + done; + emit "schema/day-v1.json" schema; + emit "index.html" (index_html ~from_y ~to_y); + let now = List.sort compare !written in + if prune then + List.iter + (fun old -> + if not (List.mem old now) then begin + let p = Filename.concat out old in + if Sys.file_exists p then begin + Sys.remove p; + prune_empty_dirs ~out (Filename.dirname p) + end + end) + (read_manifest out); + write_file (Filename.concat out manifest_name) (String.concat "\n" now ^ "\n"); + Printf.printf "colitur: wrote %d files to %s\n" (List.length now) out + (* Help and usage are deliberately DIFFERENT things, and the difference is the Unix convention rather than a preference: asking for help is a request that SUCCEEDED, so [--help] prints to stdout and exits 0 (it can be piped into a @@ -550,6 +727,11 @@ usage: compute year Y and render it through FILE, a logic-less Mustache-family template; table and render are the same operation, two names (see "rendering" below) + colitur publish --from Y --to Y --out DIR [--overlay FILE ...] [--prune] + [--dtstamp S] + write the static tree: per-year csv/json/xml/ics, one JSON + file per day, the schema and a generated index (see + "publish" below) colitur new-overlay print a starter overlay file to stdout colitur convert FILE.ini flat INI overlay -> S-expression, on stdout colitur check FILE ... load an overlay, say what it does, exit 2 if not @@ -661,6 +843,32 @@ rendering: that JSON is the OUTPUT, never something colitur itself parses back in. +publish: + --out DIR (required) writes the static tree that IS this program's API: + any web server or git repo can serve it as-is, and nothing runs + at request time. + + ef/.{json,csv,xml,ics} one civil year, all days + ef///
.json one file per day + schema/day-v1.json the published JSON contract + index.html a generated index page + .colitur-manifest every path this run wrote + + Deterministic: publishing the same --from/--to range twice + produces a byte-identical tree (--dtstamp behaves exactly as on + `emit`). That is what makes publishing into a git repo safe -- + `git status` shows only real change, and you review an actual + diff before pushing. + + Non-destructive: publish writes only files it owns, and records + every one in .colitur-manifest. A file you put in the output + directory yourself is never in that manifest, so it is never + touched, whether or not --prune is given. --prune additionally + removes manifest entries from a PREVIOUS run that this run did + not rewrite (e.g. an earlier year's per-day files, when you + publish a different range into the same directory) -- never + anything the manifest does not name. + environment: COLITUR_DATA_DIR Read the calendar data from this directory instead of the @@ -712,6 +920,10 @@ let with_year ys f = valued, the same shape as [format]/[from_y]/[to_y]/[dtstamp] above -- `table`/`render` take one year and one template file, never a range or a repeatable list. *) +(* [out] (Task 12, `publish`) is single-valued like [format]/[year]/etc. + [prune] is the one plain boolean flag in this whole record -- every other + field here takes a value, but [--prune] does not, so it cannot reuse the + `"--flag" :: v :: rest` shape the value-taking flags share below. *) type parsed_args = { overlays : string list; format : string option; @@ -721,6 +933,8 @@ type parsed_args = { year : string option; template : string option; flavour : string option; + out : string option; + prune : bool; positional : string list; } @@ -743,6 +957,9 @@ let parse_args argv = | [ "--template" ] -> Error "--template needs a value" | "--flavour" :: v :: rest -> go { acc with flavour = Some v } rest | [ "--flavour" ] -> Error "--flavour needs a value" + | "--out" :: v :: rest -> go { acc with out = Some v } rest + | [ "--out" ] -> Error "--out needs a directory path" + | "--prune" :: rest -> go { acc with prune = true } rest (* The recognised bare flags pass through as positional words for the dispatch below to match; anything else beginning with '-' is rejected rather than silently treated as a command or a year. *) @@ -755,7 +972,7 @@ let parse_args argv = in go { overlays = []; format = None; from_y = None; to_y = None; dtstamp = None; year = None; - template = None; flavour = None; positional = [] } + template = None; flavour = None; out = None; prune = false; positional = [] } argv (* Sibling to [reject_overlays_for]: `emit`'s own four flags have no meaning @@ -792,6 +1009,27 @@ let reject_table_flags_for cmd ~year ~template ~flavour = exit 2 end +(* Sibling to [reject_emit_flags_for]/[reject_table_flags_for]: `--format` + has no meaning on `publish` (it always writes all four whole-year + formats plus the per-day JSON tree, never a single chosen one), so + accepting and silently dropping it would be the same failure mode this + project already refuses everywhere else. Narrower than + [reject_emit_flags_for] on purpose -- `publish` legitimately takes + --from/--to/--dtstamp, so that blanket check cannot be reused here. *) +let reject_format_for cmd format = + if format <> None then begin + Printf.eprintf "colitur: --format has no effect on `%s`; refusing rather than ignoring it\n" cmd; + exit 2 + end + +(* Sibling to the three rejectors above: `--out`/`--prune` (Task 12) have no + meaning on any command except `publish`. *) +let reject_publish_flags_for cmd ~out ~prune = + if out <> None || prune then begin + Printf.eprintf "colitur: --out/--prune have no effect on `%s`; refusing rather than ignoring them\n" cmd; + exit 2 + end + (* `colitur check FILE...` -- load a user overlay, apply it to the real shipped calendar, and say what it did, without printing a year of output. @@ -956,57 +1194,68 @@ let () = | Error msg -> Printf.eprintf "colitur: %s\n" msg; usage () - | Ok { overlays; format; from_y; to_y; dtstamp; year; template; flavour; positional } -> ( + | Ok { overlays; format; from_y; to_y; dtstamp; year; template; flavour; out; prune; positional } -> ( let reject_emit = reject_emit_flags_for ~format ~from_y ~to_y ~dtstamp in let reject_table = reject_table_flags_for ~year ~template ~flavour in + let reject_publish = reject_publish_flags_for ~out ~prune in match positional with | [ ("-h" | "--help" | "help") ] -> reject_overlays_for "--help" overlays; reject_emit "--help"; reject_table "--help"; + reject_publish "--help"; print_help () | [ ("-V" | "--version" | "version") ] -> reject_overlays_for "--version" overlays; reject_emit "--version"; reject_table "--version"; + reject_publish "--version"; print_endline version; exit 0 | [ "easter"; ys ] -> reject_overlays_for "easter" overlays; reject_emit "easter"; reject_table "easter"; + reject_publish "easter"; with_year ys easter_report | [ "temporal"; ys ] -> reject_overlays_for "temporal" overlays; reject_emit "temporal"; reject_table "temporal"; + reject_publish "temporal"; with_year ys temporal_report | "check" :: (_ :: _ as files) -> reject_overlays_for "check" overlays; reject_emit "check"; reject_table "check"; + reject_publish "check"; check_report files | [ "convert"; path ] -> reject_overlays_for "convert" overlays; reject_emit "convert"; reject_table "convert"; + reject_publish "convert"; convert_report path | [ "new-overlay" ] -> reject_overlays_for "new-overlay" overlays; reject_emit "new-overlay"; reject_table "new-overlay"; + reject_publish "new-overlay"; print_string new_overlay_template; exit 0 | [ "day"; ys ] -> reject_emit "day"; reject_table "day"; + reject_publish "day"; with_year ys (day_report ~overlays) | [ "readings"; ys ] -> reject_emit "readings"; reject_table "readings"; + reject_publish "readings"; with_year ys (readings_report ~overlays) | [ "emit" ] -> ( reject_table "emit"; + reject_publish "emit"; match format with | None -> Printf.eprintf "colitur: emit requires --format csv|json|sexp|xml|ics\n"; @@ -1021,6 +1270,7 @@ let () = with_year to_ys (fun to_y -> emit_report ~format ~overlays ~dtstamp ~from_y ~to_y)))) | [ ("table" | "render") as cmd ] -> ( reject_emit cmd; + reject_publish cmd; match template with | None -> Printf.eprintf "colitur: %s requires --year YEAR and --template FILE\n" cmd; @@ -1032,4 +1282,19 @@ let () = exit 2 | Some ys -> with_year ys (fun y -> table_report ~template ~flavour_opt:flavour ~overlays y) )) + | [ "publish" ] -> ( + reject_table "publish"; + reject_format_for "publish" format; + match out with + | None -> + Printf.eprintf "colitur: publish requires --out DIR\n"; + exit 2 + | Some out -> ( + match (from_y, to_y) with + | None, _ | _, None -> + Printf.eprintf "colitur: publish requires --from YEAR and --to YEAR\n"; + exit 2 + | Some from_ys, Some to_ys -> + with_year from_ys (fun from_y -> + with_year to_ys (fun to_y -> publish_report ~from_y ~to_y ~out ~overlays ~dtstamp ~prune)))) | _ -> usage ()) diff --git a/dune b/dune index b7cd19b..e2353df 100644 --- a/dune +++ b/dune @@ -23,10 +23,22 @@ ; this file was originally written to close applied to it too -- a fresh ; `dune build` left it absent from _build/default/data/ef/, only ever ; materialised there as a side effect of test/dune's own deps. +; +; schema/day-v1.json added here for the identical reason again (Task 12, +; `colitur publish`): unlike data/ef/, the top-level schema/ directory has +; no dune file of its own, so nothing makes dune copy it into +; _build/default/ by default -- confirmed empirically, a clean `dune build` +; left _build/default/schema/ missing entirely. bin/main.ml's own +; [schema_path] resolves it the same prefix-relative way [data_dir] resolves +; the sanctoral data, and that resolution needs the file actually present in +; the build tree, not only in the source tree. This is a BUILD-TIME +; convenience only -- it says nothing about `dune install`, which is +; Task 13's own job (see schema_path's comment in bin/main.ml). (alias (name default) (deps (alias_rec install) data/ef/sanctoral.sexp data/ef/adjustments.sexp - data/ef/lectionary.sexp)) + data/ef/lectionary.sexp + schema/day-v1.json)) diff --git a/man/colitur.1 b/man/colitur.1 index da08a36..d015a49 100644 --- a/man/colitur.1 +++ b/man/colitur.1 @@ -28,6 +28,15 @@ colitur \- deterministic liturgical calendar and lectionary engine (Roman rite, .RB [ \-\-overlay " FILE" " ...]" .br .B colitur +.B publish +.BI \-\-from " YEAR" +.BI \-\-to " YEAR" +.BI \-\-out " DIR" +.RB [ \-\-overlay " FILE" " ...]" +.RB [ \-\-prune ] +.RB [ \-\-dtstamp " STAMP" ] +.br +.B colitur .BR \-h | \-\-help .SH DESCRIPTION .B colitur @@ -98,6 +107,14 @@ are the same operation under two names \(em see below for why there is no separate, stdin\-fed .B render . .TP +.B publish +Write the static tree that +.I is +this program's API: a civil\-year range rendered once, as files, so any web +server or git repository can serve it and nothing runs at request time. See +.B PUBLISH +below. +.TP .BI convert " FILE" .ini Convert a flat INI overlay to the S\-expression form, on standard output. The conversion verifies its own output before emitting it: the generated text is @@ -130,7 +147,7 @@ below. .TP .BI \-\-overlay " FILE" Apply a user calendar on top of the shipped one. Repeatable and ordered; -.BR day ", " readings ", " emit ", " table " and " render +.BR day ", " readings ", " emit ", " table ", " render " and " publish only. See .B OVERLAYS below. @@ -144,7 +161,7 @@ Required. See below. .TP .BI \-\-from " YEAR" ", " \-\-to " YEAR" -.RB ( "colitur emit" " only)" +.RB ( "colitur emit" " and " "colitur publish" " only)" The inclusive civil\-year range to render, each .B 1583..9999 as elsewhere. @@ -154,7 +171,7 @@ must not be after Both required. .TP .BI \-\-dtstamp " STAMP" -.RB ( "colitur emit \-\-format ics" " only)" +.RB ( "colitur emit \-\-format ics" " and " "colitur publish" " only)" Fix the feed's own DTSTAMP instead of the default .IR YYYY0101T000000Z , where @@ -163,6 +180,26 @@ is the emitted year. Never a clock read either way \(em see .B EMIT below. .TP +.BI \-\-out " DIR" +.RB ( "colitur publish" " only)" +The directory to write the static tree into. Created if it does not exist. +Required. See +.B PUBLISH +below. +.TP +.B \-\-prune +.RB ( "colitur publish" " only)" +Remove files a previous +.B publish +run into the same +.B \-\-out +wrote that this run did not rewrite. Never removes a file that is not +recorded in +.IR out /.colitur\-manifest , +regardless of this flag. See +.B PUBLISH +below. +.TP .BI \-\-year " YEAR" .RB ( "colitur table" " and " "colitur render" " only)" The civil year to compute, @@ -472,6 +509,109 @@ crash \(em a template is user input, exactly like an overlay file. colitur: template bad.txt: unclosed section {{#days}} .fi .RE +.SH PUBLISH +.BI "colitur publish " \-\-from " YEAR " \-\-to " YEAR " \-\-out " DIR" +writes the static tree that +.I is +this program's API: every file a civil\-year range can be asked for, +computed once and written out, so any web server or git repository can +serve the result as\-is and nothing runs at request time. +.RS +.nf + +ef/.json one civil year, all days, whole\-year emitters +ef/.csv +ef/.xml +ef/.ics +ef///
.json one file per day +schema/day\-v1.json the published JSON contract +index.html a generated index page, not a template +\&.colitur\-manifest every path this run wrote, one per line +.fi +.RE +.PP +Every emitted file goes through the same emitters +.B emit +uses; a published +.I .ics +file for a given year is byte\-for\-byte what +.B "colitur emit \-\-format ics" +would print for that year, and +.B \-\-dtstamp +means exactly what it means there. The per\-day JSON files carry the same +shape as the whole\-year one, scoped to a single day \(em +.B "colitur table" +and template authors needing one day's data can read either. +.PP +.B Deterministic. +Publishing the same +.B \-\-from / \-\-to +range into an empty directory twice produces a byte\-identical tree. Nothing +in the publish path reads the wall clock; the +.I .ics +files' own DTSTAMP defaults to a fixed value derived from the emitted year, +exactly as it does under +.B emit +(see +.B EMIT +above), and +.B \-\-dtstamp +overrides it the same way. This is what makes publishing into a git +repository safe: +.B git status +shows only genuine change, and you review an actual diff before pushing, +never a rewrite of files that did not change. +.PP +.B Non\-destructive. +.B publish +writes only files it owns, and records the relative path of every one of +them in +.IR out /.colitur\-manifest +(itself never subject to pruning). A file you put in the output directory +yourself \(em by hand, or from some other tool \(em is never named in that +manifest, so it is never touched, +.I whether or not +.B \-\-prune +is given. +.RS +.nf + +.B "touch out/MY\-NOTES.txt" +.B "colitur publish \-\-from 2027 \-\-to 2027 \-\-out out \-\-prune" +.B "test \-f out/MY\-NOTES.txt && echo kept" +kept +.fi +.RE +.PP +.B \-\-prune +removes exactly the entries a +.I previous +publish into the same +.B \-\-out +wrote that this run did not rewrite \(em typically an earlier year's own +per\-day files, when a later +.B publish +targets a different +.B \-\-from / \-\-to +range into the same directory. A directory a stale entry's removal leaves +empty is removed too (so, for example, +.I out/ef/2027/ +itself goes away once every file under it is gone), but nothing above +.B \-\-out +is ever touched, and +.B \-\-out +itself is never removed even when nothing is left in it. Without +.BR \-\-prune , +old entries are left in place, and only the manifest is rewritten to +describe the current run. +.PP +.BR \-\-overlay +is accepted exactly as on +.BR day ", " readings " and " emit : +applied on top of the shipped calendar, in order, before each year in the +range is rendered. See +.B OVERLAYS +below. .SH OVERLAYS .TP .BI \-\-overlay " FILE" @@ -665,6 +805,17 @@ Render a year through a template, flavour inferred from the extension: .B colitur table \-\-year 2026 \-\-template booklet.tex > booklet.tex.out .fi .RE +.PP +Publish a year range as a static tree, then keep it in step with +.B \-\-prune +as the range moves: +.RS +.nf + +.B colitur publish \-\-from 2026 \-\-to 2027 \-\-out ~/public/colitur +.B colitur publish \-\-from 2027 \-\-to 2028 \-\-out ~/public/colitur \-\-prune +.fi +.RE .SH SOURCES The calendar is computed against the 1962 .I Missale Romanum diff --git a/test/cli.t b/test/cli.t index c5aeb98..c74331b 100644 --- a/test/cli.t +++ b/test/cli.t @@ -562,3 +562,445 @@ rather than silently ignored: $ colitur emit --format csv --from 2027 --to 2027 --year 2028 colitur: --year/--template/--flavour have no effect on `emit`; refusing rather than ignoring them [2] + +publish writes the documented tree (Task 12): the manifest itself +(.colitur-manifest) is a real file `find` sees too, since it lives in the +same directory as everything else it tracks. Every /tmp/pub* path below is +cleared first, so this section is self-contained across repeat runs: + + $ rm -rf /tmp/pub /tmp/pub1 /tmp/pub2 /tmp/pub3 + + $ colitur publish --from 2027 --to 2027 --out /tmp/pub >/dev/null + $ find /tmp/pub -type f | sed 's|/tmp/pub/||' | sort + .colitur-manifest + ef/2027.csv + ef/2027.ics + ef/2027.json + ef/2027.xml + ef/2027/01/01.json + ef/2027/01/02.json + ef/2027/01/03.json + ef/2027/01/04.json + ef/2027/01/05.json + ef/2027/01/06.json + ef/2027/01/07.json + ef/2027/01/08.json + ef/2027/01/09.json + ef/2027/01/10.json + ef/2027/01/11.json + ef/2027/01/12.json + ef/2027/01/13.json + ef/2027/01/14.json + ef/2027/01/15.json + ef/2027/01/16.json + ef/2027/01/17.json + ef/2027/01/18.json + ef/2027/01/19.json + ef/2027/01/20.json + ef/2027/01/21.json + ef/2027/01/22.json + ef/2027/01/23.json + ef/2027/01/24.json + ef/2027/01/25.json + ef/2027/01/26.json + ef/2027/01/27.json + ef/2027/01/28.json + ef/2027/01/29.json + ef/2027/01/30.json + ef/2027/01/31.json + ef/2027/02/01.json + ef/2027/02/02.json + ef/2027/02/03.json + ef/2027/02/04.json + ef/2027/02/05.json + ef/2027/02/06.json + ef/2027/02/07.json + ef/2027/02/08.json + ef/2027/02/09.json + ef/2027/02/10.json + ef/2027/02/11.json + ef/2027/02/12.json + ef/2027/02/13.json + ef/2027/02/14.json + ef/2027/02/15.json + ef/2027/02/16.json + ef/2027/02/17.json + ef/2027/02/18.json + ef/2027/02/19.json + ef/2027/02/20.json + ef/2027/02/21.json + ef/2027/02/22.json + ef/2027/02/23.json + ef/2027/02/24.json + ef/2027/02/25.json + ef/2027/02/26.json + ef/2027/02/27.json + ef/2027/02/28.json + ef/2027/03/01.json + ef/2027/03/02.json + ef/2027/03/03.json + ef/2027/03/04.json + ef/2027/03/05.json + ef/2027/03/06.json + ef/2027/03/07.json + ef/2027/03/08.json + ef/2027/03/09.json + ef/2027/03/10.json + ef/2027/03/11.json + ef/2027/03/12.json + ef/2027/03/13.json + ef/2027/03/14.json + ef/2027/03/15.json + ef/2027/03/16.json + ef/2027/03/17.json + ef/2027/03/18.json + ef/2027/03/19.json + ef/2027/03/20.json + ef/2027/03/21.json + ef/2027/03/22.json + ef/2027/03/23.json + ef/2027/03/24.json + ef/2027/03/25.json + ef/2027/03/26.json + ef/2027/03/27.json + ef/2027/03/28.json + ef/2027/03/29.json + ef/2027/03/30.json + ef/2027/03/31.json + ef/2027/04/01.json + ef/2027/04/02.json + ef/2027/04/03.json + ef/2027/04/04.json + ef/2027/04/05.json + ef/2027/04/06.json + ef/2027/04/07.json + ef/2027/04/08.json + ef/2027/04/09.json + ef/2027/04/10.json + ef/2027/04/11.json + ef/2027/04/12.json + ef/2027/04/13.json + ef/2027/04/14.json + ef/2027/04/15.json + ef/2027/04/16.json + ef/2027/04/17.json + ef/2027/04/18.json + ef/2027/04/19.json + ef/2027/04/20.json + ef/2027/04/21.json + ef/2027/04/22.json + ef/2027/04/23.json + ef/2027/04/24.json + ef/2027/04/25.json + ef/2027/04/26.json + ef/2027/04/27.json + ef/2027/04/28.json + ef/2027/04/29.json + ef/2027/04/30.json + ef/2027/05/01.json + ef/2027/05/02.json + ef/2027/05/03.json + ef/2027/05/04.json + ef/2027/05/05.json + ef/2027/05/06.json + ef/2027/05/07.json + ef/2027/05/08.json + ef/2027/05/09.json + ef/2027/05/10.json + ef/2027/05/11.json + ef/2027/05/12.json + ef/2027/05/13.json + ef/2027/05/14.json + ef/2027/05/15.json + ef/2027/05/16.json + ef/2027/05/17.json + ef/2027/05/18.json + ef/2027/05/19.json + ef/2027/05/20.json + ef/2027/05/21.json + ef/2027/05/22.json + ef/2027/05/23.json + ef/2027/05/24.json + ef/2027/05/25.json + ef/2027/05/26.json + ef/2027/05/27.json + ef/2027/05/28.json + ef/2027/05/29.json + ef/2027/05/30.json + ef/2027/05/31.json + ef/2027/06/01.json + ef/2027/06/02.json + ef/2027/06/03.json + ef/2027/06/04.json + ef/2027/06/05.json + ef/2027/06/06.json + ef/2027/06/07.json + ef/2027/06/08.json + ef/2027/06/09.json + ef/2027/06/10.json + ef/2027/06/11.json + ef/2027/06/12.json + ef/2027/06/13.json + ef/2027/06/14.json + ef/2027/06/15.json + ef/2027/06/16.json + ef/2027/06/17.json + ef/2027/06/18.json + ef/2027/06/19.json + ef/2027/06/20.json + ef/2027/06/21.json + ef/2027/06/22.json + ef/2027/06/23.json + ef/2027/06/24.json + ef/2027/06/25.json + ef/2027/06/26.json + ef/2027/06/27.json + ef/2027/06/28.json + ef/2027/06/29.json + ef/2027/06/30.json + ef/2027/07/01.json + ef/2027/07/02.json + ef/2027/07/03.json + ef/2027/07/04.json + ef/2027/07/05.json + ef/2027/07/06.json + ef/2027/07/07.json + ef/2027/07/08.json + ef/2027/07/09.json + ef/2027/07/10.json + ef/2027/07/11.json + ef/2027/07/12.json + ef/2027/07/13.json + ef/2027/07/14.json + ef/2027/07/15.json + ef/2027/07/16.json + ef/2027/07/17.json + ef/2027/07/18.json + ef/2027/07/19.json + ef/2027/07/20.json + ef/2027/07/21.json + ef/2027/07/22.json + ef/2027/07/23.json + ef/2027/07/24.json + ef/2027/07/25.json + ef/2027/07/26.json + ef/2027/07/27.json + ef/2027/07/28.json + ef/2027/07/29.json + ef/2027/07/30.json + ef/2027/07/31.json + ef/2027/08/01.json + ef/2027/08/02.json + ef/2027/08/03.json + ef/2027/08/04.json + ef/2027/08/05.json + ef/2027/08/06.json + ef/2027/08/07.json + ef/2027/08/08.json + ef/2027/08/09.json + ef/2027/08/10.json + ef/2027/08/11.json + ef/2027/08/12.json + ef/2027/08/13.json + ef/2027/08/14.json + ef/2027/08/15.json + ef/2027/08/16.json + ef/2027/08/17.json + ef/2027/08/18.json + ef/2027/08/19.json + ef/2027/08/20.json + ef/2027/08/21.json + ef/2027/08/22.json + ef/2027/08/23.json + ef/2027/08/24.json + ef/2027/08/25.json + ef/2027/08/26.json + ef/2027/08/27.json + ef/2027/08/28.json + ef/2027/08/29.json + ef/2027/08/30.json + ef/2027/08/31.json + ef/2027/09/01.json + ef/2027/09/02.json + ef/2027/09/03.json + ef/2027/09/04.json + ef/2027/09/05.json + ef/2027/09/06.json + ef/2027/09/07.json + ef/2027/09/08.json + ef/2027/09/09.json + ef/2027/09/10.json + ef/2027/09/11.json + ef/2027/09/12.json + ef/2027/09/13.json + ef/2027/09/14.json + ef/2027/09/15.json + ef/2027/09/16.json + ef/2027/09/17.json + ef/2027/09/18.json + ef/2027/09/19.json + ef/2027/09/20.json + ef/2027/09/21.json + ef/2027/09/22.json + ef/2027/09/23.json + ef/2027/09/24.json + ef/2027/09/25.json + ef/2027/09/26.json + ef/2027/09/27.json + ef/2027/09/28.json + ef/2027/09/29.json + ef/2027/09/30.json + ef/2027/10/01.json + ef/2027/10/02.json + ef/2027/10/03.json + ef/2027/10/04.json + ef/2027/10/05.json + ef/2027/10/06.json + ef/2027/10/07.json + ef/2027/10/08.json + ef/2027/10/09.json + ef/2027/10/10.json + ef/2027/10/11.json + ef/2027/10/12.json + ef/2027/10/13.json + ef/2027/10/14.json + ef/2027/10/15.json + ef/2027/10/16.json + ef/2027/10/17.json + ef/2027/10/18.json + ef/2027/10/19.json + ef/2027/10/20.json + ef/2027/10/21.json + ef/2027/10/22.json + ef/2027/10/23.json + ef/2027/10/24.json + ef/2027/10/25.json + ef/2027/10/26.json + ef/2027/10/27.json + ef/2027/10/28.json + ef/2027/10/29.json + ef/2027/10/30.json + ef/2027/10/31.json + ef/2027/11/01.json + ef/2027/11/02.json + ef/2027/11/03.json + ef/2027/11/04.json + ef/2027/11/05.json + ef/2027/11/06.json + ef/2027/11/07.json + ef/2027/11/08.json + ef/2027/11/09.json + ef/2027/11/10.json + ef/2027/11/11.json + ef/2027/11/12.json + ef/2027/11/13.json + ef/2027/11/14.json + ef/2027/11/15.json + ef/2027/11/16.json + ef/2027/11/17.json + ef/2027/11/18.json + ef/2027/11/19.json + ef/2027/11/20.json + ef/2027/11/21.json + ef/2027/11/22.json + ef/2027/11/23.json + ef/2027/11/24.json + ef/2027/11/25.json + ef/2027/11/26.json + ef/2027/11/27.json + ef/2027/11/28.json + ef/2027/11/29.json + ef/2027/11/30.json + ef/2027/12/01.json + ef/2027/12/02.json + ef/2027/12/03.json + ef/2027/12/04.json + ef/2027/12/05.json + ef/2027/12/06.json + ef/2027/12/07.json + ef/2027/12/08.json + ef/2027/12/09.json + ef/2027/12/10.json + ef/2027/12/11.json + ef/2027/12/12.json + ef/2027/12/13.json + ef/2027/12/14.json + ef/2027/12/15.json + ef/2027/12/16.json + ef/2027/12/17.json + ef/2027/12/18.json + ef/2027/12/19.json + ef/2027/12/20.json + ef/2027/12/21.json + ef/2027/12/22.json + ef/2027/12/23.json + ef/2027/12/24.json + ef/2027/12/25.json + ef/2027/12/26.json + ef/2027/12/27.json + ef/2027/12/28.json + ef/2027/12/29.json + ef/2027/12/30.json + ef/2027/12/31.json + index.html + schema/day-v1.json + + $ ls /tmp/pub/ef/2027/01/*.json | wc -l + 31 + + $ test -f /tmp/pub/schema/day-v1.json && echo schema-present + schema-present + + $ test -f /tmp/pub/index.html && echo index-present + index-present + +Publishing twice is byte-identical -- safe to publish into a git repo: + + $ colitur publish --from 2027 --to 2027 --out /tmp/pub1 >/dev/null + $ colitur publish --from 2027 --to 2027 --out /tmp/pub2 >/dev/null + $ diff -r /tmp/pub1 /tmp/pub2 && echo identical + identical + +The published .ics is byte-identical to `emit --format ics` for the same +year -- both walk through the identical Emit_ics.year: + + $ colitur emit --format ics --from 2027 --to 2027 > /tmp/emit-2027.ics + $ diff /tmp/pub1/ef/2027.ics /tmp/emit-2027.ics && echo ics-identical + ics-identical + +publish never deletes a file it does not own: + + $ touch /tmp/pub1/MY-NOTES.txt + $ colitur publish --from 2027 --to 2027 --out /tmp/pub1 >/dev/null + $ test -f /tmp/pub1/MY-NOTES.txt && echo kept + kept + +--prune removes only files a previous run created: + + $ colitur publish --from 2027 --to 2027 --out /tmp/pub1 --prune >/dev/null + $ test -f /tmp/pub1/MY-NOTES.txt && echo still-kept + still-kept + + $ colitur publish --from 2028 --to 2028 --out /tmp/pub1 --prune >/dev/null + $ test -d /tmp/pub1/ef/2027 || echo pruned-2027 + pruned-2027 + $ test -f /tmp/pub1/MY-NOTES.txt && echo notes-survived-prune + notes-survived-prune + +--out is required: + + $ colitur publish --from 2027 --to 2027 + colitur: publish requires --out DIR + [2] + +publish's own flags have no effect on the other commands, and other +commands' flags have no effect on publish -- refused rather than silently +ignored, the same discipline as everywhere else: + + $ colitur publish --from 2027 --to 2027 --out /tmp/pub3 --format json + colitur: --format has no effect on `publish`; refusing rather than ignoring it + [2] + + $ colitur day 2027 --out /tmp/pub3 --prune + colitur: --out/--prune have no effect on `day`; refusing rather than ignoring them + [2] diff --git a/test/dune b/test/dune index aa4bd66..8d0c551 100644 --- a/test/dune +++ b/test/dune @@ -43,4 +43,10 @@ ../data/ef/sanctoral.sexp ../data/ef/adjustments.sexp ../data/ef/lectionary.sexp - ../data/ef/commons.sexp)) + ../data/ef/commons.sexp + ; Task 12, `colitur publish`: the cram sandbox only ever gets what this + ; stanza names explicitly (unlike a plain `dune build`, it does not fall + ; back to the workspace root's own default alias), so schema/day-v1.json + ; needs its own entry here too, exactly like every other runtime file + ; above. + ../schema/day-v1.json)) -- cgit v1.3