Skip to content

Collaborando di Domenica 24/11/2024

Reader Evangelizo Error : wrong param « date » !! Must be less than 30 days from today ...

NAME

« Reader Evangelizo »

SYNOPSIS

http://feed.evangelizo.org/v2/reader.php [params...]

RETURN VALUE

The « Reader Evangelizo » script return a string with the content requested by "type" parameter
The returned string will be encoded as following :
  • UTF-8: for any param "lang"

DESCRIPTION

This manual page documents the « Reader Feed v2.0 » for EVANGELIZO.ORG.
With the « Reader Evangelizo » you can get all texts provided by evangelizo.org web service. The « Reader Evangelizo » will help you to display daily reading in your website, or saint of the day .. etc
The « Reader Evangelizo » is used as any PHP file on a website, with params like : file.php?param1=1&param2=2

PARAMETERS

Usage : http://feed.evangelizo.org/v2/reader.php?param1=«value1»&param2=«value2»br />
date Must be formatted like YYYYMMDD. Can not exceed 30 days from today.

type Inform about what you want to get
                    - « saint » : to get the saint of the day (with link to life)
                    - « feast » : to get the feast of the day, if there is one (with link to explanation)
                    - « liturgic_t » : to get the liturgic title
                    - « reading_lt » : to get the long title of the reading
                    - « reading_st » : to get the short title of the reading
                    - « reading » : to get the text of the reading
                    - « audio » : to get the URL of audio file if exist
                    - « all » : to get all the readings of the day
                    - « comment_t » : to get the title of the commentary
                    - « comment_a » : to get the author of the commentary
                    - « comment_s » : to get the source of the commentary
                    - « comment » : to get the text of the commentary
                    - « xml » : to get all infos of the day in XML format

lang Tells the language to display and the liturgical calendar to use
          for Roman Ordinary Calendar :
                    - « AM » : for american-us language and Roman Ordinary Calendar
                    - « AR » : for arabic language and Roman Ordinary Calendar
                    - « DE » : for german language and Roman Ordinary Calendar
                    - « FR » : for french language and Roman Ordinary Calendar
                    - « GR » : for greek (hellenic) language and Roman Ordinary Calendar
                    - « IT » : for italian language and Roman Ordinary Calendar
                    - « MG » : for malagasy language and Roman Ordinary Calendar
                    - « NL » : for dutch language and Roman Ordinary Calendar
                    - « PL » : for polish language and Roman Ordinary Calendar
                    - « PT » : for portuges language and Roman Ordinary Calendar
                    - « SP » : for spanish language and Roman Ordinary Calendar
          for other catholics calendars forms :
                    - « ARM » : for armenian language and armenian calendar
                    - « BYA » : for arabic language and byzantine calendar
                    - « COA » : for arabic language and copte calendar
                    - « MAA » : for arabic language and maronite calendar
                    - « SYA » : for arabic language and syriac calendar
                    - « TRA » : for american-us language and Roman extraordinary calendar
                    - « TRD » : for german language and Roman extraordinary calendar
                    - « TRF » : for french language and Roman extraordinary calendar
                    - « TRS » : for spanish language and Roman extraordinary calendar

content Tells the lecture you want to get
          for Roman calendar Ordinary form :
                    - « FR » : for the first lecture
                    - « PS » : for the psalm
                    - « SR » : for the second lecture
                    - « GSP » : for the gospel
          for other catholics calendars forms :
                    - « EP » : for the epistle
                    - « GSP » : for the gospel

EXAMPLES

    type date lang content url example
To get the saint of a day   saint yyyymmdd Ordinary forms
AM, AR, DE, FR,
GR, IT, NL, PL,
PT, SP


Other forms
ARM, BYA, MAA,
TRF, TRA
Ordinary forms
 FR,PS,SR,GSP



