Sundays of Pleroma: Difference between revisions

From Cor ad Cor
Jump to navigation Jump to search
No edit summary
 
(44 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Seven patterns ==
{| {{Prettytable}}
|-
!P1
!Xt King
!Advent I
!Christmas Day
|-
|align="center"|9 Oct
|align="center"|20 Nov
|align="center"|27 Nov
|align="center"|Sunday
|-
|align="center"|15 Oct
|align="center"|26 Nov
|align="center"|3 Dec
|align="center"|Monday
|-
|align="center"|14 Oct
|align="center"|25 Nov
|align="center"|2 Dec
|align="center"|Tuesday
|-
|align="center"|13 Oct
|align="center"|24 Nov
|align="center"|1 Dec
|align="center"|Wednesday
|-
|align="center"|12 Oct
|align="center"|23 Nov
|align="center"|30 Nov
|align="center"|Thursday
|-
|align="center"|11 Oct
|align="center"|22 Nov
|align="center"|29 Nov
|align="center"|Friday
|-
|align="center"|10 Oct
|align="center"|21 Nov
|align="center"|28 Nov
|align="center"|Saturday
|}
== Next ten years ==
<p>&nbsp;</p>
<p>&nbsp;</p>
<html>
<html> <!-- 163 lines of code figured out between November 10th and 12th. I learned a lot! -->
<div id="SundayTable" style="margin-left:4em"></div>
<div id="SundayTable" style="margin-left:4em"></div>


Line 79: Line 26:
]
]
const Headings = [
const Headings = [
["    ","    ","III"    ,  "IV"  ,    "I"  ,    "II",    "III",    "IV",    "I"        ,"Xmas"],
["    ","    ","P1 – III"    ,  "P2 – IV"  ,    "P3 – I"  ,    "P4 – II",    "P5 – III",    "P6 – IV",    "EP I"        ,"   "],
["year","cycle","Week 28","Week 29","Week 39","Week 31","Week 32","Week 33","Christ the King",  "DoW"]
["year","cycle","Week 28","Week 29","Week 39","Week 31","Week 32","Week 33","Christ the King",  "Christmas Day"]
];
];


Line 106: Line 53:
   const XmasInYear = new Date(XmasStr);
   const XmasInYear = new Date(XmasStr);
   var DoWx = XmasInYear.getDay();
   var DoWx = XmasInYear.getDay();
  // copy pattern from fixed array to derived array
// copy pattern from fixed array to derived array
 
  Scaffold.push(aYear.toString());   
Scaffold.push(aYear.toString());   
   const cycle = ["A","B","C"];  
   const cycle = ["A","B","C"];  
  // year A = 2023
// year A = 2023
   firstremainder = aYear % 2023;
   firstremainder = aYear % 2023;
   ABCindex = firstremainder % 3;
   ABCindex = firstremainder % 3;
   Scaffold.push(cycle[ABCindex]);
   Scaffold.push(cycle[ABCindex]);
 
   for (var j = 0; j<=7; j++) {
   for (var j = 0; j<=7; j++) {
   Scaffold.push(FixedPattern[DoWx][j]);
   Scaffold.push(FixedPattern[DoWx][j]);
   }
   }
  console.log(Scaffold);
//  console.log(Scaffold);
   DerivedArray.push(Scaffold);
   DerivedArray.push(Scaffold);
  console.log(DerivedArray);
//  console.log(DerivedArray);
}
}


Line 131: Line 76:
     var cellText = document.createTextNode("\u00A0" + Headings[j][k] + "\u00A0");
     var cellText = document.createTextNode("\u00A0" + Headings[j][k] + "\u00A0");
     cell.appendChild(cellText);
     cell.appendChild(cellText);
    cell.setAttribute("style", "padding:2.8px 5.6px;");
            if (k <= 1) {
              cell.setAttribute("style", "background:#a2d2ff");
            }
 
              if (1 < k) {
                if (k <= 7) {
                  cell.setAttribute("style", "background:#b6e2d3");
                }
      }
            if (k == 8) {
              cell.setAttribute("style", "background:#ffee93");
            }
            if (k == 9) {
              cell.setAttribute("style", "background:#ea9ab2");
            }
     row.appendChild(cell);
     row.appendChild(cell);
row.setAttribute("align","center");
row.setAttribute("align","center");
    row.setAttribute("style","font-weight:bold");
    row.setAttribute("style","font-weight:bold; background:#EAECF0;");
}
}
    tblBody.appendChild(row);
    tblBody.appendChild(row);
