Skip to content

Collaborando di Domenica 03/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

➡️ASSEMBLEA DIOCESANA DELLE CARITAS PARROCCHIALI
La Caritas Tarvisina promuove l’Assemblea Diocesana delle Caritas Parrocchiali
aperta a tutte le persone che desiderano confrontarsi sul tema della Carità, ponendosi
domande di senso sull’importante questione dell’Amore verso i fratelli in tutte le possibili forme di aiuto e di sostegno. L’Assemblea si svolgerà sabato 9 novembre dalle ore 15.00 alle ore 19.30 presso l’Oratorio parrocchiale di San Gaetano di Montebelluna e avrà come titolo “Credette saldo nella speranza”. Il programma dettagliato sarà consultabile nella locandina esposta nelle tre chiese, nel sito della Caritas Tarvisina e in questo link

➡️PRIMO WEEKEND DEL MESE sabato 2 e domenica 3 novembre primo weekend del mese ricordiamo: la RACCOLTA DEI GENERI ALIMENTARI a favore delle famiglie in difficoltà della nostra collaborazione (ATT. la Santa Messa prefestiva del 2 novembre è sospesa) , i SUSSIDI DALL’ALBA AL TRAMONTO per la meditazione e la preghiera personale nel mese di Novembre.


➡️SALUTO A DON FLAVIO domenica 3 novembre alla Messa delle 10.30 a Ponzano, don Flavio Schiavon presiederà la celebrazione per l’ultima volta come nostro collaboratore, per poi prendere servizio come parroco di Villorba e Catena. Sarà l’occasione, per chi lo desidera, di poterlo salutare e ringraziare.
➡️SCOUT riunione di gruppo lunedì 4 novembre alle ore 20.45 a Ponzano presso la Sala don Bosco.
➡️CATECHISMO 5a ELEMENTARE i genitori dei ragazzi che frequentano la 5a elementare sono invitati ad un incontro di avvio dell’anno catechistico, martedì 5 Novembre alle ore 20.45 presso l’oratorio di Merlengo.
➡️CATECHISMO 2a MEDIA i genitori dei ragazzi che frequentano la 2a media sono invitati ad un incontro di avvio dell’anno catechistico, mercoledì 6 Novembre alle ore 20.45 presso l’oratorio di Merlengo.

FESTA DI SAN LEONARDO PATRONO DI PONZANO
ricordato nel Calendario dei Santi mercoledì 6 novembre. Per questo motivo sabato 9 e domenica 10 novembre le Sante Messe a Ponzano saranno solennemente dedicate al Patrono San Leonardo Abate. In particolare domenica 10 novembre dopo la Santa Messa delle 10.30 ci sarà un brindisi sul sagrato della Chiesa a cura del Comitato Festeggiamenti di Ponzano e nel pomeriggio dalle ore 15.00, tutta la comunità è invitata in oratorio, alla Castagnata organizzata dal Circolo NOI di Ponzano. Tutte le informazioni sono consultabili nella locandina esposta in Chiesa, nel sito della Collaborazione.

➡️FESTA DI INIZIO GRUPPI GIOVANI sabato 9 novembre dalle ore 15.45, presso il Salone Don Bosco di Ponzano, tutti i ragazzi dalla 3a media fino al primo 1° anno di Università, che intendono frequentare i gruppi giovanili, sono invitati alla festa d’inizio delle attività dei vari gruppi. Nel sito della collaborazione è possibile visionare la locandina ed accedere al form per l’adesione. Le iscrizioni termineranno domenica 3 novembre.
➡️ CASTAGNATA DELLE SCUOLE DELL’INFANZIA le famiglie dei bambini che frequentano le tre scuole dell’infanzia della Collaborazione sono invitate dalle ore 16.00 di sabato 9 novembre alla Castagnata presso il Palazzetto di Paderno.

➡️GITA A RAVENNA E FAENZA chi desidera partecipare alla gita di due giorni presso le città di Ravenna e Faenza, organizzata dal NOI di Merlengo, è pregato di dare l’adesione entro domenica 3 novembre. Il programma e le informazioni sono presenti nella locandina nel sito della Collaborazione.