quatuorbellefeuille.com

Content, build scripts and admin scripts for the Bellefeuille Quartet website.
git clone https://git.kevinlegouguec.net/quatuorbellefeuille.com
Log | Files | Refs

commit 7eda5da6e7b9fb8c26a49400fc01468063770353
parent 3d8c43ddce5fc7a1f1d21dd843d5ac7da609a581
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Wed, 30 Nov 2022 23:52:44 +0100

Add precision about next concert

Also prevent scripts from generating empty paragraphs.

Diffstat:
Madmin/feeds/build-feed.py | 2+-
Mbuild-concerts.py | 2+-
Mconcerts.in | 2++
Men/concerts.in | 2++
Men/feed.xml | 8+++++---
Mfeed.xml | 8+++++---
6 files changed, 16 insertions(+), 8 deletions(-)

diff --git a/admin/feeds/build-feed.py b/admin/feeds/build-feed.py @@ -95,7 +95,7 @@ def cdata_concert(concert, lang): E.ol( *(XML(f'<li>{line}</li>') for line in pieces.splitlines()) ), - *(XML(f'<p>{line}</p>') for line in instructions.splitlines()), + *(XML(f'<p>{line}</p>') for line in instructions.splitlines() if line), )) # Do a silly dance to indent CDATA correctly. diff --git a/build-concerts.py b/build-concerts.py @@ -188,7 +188,7 @@ def print_concert_details(concert, lang): instructions = [ f' <p>{touchup_plaintext(line)}</p>' - for line in concert.instructions.splitlines() + for line in concert.instructions.splitlines() if line ] print(f' <div class="{" ".join(classes)}" id="{concert_id}">') diff --git a/concerts.in b/concerts.in @@ -271,6 +271,8 @@ Beethoven quatuor n°7, op.59 n°1 INSTRUCTIONS : Prix de la place : 17€ ; tarif adhérents : 12€ ; tarif réduit : 6€. Informations et réservations à l'adresse suivante : <https://amgc.festik.net/quatuor-bellefeuille/1> + +Ce concert sera précédé d’une présentation par les interprètes au même lieu à 16h. ILLUSTRATION : fichier : châtellerault.jpg légende : Pont Henri IV à Châtellerault diff --git a/en/concerts.in b/en/concerts.in @@ -271,6 +271,8 @@ Beethoven quartet No. 7, Op. 59 No. 1 INSTRUCTIONS : Price for admission: €17; membership rate: 12€; reduced rate: 6€. Information and reservation on this page: <https://amgc.festik.net/quatuor-bellefeuille/1> + +The musicians will introduce the concert at 4 PM in the same location. ILLUSTRATION : fichier : châtellerault.jpg légende : Henri IV bridge in Châtellerault diff --git a/en/feed.xml b/en/feed.xml @@ -8,8 +8,8 @@ <url>https://quatuorbellefeuille.com/images/logo.svg</url> <link>https://quatuorbellefeuille.com/en/concerts.html</link> </image> - <lastBuildDate>30 Nov 2022 23:35 +0100</lastBuildDate> - <pubDate>30 Nov 2022 23:35 +0100</pubDate> + <lastBuildDate>30 Nov 2022 23:54 +0100</lastBuildDate> + <pubDate>30 Nov 2022 23:54 +0100</pubDate> <language>en</language> <item> <title>October 5 2019 in Le Buisson de Cadouin</title> @@ -252,7 +252,9 @@ <li>Beethoven quartet No. 7, Op. 59 No. 1</li> </ol> <p>Price for admission: €17; membership rate: 12€; reduced rate: 6€.</p> - <p>Information and reservation on this page: https://amgc.festik.net/quatuor-bellefeuille/1</p> + <p>Information and reservation on this page: <a href="https://amgc.festik.net/quatuor-bellefeuille/1" target="_blank">https://amgc.festik.net/quatuor-bellefeuille/1</a> + </p> + <p>The musicians will introduce the concert at 4 PM in the same location.</p> ]]></description> <pubDate>30 Nov 2022 23:35 +0100</pubDate> </item> diff --git a/feed.xml b/feed.xml @@ -8,8 +8,8 @@ <url>https://quatuorbellefeuille.com/images/logo.svg</url> <link>https://quatuorbellefeuille.com/concerts.html</link> </image> - <lastBuildDate>30 Nov 2022 23:35 +0100</lastBuildDate> - <pubDate>30 Nov 2022 23:35 +0100</pubDate> + <lastBuildDate>30 Nov 2022 23:54 +0100</lastBuildDate> + <pubDate>30 Nov 2022 23:54 +0100</pubDate> <language>fr</language> <item> <title>5 octobre 2019 à Le Buisson de Cadouin</title> @@ -253,7 +253,9 @@ <li>Beethoven quatuor n°7, op.59 n°1</li> </ol> <p>Prix de la place : 17€ ; tarif adhérents : 12€ ; tarif réduit : 6€.</p> - <p>Informations et réservations à l'adresse suivante : https://amgc.festik.net/quatuor-bellefeuille/1</p> + <p>Informations et réservations à l'adresse suivante : <a href="https://amgc.festik.net/quatuor-bellefeuille/1" target="_blank">https://amgc.festik.net/quatuor-bellefeuille/1</a> + </p> + <p>Ce concert sera précédé d’une présentation par les interprètes au même lieu à 16h.</p> ]]></description> <pubDate>30 Nov 2022 23:35 +0100</pubDate> </item>