Line 145: Line 106:
for (var k = 0; k <= 9; k++) {
for (var k = 0; k <= 9; k++) {
var cell = document.createElement("td");
var cell = document.createElement("td");
if (DerivedArray[j][k] == "Wednesday") {
var cellText = document.createTextNode(DerivedArray[j][k]);
var cellText = document.createTextNode("\u00A0" + DerivedArray[j][k] + "\u00A0");
cell.appendChild(cellText);
} else {
    cell.setAttribute("style", "padding:2.8px 5.6px;");
var cellText = document.createTextNode(DerivedArray[j][k]);
              if (1 < k) {
}
                if (k <= 7) {
    cell.appendChild(cellText);
                  cell.setAttribute("style", "background:#c6e2e9");
                }
      }
            if (k <= 1) {
              cell.setAttribute("style", "background:#bde0fe");
            }
            if (k == 8) {
              cell.setAttribute("style", "background:#fffacd");
            }
            if (k == 9) {
              cell.setAttribute("style", "background:#eac4d5");
            }
     row.appendChild(cell);
     row.appendChild(cell);
}
}
row.setAttribute("align","center");
row.setAttribute("align","center");
row.setAttribute("style","background:#F8F9FA");
tblBody.appendChild(row);
tblBody.appendChild(row);
}
}
Line 190: Line 163:
</script>
</script>
</html>
</html>
<!--  ============================================== -->
== Seven patterns for Six Sundays ==
Six days of Creation.
Forty-two days.
All Saints, All Souls, and the feast of St. Martin of Tours are always in Pleroma.  "A San Martino, castagne e vino, e ogni mosto diventa vino!"
<div style="margin-left:4em">
{| {{Prettytable}}
|-
!P1
!Xt King
!Advent I
!Christmas Day
|-
|align="center"|9 Oct
|align="center"|20 Nov
|align="center"|27 Nov
|align="center"|Sunday
|-
|align="center"|15 Oct
|align="center"|26 Nov
|align="center"|3 Dec
|align="center"|Monday
|-
|align="center"|14 Oct
|align="center"|25 Nov
|align="center"|2 Dec
|align="center"|Tuesday
|-
|align="center"|13 Oct
|align="center"|24 Nov
|align="center"|1 Dec
|align="center"|Wednesday
|-
|align="center"|12 Oct
|align="center"|23 Nov
|align="center"|30 Nov
|align="center"|Thursday
|-
|align="center"|11 Oct
|align="center"|22 Nov
|align="center"|29 Nov
|align="center"|Friday
|-
|align="center"|10 Oct
|align="center"|21 Nov
|align="center"|28 Nov
|align="center"|Saturday
|}
</div>
Christmas can fall on any day of the week.  The other feasts are all Sundays.
Pleroma begins between October 9 and 15.
Christ the King falls between November 20 to 26.  Never in December.
Advent begins between November 28 and December 3.
There are 42 days in Pleroma.  Six weeks with seven days per week.  The season is always 42 days long because it begins on a Sunday and ends the day before Christ the King, which is always on a Sunday.
There are Seven Days of Christ the King between Pleroma and Advent.  Hmm. The Last Days of Ordinary Time.
In the spirit of Septuagesima, Sexagesima, Quinquagesima, and Quadragesima Sundays.
Not-so-ordinary time.
November 23: feast of Blessed Miguel Pro, SJ.  ''Viva Cristo Re!''  Because the feast of Christ the King always falls between November 20 and 26, Pro's feast is always nearby: 20 21 22 '''23''' 24 25 26.  Three times it comes a little after Christ the King, three times a little bit before, and once in a while the two feasts coincide on the 23rd.


[[Category:Pleroma]]
[[Category:Pleroma]]

Latest revision as of 15:35, 24 November 2024

 

       P1 – III  P2 – IV  P3 – I  P4 – II  P5 – III  P6 – IV  EP I    
 year  cycle  Week 28  Week 29  Week 39  Week 31  Week 32  Week 33  Christ the King  Christmas Day 
2025C12 Oct19 Oct26 Oct2 Nov9 Nov16 Nov23 NovThursday
2026A11 Oct18 Oct25 Oct1 Nov8 Nov15 Nov22 NovFriday
2027B10 Oct17 Oct24 Oct31 Oct7 Nov14 Nov21 NovSaturday
2028C15 Oct22 Oct29 Oct5 Nov12 Nov19 Nov26 NovMonday
2029A14 Oct21 Oct28 Oct4 Nov11 Nov18 Nov25 NovTuesday
2030B13 Oct20 Oct27 Oct3 Nov10 Nov17 Nov24 NovWednesday
2031C12 Oct19 Oct26 Oct2 Nov9 Nov16 Nov23 NovThursday
2032A10 Oct17 Oct24 Oct31 Oct7 Nov14 Nov21 NovSaturday
2033B9 Oct16 Oct23 Oct30 Oct6 Nov13 Nov20 NovSunday
2034C15 Oct22 Oct29 Oct5 Nov12 Nov19 Nov26 NovMonday


Seven patterns for Six Sundays

Six days of Creation.

Forty-two days.

All Saints, All Souls, and the feast of St. Martin of Tours are always in Pleroma. "A San Martino, castagne e vino, e ogni mosto diventa vino!"

P1 Xt King Advent I Christmas Day
9 Oct 20 Nov 27 Nov Sunday
15 Oct 26 Nov 3 Dec Monday
14 Oct 25 Nov 2 Dec Tuesday
13 Oct 24 Nov 1 Dec Wednesday
12 Oct 23 Nov 30 Nov Thursday
11 Oct 22 Nov 29 Nov Friday
10 Oct 21 Nov 28 Nov Saturday

Christmas can fall on any day of the week. The other feasts are all Sundays.

Pleroma begins between October 9 and 15.

Christ the King falls between November 20 to 26. Never in December.

Advent begins between November 28 and December 3.

There are 42 days in Pleroma. Six weeks with seven days per week. The season is always 42 days long because it begins on a Sunday and ends the day before Christ the King, which is always on a Sunday.

There are Seven Days of Christ the King between Pleroma and Advent. Hmm. The Last Days of Ordinary Time.

In the spirit of Septuagesima, Sexagesima, Quinquagesima, and Quadragesima Sundays.

Not-so-ordinary time.

November 23: feast of Blessed Miguel Pro, SJ. Viva Cristo Re! Because the feast of Christ the King always falls between November 20 and 26, Pro's feast is always nearby: 20 21 22 23 24 25 26. Three times it comes a little after Christ the King, three times a little bit before, and once in a while the two feasts coincide on the 23rd.