Other forms
EP,GSP
http://feed.evangelizo.org/v2/reader.php?date=20190427&type=saint&lang=IT
To get the feast of a day   feast http://feed.evangelizo.org/v2/reader.php?date=20190427&type=feast&lang=AM
To get the liturgic title of a day  all  liturgic_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=liturgic_t&lang=FR
To get the long reading title of a day reading_lt http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_lt&lang=SP&content=FR
To get the short reading title of a day reading_st http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_st&lang=TRF&content=EP
To get the text of the reading of a day reading http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading&lang=DE&content=GSP
To get the commentary title of a day   comment_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_t&lang=PT
To get the commentary author of a day   comment_a http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_a&lang=FR
To get the commentary source of a day   comment_s http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_s&lang=PL
To get the commentary text of a day   comment http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment&lang=MAA


PHP example
   $today = date('Ymd');
   $url = "http://feed.evangelizo.org/v2/reader.php?date=$today&type=comment&lang=FR";
   $h = fopen($url,"r");
   while (!feof($h)) {
     $str .= fgets($h);
   }
   print $str;


Javascript example 1

   <html>
   <head>
     <title>Exemple d'affichage de fichier texte</title>
     <script language="javascript" type="text/javascript">
       function displayTextFile(filePath){
         iframe = document.getElementsByName('textDisplay')[0];
         iframe.src=filePath;
         iframe.style.display="block";
       }
     </script>
   </head>
   <body>
     <iframe id="textDisplay" name="textDisplay" src="" style="width: 400px; height: 240px; display: none;"></iframe>
     <script>
       var currentTime = new Date();
       var month = currentTime.getMonth() + 1;
       var day = currentTime.getDate();
       var year = currentTime.getFullYear();
       if (day < 10) day = '0'+day;
       if (month < 10) month = '0'+month;
       displayTextFile('http://feed.evangelizo.org/v2/reader.php?date='+year+month+day+'&type=reading&lang=FR&content=GSP');
     </script>
   </body>
   </html>





Test it online !

What: Date: Lang: Content (optional):




Reader Evangelizo Error : wrong param « date » !! Must be less than 30 days from today ...

NAME

« Reader Evangelizo »

SYNOPSIS

http://feed.evangelizo.org/v2/reader.php [params...]

RETURN VALUE

The « Reader Evangelizo » script return a string with the content requested by "type" parameter
The returned string will be encoded as following :
  • UTF-8: for any param "lang"

DESCRIPTION

This manual page documents the « Reader Feed v2.0 » for EVANGELIZO.ORG.
With the « Reader Evangelizo » you can get all texts provided by evangelizo.org web service. The « Reader Evangelizo » will help you to display daily reading in your website, or saint of the day .. etc
The « Reader Evangelizo » is used as any PHP file on a website, with params like : file.php?param1=1&param2=2

PARAMETERS

Usage : http://feed.evangelizo.org/v2/reader.php?param1=«value1»&param2=«value2»br />
date Must be formatted like YYYYMMDD. Can not exceed 30 days from today.

type Inform about what you want to get
                    - « saint » : to get the saint of the day (with link to life)
                    - « feast » : to get the feast of the day, if there is one (with link to explanation)
                    - « liturgic_t » : to get the liturgic title
                    - « reading_lt » : to get the long title of the reading
                    - « reading_st » : to get the short title of the reading
                    - « reading » : to get the text of the reading
                    - « audio » : to get the URL of audio file if exist
                    - « all » : to get all the readings of the day
                    - « comment_t » : to get the title of the commentary
                    - « comment_a » : to get the author of the commentary
                    - « comment_s » : to get the source of the commentary
                    - « comment » : to get the text of the commentary
                    - « xml » : to get all infos of the day in XML format

