Showing source for: https://www.divinumofficium.com/cgi-bin/horas/officium.pl
Duration: 0.411208s
Server: Apache/2.4.38 (Debian)

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
    <head>
        <meta content="Document" name="Resource-type">
        <meta content="Divine Office" name="description">
        <meta content="Divine Office, Breviarium, Liturgy, Traditional, Zsolozsma" name="keywords">
        <meta content="Like GNU" name="Copyright">
        <meta content="dark light" name="color-scheme">
        <style>
            /* https://www.30secondsofcode.org/css/s/offscreen/ */
            .offscreen {
                border              : 0;
                clip                : rect(0 0 0 0);
                height              : 1px;
                margin              : -1px;
                overflow            : hidden;
                padding             : 0;
                position            : absolute;
                width               : 1px;
            }
            h1, h2 {
                text-align          : center;
                font-weight         : normal;
            }
            h2 {
                margin-top          : 4ex;
                color               : maroon;
                font-size           : 112%;
                font-weight         : bold;
                font-style          : italic;
            }
            p {
                color               : black;
            }
            .contrastbg {
                background          : white;
            }
            @media (prefers-color-scheme: dark) {
                table {
                    color               : black;
                }
                .contrastbg {
                    background          : #121212;
                    color               : white;
                }
            }
        </style>
        <title>
            Divinum Officium
        </title>
        <script language="JavaScript1.2" type="text/JavaScript">
            function startup() {
                if (!"") {
                    var d = new Date();
                    var day = d.getDate();
                    document.forms[0].browsertime.value = (d.getMonth() + 1) + "-" + day + "-" + d.getFullYear();
                    if (!"4-23-2024") {
                        var a = (day > 23) ? "-+" : (day < 23) ? "--" : "";
                        document.forms[0].date.value = document.forms[0].browsertime.value + a;
                        if (a) document.forms[0].submit();
                    }
                }
                var i = 1;
                while (i <= 0) {
                    a = document.getElementById('L' + i);
                    i++;
                    if (a) a.scrollIntoView();
                }
            }
            function pset(p) {
                var pc = document.createElement("input");
                pc.setAttribute("type", "hidden");
                pc.setAttribute("name", "pcommand");
                pc.setAttribute("value", "pray" + document.forms[0].command.value);
                document.forms[0].appendChild(pc);
                document.forms[0].command.value = "setup" + p;
                document.forms[0].submit();
            }
            function hset(p, d) {
                clearradio();
                if (p != 'Laudes' && d) {
                    document.forms[0].date.value = d;
                    document.forms[0].caller.value = 1;
                }
                if (0) {
                    document.forms[0].caller.value = 1;
                }
                document.forms[0].command.value = "pray" + p;
                document.forms[0].action = "officium.pl";
                document.forms[0].target = "_self";
                document.forms[0].submit();
            }
            function appendix(a) {
                document.forms[0].command.value = "Appendix " + a;
                console.log(document.forms[0].command.value);
                document.forms[0].submit();
            }
            function defunctorum(hour) {
                clearradio();
                document.forms[0].caller.value = 1;
                document.forms[0].votive.value = "C9";
                document.forms[0].command.value = "pray" + hour;
                document.forms[0].action = "officium.pl";
                document.forms[0].target = "_self";
                document.forms[0].submit();
            }
            function callcompare() {
                document.forms[0].action = "Cofficium.pl";
                document.forms[0].target = "_self";
                document.forms[0].submit();
            }
            function clearradio() {
                var a = document.forms[0].popup;
                if (a) a.value = 0;
                document.forms[0].action = "officium.pl";
                document.forms[0].target = "_self";
                return;
            }
            function linkit(name, ind, lang) {
                document.forms[0].popup.value = name;
                document.forms[0].popuplang.value = lang;
                document.forms[0].expandnum.value = ind;
                if (ind == 0) {
                    document.forms[0].action = 'popup.pl';
                    document.forms[0].target = '_BLANK';
                } else {
                    var c = document.forms[0].command.value;
                    if (!c.match('pray')) document.forms[0].command.value = "pray" + c;
                }
                document.forms[0].submit();
            }
            function okbutton() {
                document.forms[0].action = "officium.pl";
                document.forms[0].target = "_self";
                document.forms[0].command.value = '';
                document.forms[0].submit();
            }
            function parchange() {
                var c = document.forms[0].command.value;
                if (c && !c.match("change")) {
                    clearradio();
                }
                if (c && !c.match("pray")) document.forms[0].command.value = "pray" + c;
                document.forms[0].submit();
            }
            function callkalendar() {
                document.forms[0].action = 'kalendar.pl';
                document.forms[0].target = "_self";
                document.forms[0].submit();
            }
            function callbrevi(date) {
                document.forms[0].date.value = date;
                document.forms[0].action = 'officium.pl';
                document.forms[0].target = "_self";
                document.forms[0].submit();
            }
            function callmissa() {
                document.forms[0].action = "../missa/missa.pl";
                document.forms[0].target = "_self";
                document.forms[0].submit();
            }
            function prevnext(ch) {
                var dat = document.forms[0].date.value;
                var adat = dat.split('-');
                var mtab = new Array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
                var m = eval(adat[0]);
                var d = eval(adat[1]);
                var y = eval(adat[2]);
                var c = eval(ch);
                var leapyear = 0;
                if ((y % 4) == 0) leapyear = 1;
                if ((y % 100) == 0) leapyear = 0;
                if ((y % 400) == 0) leapyear = 1;
                if (leapyear) mtab[1] = 29;
                d = d + c;
                if (d < 1) {
                    m--;
                    if (m < 1) {
                        y--;
                        m = 12;
                    }
                    d = mtab[m - 1];
                }
                if (d > mtab[m - 1]) {
                    m++;
                    d = 1;
                    if (m > 12) {
                        y++;
                        m = 1;
                    }
                }
                document.forms[0].date.value = m + "-" + d + "-" + y;
            }
        </script>
    </head>
    <body ;="" bgcolor="#eeeeee" link="blue" onload="startup()" vlink="blue">
        <form action="officium.pl" method="post" target="_self">
            <p align="CENTER">
                <font color="black">
                    Feria Tertia infra Hebdomadam III post Octavam Pasch&aelig; ~ IV. classis
                </font>
                <br>
                <span style="font-size:82%; color:maroon;">
                    <i>
                        Commemoratio  ad Laudes tantum:
                        <font color="red">
                            S. Georgii Martyris
                        </font>
                    </i>
                </span>
            </p>
            <h1>
                <font color="MAROON" size="+1">
                    <b>
                        <i>
                            Divinum Officium
                        </i>
                    </b>
                </font>
                &nbsp;
                <font color="RED" size="+1">
                    Rubrics 1960 - 1960
                </font>
            </h1>
            <p align="CENTER">
                <a href="#" onclick="callcompare()">
                    Compare
                </a>
                &nbsp;&nbsp;&nbsp;
                <a href="#" onclick="callmissa();">
                    Sancta Missa
                </a>
                &nbsp;&nbsp;&nbsp;
                <label class="offscreen" for="date">
                    Date
                </label>
                <input id="date" name="date" size="10" type="TEXT" value="4-23-2024">
                <a href="#" onclick="prevnext(-1)">
                    &darr;
                </a>
                <input name="SUBMIT" onclick="parchange();" type="submit" value=" ">
                <a href="#" onclick="prevnext(1)">
                    &uarr;
                </a>
                &nbsp;&nbsp;&nbsp;
                <a href="#" onclick="callkalendar();">
                    Ordo
                </a>
                &nbsp;&nbsp;&nbsp;
                <a href="#" onclick="pset('parameters')">
                    Options
                </a>
            </p>
            <p align="CENTER">
                <table border="0" height="512">
                    <tbody>
                        <tr>
                            <td align="CENTER">
                                <font color="MAROON">
                                    Ordinarium
                                </font>
                            </td>
                            <td align="CENTER">
                                <font color="MAROON">
                                    Psalterium
                                </font>
                            </td>
                            <td align="CENTER">
                                <font color="MAROON">
                                    Proprium de Tempore
                                </font>
                            </td>
                        </tr>
                        <tr>
                            <td align="CENTER" rowspan="2">
                                <img alt="" height="512" src="../../www/horas/breviarium.jpg">
                            </td>
                            <td align="CENTER" height="50%" valign="MIDDLE">
                                <img alt="" height="256" src="../../www/horas/psalterium.jpg">
                            </td>
                            <td align="CENTER" height="50%" valign="MIDDLE">
                                <img alt="" height="256" src="../../www/horas/tempore.jpg">
                            </td>
                        </tr>
                        <tr>
                            <td align="CENTER" height="50%" valign="MIDDLE">
                                <img alt="" height="256" src="../../www/horas/commune.jpg">
                            </td>
                            <td align="CENTER" height="50%" valign="MIDDLE">
                                <img alt="" height="256" src="../../www/horas/sancti.jpg">
                            </td>
                        </tr>
                        <tr>
                            <td align="CENTER">
                                <font color="RED">
                                </font>
                            </td>
                            <td align="CENTER">
                                <font color="MAROON">
                                    Commune Sanctorum
                                </font>
                            </td>
                            <td align="CENTER">
                                <font color="MAROON">
                                    Proprium Sanctorum
                                </font>
                            </td>
                        </tr>
                    </tbody>
                </table>
                <br>
            </p>
            <p align="CENTER">
                <i>
                    <a href="#" onclick="hset('Matutinum');">
                        <font color="blue">
                            Matutinum
                        </font>
                    </a>
                    &nbsp;&nbsp;
                    <a href="#" onclick="hset('Laudes');">
                        <font color="blue">
                            Laudes
                        </font>
                    </a>
                    &nbsp;&nbsp;
                    <a href="#" onclick="hset('Prima');">
                        <font color="blue">
                            Prima
                        </font>
                    </a>
                    &nbsp;&nbsp;
                    <a href="#" onclick="hset('Tertia');">
                        <font color="blue">
                            Tertia
                        </font>
                    </a>
                    &nbsp;&nbsp;
                    <a href="#" onclick="hset('Sexta');">
                        <font color="blue">
                            Sexta
                        </font>
                    </a>
                    &nbsp;&nbsp;
                    <a href="#" onclick="hset('Nona');">
                        <font color="blue">
                            Nona
                        </font>
                    </a>
                    &nbsp;&nbsp;
                    <a href="#" onclick="hset('Vesperae');">
                        <font color="blue">
                            Vesperae
                        </font>
                    </a>
                    &nbsp;&nbsp;
                    <a href="#" onclick="hset('Completorium');">
                        <font color="blue">
                            Completorium
                        </font>
                    </a>
                    <br>
                    <a href="#" onclick="hset('Omnes');">
                        <font color="blue">
                            Omnes
                        </font>
                    </a>
                    &nbsp;&nbsp;
                    <a href="#" onclick="hset('Plures');">
                        <font color="blue">
                            Plures
                        </font>
                    </a>
                    &nbsp;&nbsp;
                    <a href="#" onclick="appendix('Index')">
                        <font color="">
                            Appendix
                        </font>
                    </a>
                </i>
            </p>
            <p align="CENTER">
                <label class="offscreen" for="expand">
                    Expand
                </label>
                <select id="expand" name="expand" onchange="parchange();" size="1">
                    <option selected="" value="all">
                        all
                    </option>
                    <option value="psalms">
                        psalms
                    </option>
                    <option value="none">
                        none
                    </option>
                    <option value="skeleton">
                        skeleton
                    </option>
                </select>
                &nbsp;&nbsp;&nbsp;
                <label class="offscreen" for="version">
                    Version
                </label>
                <select id="version" name="version" onchange="parchange();" size="1">
                    <option value="Tridentine - 1570">
                        Tridentine - 1570
                    </option>
                    <option value="Tridentine - 1888">
                        Tridentine - 1888
                    </option>
                    <option value="Tridentine - 1906">
                        Tridentine - 1906
                    </option>
                    <option value="Divino Afflatu - 1954">
                        Divino Afflatu - 1954
                    </option>
                    <option value="Reduced - 1955">
                        Reduced - 1955
                    </option>
                    <option selected="" value="Rubrics 1960 - 1960">
                        Rubrics 1960 - 1960
                    </option>
                    <option value="Rubrics 1960 - 2020 USA">
                        Rubrics 1960 - 2020 USA
                    </option>
                    <option value="Monastic - 1963">
                        Monastic - 1963
                    </option>
                    <option value="Ordo Praedicatorum - 1962">
                        Ordo Praedicatorum - 1962
                    </option>
                </select>
                &nbsp;&nbsp;&nbsp;
                <label class="offscreen" for="lang2">
                    Language 2
                </label>
                <select id="lang2" name="lang2" onchange="parchange();" size="1">
                    <option value="Latin">
                        Latin
                    </option>
                    <option value="Dansk">
                        Dansk
                    </option>
                    <option value="Deutsch">
                        Deutsch
                    </option>
                    <option selected="" value="English">
                        English
                    </option>
                    <option value="Espanol">
                        Espa&ntilde;ol
                    </option>
                    <option value="Francais">
                        Fran&ccedil;ais
                    </option>
                    <option value="Italiano">
                        Italiano
                    </option>
                    <option value="Magyar">
                        Magyar
                    </option>
                    <option value="Polski">
                        Polski
                    </option>
                    <option value="Portugues">
                        Portugu&ecirc;s
                    </option>
                    <option value="Latin-Bea">
                        Latin-Bea
                    </option>
                    <option value="Polski-Newer">
                        Polski-Newer
                    </option>
                </select>
                &nbsp;&nbsp;&nbsp;
                <label class="offscreen" for="votive">
                    Votive
                </label>
                <select id="votive" name="votive" onchange="parchange();" size="1">
                    <option selected="" value="Hodie">
                        Hodie
                    </option>
                    <option value="C1">
                        Apostolorum
                    </option>
                    <option value="C1a">
                        Evangelistarum
                    </option>
                    <option value="C2">
                        Unius Martyris
                    </option>
                    <option value="C3">
                        Plurimorum Martyrum
                    </option>
                    <option value="C4">
                        Confessoris Pontificis
                    </option>
                    <option value="C4a">
                        Doctorum Pontificium
                    </option>
                    <option value="C5">
                        Confessoris non Pontificis
                    </option>
                    <option value="C5a">
                        Doctoris non Pontificis
                    </option>
                    <option value="C6">
                        Unam Virginum
                    </option>
                    <option value="C6a">
                        Plures Virgines
                    </option>
                    <option value="C7">
                        Non Virginum Martyrum
                    </option>
                    <option value="C7a">
                        Non Virginum non Martyrum
                    </option>
                    <option value="C8">
                        Dedicationis Ecclesiae
                    </option>
                    <option value="C9">
                        Officium defunctorum
                    </option>
                    <option value="C10">
                        Beata Maria in Sabbato
                    </option>
                    <option value="C11">
                        Beatae Mariae Virginis
                    </option>
                    <option value="C12">
                        Officium parvum Beatae Mariae Virginis
                    </option>
                </select>
            </p>
            <p align="CENTER">
                <a href="../../www/horas/Help/versions.html" target="_BLANK">
                    Versions
                </a>
                &nbsp;&nbsp;&nbsp;&nbsp;
                <a href="../../www/horas/Help/credits.html" target="_BLANK">
                    Credits
                </a>
                &nbsp;&nbsp;&nbsp;&nbsp;
                <a href="../../www/horas/Help/download.html" target="_BLANK">
                    Download
                </a>
                &nbsp;&nbsp;&nbsp;&nbsp;
                <a href="../../www/horas/Help/rubrics.html" target="_BLANK">
                    Rubrics
                </a>
                &nbsp;&nbsp;&nbsp;&nbsp;
                <a href="../../www/horas/Help/technical.html" target="_BLANK">
                    Technical
                </a>
                &nbsp;&nbsp;&nbsp;&nbsp;
                <a href="../../www/horas/Help/help.html" target="_BLANK">
                    Help
                </a>
            </p>
            <input name="expandnum" type="HIDDEN" value="">
            <input name="popup" type="HIDDEN" value="">
            <input name="popuplang" type="HIDDEN" value="">
            <input name="setup" type="HIDDEN" value="general;;;$expand='all';;$version='Rubrics 1960 - 1960';;$lang2='English';;$votive='';;;generalc;;;$expand='all';;$version='Divino Afflatu';;$version2='Rubrics 1960 - 1960';;$langc='Latin';;$accented='plain';;;generalccheck;;;ooooo;;;generalcheck;;;oooo;;;parameters;;;$priest='0';;$building='0';;$lang1='Latin';;$psalmvar='0';;$whitebground='1';;$blackfont='';;$smallblack='-1';;$redfont=' italic red';;$initiale='+2 bold italic red';;$largefont='+1 bold italic red';;$smallfont='1 red';;$titlefont='+1 red';;$screenheight='1024';;$textwidth='100';;$oldhymns='0';;$nonumbers='0';;$nofancychars='0';;;parameterscheck;;;bbtbbbtcccccnnbbb;;;">
            <input name="command" type="HIDDEN" value="">
            <input name="date1" type="HIDDEN" value="4-23-2024">
            <input name="searchvalue" type="HIDDEN" value="0">
            <input name="officium" type="HIDDEN" value="officium.pl">
            <input name="browsertime" type="HIDDEN" value="">
            <input name="version" type="HIDDEN" value="Rubrics 1960 - 1960">
            <input name="version2" type="HIDDEN" value="">
            <input name="caller" type="HIDDEN" value="0">
            <input name="compare" type="HIDDEN" value="">
            <input name="notes" type="HIDDEN" value="">
            <input name="plures" type="HIDDEN" value="">
        </form>
    </body>