lang Tells the language to display and the liturgical calendar to use
          for Roman Ordinary Calendar :
                    - « AM » : for american-us language and Roman Ordinary Calendar
                    - « AR » : for arabic language and Roman Ordinary Calendar
                    - « DE » : for german language and Roman Ordinary Calendar
                    - « FR » : for french language and Roman Ordinary Calendar
                    - « GR » : for greek (hellenic) language and Roman Ordinary Calendar
                    - « IT » : for italian language and Roman Ordinary Calendar
                    - « MG » : for malagasy language and Roman Ordinary Calendar
                    - « NL » : for dutch language and Roman Ordinary Calendar
                    - « PL » : for polish language and Roman Ordinary Calendar
                    - « PT » : for portuges language and Roman Ordinary Calendar
                    - « SP » : for spanish language and Roman Ordinary Calendar
          for other catholics calendars forms :
                    - « ARM » : for armenian language and armenian calendar
                    - « BYA » : for arabic language and byzantine calendar
                    - « COA » : for arabic language and copte calendar
                    - « MAA » : for arabic language and maronite calendar
                    - « SYA » : for arabic language and syriac calendar
                    - « TRA » : for american-us language and Roman extraordinary calendar
                    - « TRD » : for german language and Roman extraordinary calendar
                    - « TRF » : for french language and Roman extraordinary calendar
                    - « TRS » : for spanish language and Roman extraordinary calendar

content Tells the lecture you want to get
          for Roman calendar Ordinary form :
                    - « FR » : for the first lecture
                    - « PS » : for the psalm
                    - « SR » : for the second lecture
                    - « GSP » : for the gospel
          for other catholics calendars forms :
                    - « EP » : for the epistle
                    - « GSP » : for the gospel

EXAMPLES

    type date lang content url example
To get the saint of a day   saint yyyymmdd Ordinary forms
AM, AR, DE, FR,
GR, IT, NL, PL,
PT, SP


Other forms
ARM, BYA, MAA,
TRF, TRA
Ordinary forms
 FR,PS,SR,GSP



Other forms
EP,GSP
http://feed.evangelizo.org/v2/reader.php?date=20190427&type=saint&lang=IT
To get the feast of a day   feast http://feed.evangelizo.org/v2/reader.php?date=20190427&type=feast&lang=AM
To get the liturgic title of a day  all  liturgic_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=liturgic_t&lang=FR
To get the long reading title of a day reading_lt http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_lt&lang=SP&content=FR
To get the short reading title of a day reading_st http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_st&lang=TRF&content=EP
To get the text of the reading of a day reading http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading&lang=DE&content=GSP
To get the commentary title of a day   comment_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_t&lang=PT
To get the commentary author of a day   comment_a http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_a&lang=FR
To get the commentary source of a day   comment_s http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_s&lang=PL
To get the commentary text of a day   comment http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment&lang=MAA


PHP example
   $today = date('Ymd');
   $url = "http://feed.evangelizo.org/v2/reader.php?date=$today&type=comment&lang=FR";
   $h = fopen($url,"r");
   while (!feof($h)) {
     $str .= fgets($h);
   }
   print $str;


Javascript example 1

   <html>
   <head>
     <title>Exemple d'affichage de fichier texte</title>
     <script language="javascript" type="text/javascript">
       function displayTextFile(filePath){
         iframe = document.getElementsByName('textDisplay')[0];
         iframe.src=filePath;
         iframe.style.display="block";
       }
     </script>
   </head>
   <body>
     <iframe id="textDisplay" name="textDisplay" src="" style="width: 400px; height: 240px; display: none;"></iframe>
     <script>
       var currentTime = new Date();
       var month = currentTime.getMonth() + 1;
       var day = currentTime.getDate();
       var year = currentTime.getFullYear();
       if (day < 10) day = '0'+day;
       if (month < 10) month = '0'+month;
       displayTextFile('http://feed.evangelizo.org/v2/reader.php?date='+year+month+day+'&type=reading&lang=FR&content=GSP');
     </script>
   </body>
   </html>





Test it online !

What: Date: Lang: Content (optional):




Commento al Vangelo

Reader Evangelizo Error : wrong param « date » !! Must be less than 30 days from today ...

NAME

« Reader Evangelizo »

SYNOPSIS

http://feed.evangelizo.org/v2/reader.php [params...]

RETURN VALUE

The « Reader Evangelizo » script return a string with the content requested by "type" parameter
The returned string will be encoded as following :
  • UTF-8: for any param "lang"

DESCRIPTION

This manual page documents the « Reader Feed v2.0 » for EVANGELIZO.ORG.
With the « Reader Evangelizo » you can get all texts provided by evangelizo.org web service. The « Reader Evangelizo » will help you to display daily reading in your website, or saint of the day .. etc
The « Reader Evangelizo » is used as any PHP file on a website, with params like : file.php?param1=1&param2=2

PARAMETERS

Usage : http://feed.evangelizo.org/v2/reader.php?param1=«value1»&param2=«value2»br />
date Must be formatted like YYYYMMDD. Can not exceed 30 days from today.

type Inform about what you want to get
                    - « saint » : to get the saint of the day (with link to life)
                    - « feast » : to get the feast of the day, if there is one (with link to explanation)
                    - « liturgic_t » : to get the liturgic title
                    - « reading_lt » : to get the long title of the reading
                    - « reading_st » : to get the short title of the reading
                    - « reading » : to get the text of the reading
                    - « audio » : to get the URL of audio file if exist
                    - « all » : to get all the readings of the day
                    - « comment_t » : to get the title of the commentary
                    - « comment_a » : to get the author of the commentary
                    - « comment_s » : to get the source of the commentary
                    - « comment » : to get the text of the commentary
                    - « xml » : to get all infos of the day in XML format

lang Tells the language to display and the liturgical calendar to use
          for Roman Ordinary Calendar :
                    - « AM » : for american-us language and Roman Ordinary Calendar
                    - « AR » : for arabic language and Roman Ordinary Calendar
                    - « DE » : for german language and Roman Ordinary Calendar
                    - « FR » : for french language and Roman Ordinary Calendar
                    - « GR » : for greek (hellenic) language and Roman Ordinary Calendar
                    - « IT » : for italian language and Roman Ordinary Calendar
                    - « MG » : for malagasy language and Roman Ordinary Calendar
                    - « NL » : for dutch language and Roman Ordinary Calendar
                    - « PL » : for polish language and Roman Ordinary Calendar
                    - « PT » : for portuges language and Roman Ordinary Calendar
                    - « SP » : for spanish language and Roman Ordinary Calendar
          for other catholics calendars forms :
                    - « ARM » : for armenian language and armenian calendar
                    - « BYA » : for arabic language and byzantine calendar
                    - « COA » : for arabic language and copte calendar
                    - « MAA » : for arabic language and maronite calendar
                    - « SYA » : for arabic language and syriac calendar
                    - « TRA » : for american-us language and Roman extraordinary calendar
                    - « TRD » : for german language and Roman extraordinary calendar
                    - « TRF » : for french language and Roman extraordinary calendar
                    - « TRS » : for spanish language and Roman extraordinary calendar

content Tells the lecture you want to get
          for Roman calendar Ordinary form :
                    - « FR » : for the first lecture
                    - « PS » : for the psalm
                    - « SR » : for the second lecture
                    - « GSP » : for the gospel
          for other catholics calendars forms :
                    - « EP » : for the epistle
                    - « GSP » : for the gospel

EXAMPLES

    type date lang content url example
To get the saint of a day   saint yyyymmdd Ordinary forms
AM, AR, DE, FR,
GR, IT, NL, PL,
PT, SP


Other forms
ARM, BYA, MAA,
TRF, TRA
Ordinary forms
 FR,PS,SR,GSP