</html>

Latest requests

# Url Url Source Date
1 https://www.divinumofficium.com/cg… 2024-04-23 06:56:07
2 https://thebolditalic.com/?gi=1036… 2024-04-23 06:56:07
3 https://thebolditalic.com/?gi=1189… 2024-04-23 06:56:05
4 https://thebolditalic.com/?gi=17e8… 2024-04-23 06:56:02
5 https://thebolditalic.com/?gi=9e39… 2024-04-23 06:55:59
6 https://thebolditalic.com/?gi=029f… 2024-04-23 06:55:29
7 https://thebolditalic.com/?gi=1077… 2024-04-23 06:55:19
8 https://thebolditalic.com/?gi=24fa… 2024-04-23 06:55:08
9 https://situsdaring.com/ 2024-04-23 06:54:32
10 https://thebolditalic.com/?gi=36ab… 2024-04-23 06:54:16
11 https://thebolditalic.com/?gi=99fe… 2024-04-23 06:53:52
12 https://thebolditalic.com/?gi=215a… 2024-04-23 06:53:20
13 https://thebolditalic.com/?gi=00e8… 2024-04-23 06:53:12
14 http://128.199.126.9/ 2024-04-23 06:52:43
15 https://thebolditalic.com/?gi=1b7f… 2024-04-23 06:52:33
16 https://thebolditalic.com/?gi=13cd… 2024-04-23 06:52:25
17 https://bdsmboard.org/register.php… 2024-04-23 06:52:20
18 https://bdsmboard.org/ 2024-04-23 06:52:18
19 https://mmsi-pkc.auth0.com/login?s… 2024-04-23 06:52:15
20 https://thebolditalic.com/?gi=27dc… 2024-04-23 06:52:12