Other forms
EP,GSP
http://feed.evangelizo.org/v2/reader.php?date=20190427&type=saint&lang=IT
To get the feast of a day   feast http://feed.evangelizo.org/v2/reader.php?date=20190427&type=feast&lang=AM
To get the liturgic title of a day  all  liturgic_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=liturgic_t&lang=FR
To get the long reading title of a day reading_lt http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_lt&lang=SP&content=FR
To get the short reading title of a day reading_st http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading_st&lang=TRF&content=EP
To get the text of the reading of a day reading http://feed.evangelizo.org/v2/reader.php?date=20190427&type=reading&lang=DE&content=GSP
To get the commentary title of a day   comment_t http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_t&lang=PT
To get the commentary author of a day   comment_a http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_a&lang=FR
To get the commentary source of a day   comment_s http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment_s&lang=PL
To get the commentary text of a day   comment http://feed.evangelizo.org/v2/reader.php?date=20190427&type=comment&lang=MAA


PHP example
   $today = date('Ymd');
   $url = "http://feed.evangelizo.org/v2/reader.php?date=$today&type=comment&lang=FR";
   $h = fopen($url,"r");
   while (!feof($h)) {
     $str .= fgets($h);
   }
   print $str;


Javascript example 1

   <html>
   <head>
     <title>Exemple d'affichage de fichier texte</title>
     <script language="javascript" type="text/javascript">
       function displayTextFile(filePath){
         iframe = document.getElementsByName('textDisplay')[0];
         iframe.src=filePath;
         iframe.style.display="block";
       }
     </script>
   </head>
   <body>
     <iframe id="textDisplay" name="textDisplay" src="" style="width: 400px; height: 240px; display: none;"></iframe>
     <script>
       var currentTime = new Date();
       var month = currentTime.getMonth() + 1;
       var day = currentTime.getDate();
       var year = currentTime.getFullYear();
       if (day < 10) day = '0'+day;
       if (month < 10) month = '0'+month;
       displayTextFile('http://feed.evangelizo.org/v2/reader.php?date='+year+month+day+'&type=reading&lang=FR&content=GSP');
     </script>
   </body>
   </html>





Test it online !

What: Date: Lang: Content (optional):





Orari e intenzioni S.Messe

Parrocchia di S. Leonardo - Ponzano

Parrocchia di S. Maria Assunta - Paderno

Parrocchia di S. Bartolomeo - Merlengo

Avvisi pastorali

DOMENICA 24 NOVEMBRE, GIORNATA DEL SEMINARIO: LE PAROLE DEL VESCOVO
"…Nella giornata del Seminario si vuole ricordare a tutti i fedeli che la formazione dei futuri presbiteri ci riguarda tutti, come un «dovere» e come un «diritto»: dobbiamo prendercene cura, perché la presenza di sacerdoti riguarda profondamente tutta la vita cristiana, e possiamo prendercene cura, perché riguarda anche la qualità della vita cristiana, personale e comunitaria. La vitalità del Seminario dipende certo dalla sua vita interna, all’organizzazione delle giornate, dalla qualità della formazione e delle attività pastorali che vi si svolgono, ma in maniera ancora più decisiva dal suo essere inserito strettamente nella vita cristiana della diocesi. Il Seminario potrà continuare a formare i preti di oggi e di domani, soltanto se la Chiesa saprà generare figli innamorati di Dio e dei fratelli tanto da mettersi a loro servizio, ed essa potrà essere così, solamente se sarà composta da battezzati e battezzate innamorati di Cristo, che a lui orientano la propria esistenza, discepoli missionari convocati dalla Parola, nutriti e formati dall’Eucaristia.”
(Michele Tomasi, vescovo di Treviso in occasione della Giornata del Seminario 2023).

Attualmente il seminario di Treviso ospita in totale 38 seminaristi: 10 in Comunità Ragazzi, 14 in Comunità Giovanile e 14 in Comunità Teologica. Ai fedeli, oggi, si chiede soprattutto di pregare perché i giovani si sentano interpellati a seguire Gesù Buon Pastore con un amore totale e puro e, infine, di contribuire con un aiuto concreto. Domenica 24 sarà allestito, sui sagrati delle nostre tre Chiese, un mercatino a sostegno del Seminario.

  • EMMA GALLINA e NOAH PASSOS ZOTTAREL alla S. Messa delle ore 10.00 a Merlengo,
  • GIOVANNI SANTI e MADDALENA CARCURO alla S. Messa delle ore 10.30 a Ponzano,
  • CATERINA NEMO, EMMA SCATTOLIN, TOMMASO BIASINI e BIANCA GEROMIN alla S. Messa delle ore 11.30 a Paderno.

➡️ANNIVERSARI DI MATRIMONIO giovedì 28 novembre alle ore 20.30 in Chiesa a Ponzano, avremo l’occasione di vivere un momento di preghiera e di adorazione per le coppie che festeggiano l’Anniversario di Matrimonio comunitario.
Si ricorda che per l'adesione è necessario comunicare presso la segreteria della collaborazione i vostri nomi, gli anni di anniversario, un recapito telefonico e consegnare
una foto del giorno del vostro matrimonio entro lunedì 25 novembre. Gli sposi sono invitati poi a rinnovare le promesse nuziali durante le S. Messe di Domenica 1 dicembre: alle ore 10.00 a Merlengo, alle ore 10.30 a Ponzano e alle ore 11.30 a Paderno.
➡️WEEKEND DELLA CARITÀ sabato 30 novembre e domenica 1 dicembre ci sarà la consueta raccolta dei generi alimentari per le famiglie bisognose della nostra collaborazione e si potrà acquistare il sussidio "Dall'Alba al Tramonto" con la meditazione speciale per il tempo di Avvento.

Con decreto vescovile sono stati costituiti i nuovi Consigli per gli Affari Economici Parrocchiali (CPAE) della nostra Collaborazione Pastorale. Di seguito riportiamo i nomi dei nuovi membri, che ringraziamo per la disponibilità e a cui auguriamo buon lavoro:

  • PARROCCHIA DI PONZANO: Bonesso Sara, Perer Matteo, Volpato Lino, Zanella Davide.
  • PARROCCHIA DI PADERNO: Alfonsi Laura, Cavasin Michele, Geromin Giovanni, Pian Luca.
  • PARROCCHIA DI MERLENGO: De Martin Cristina, Favero Luca, Fiorotto Davide, Secoli Lorenza.

Si ricorda che il C.P.A.E. è un organismo di partecipazione e di corresponsabilità con il compito di aiutare i parroci, che lo presiedono, nell’amministrazione dei beni della Parrocchia, secondo le norme del diritto. È un organismo distinto dal Consiglio Pastorale Parrocchiale (CPP), e opera secondo la propria competenza. Infatti, mentre il CPP affronta la conduzione pastorale globale della parrocchia, il CPAE individua e mette in opera gli strumenti e le strutture di cui la pastorale parrocchiale necessita, tenendo presenti gli orientamenti del Consiglio Pastorale Parrocchiale. Scopo specifico del CPAE è di coadiuvare i parroci in solido con il suo parere e con la sua opera nell’amministrazione economica della parrocchia.
Come ha osservato un esperto esegeta: “Non vi è occupazione più nobilmente spirituale che quella di chi stabilisce un bilancio, per il semplice motivo che, con la sua ripartizione delle somme, esso rifette il sistema dei valori del gruppo” (Daniel Marguerat, Dio e il denaro, Magnano 2014, 51 52).
I Consiglieri prestano il loro servizio gratuitamente e con senso di piena responsabilità, agendo solo e sempre nell’esclusivo interesse della Comunità parrocchiale e delle sue finalità pastorali.
➡️BILANCI 2023
Nella seduta del 14 novembre u.s., i nuovi membri dei 3 CPAE della Collaborazione Pastorale, dopo aver ricevuto il decreto di nomina vescovile e aver prestato giuramento, hanno approvato il bilancio consuntivo relativo all’anno 2023, che in forma sintetica viene presentato per ogni parrocchia al termine delle messe domenicali di questa settimana.