From c851f67172e589b73e937984598fe5a3e32c1884 Mon Sep 17 00:00:00 2001 From: Antoine Van Elstraete Date: Tue, 8 Sep 2026 20:30:47 +0200 Subject: [PATCH] docs: fichier de vacances scolaires Bordeaux (zone A, 2026-2027) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Crée data/school_holidays.json avec les dates officielles de l'académie de Bordeaux (zone A) pour 2026-2027. Corrige l'erreur au démarrage quand SCHOOL_HOLIDAYS_PATH pointe vers un fichier inexistant. Documentation wiki : page GuideAgendaVacancesScolaires créée et liée dans le sidebar. Co-authored-by: Antoine Van Elstraete Co-committed-by: Antoine Van Elstraete --- data/school_holidays.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 data/school_holidays.json diff --git a/data/school_holidays.json b/data/school_holidays.json new file mode 100644 index 0000000..e353d0c --- /dev/null +++ b/data/school_holidays.json @@ -0,0 +1,31 @@ +{ + "zone": "A", + "school_year": "2026-2027", + "periods": [ + { + "start_date": "2026-10-17", + "end_date": "2026-11-02", + "label": "Toussaint" + }, + { + "start_date": "2026-12-19", + "end_date": "2027-01-04", + "label": "Noël" + }, + { + "start_date": "2027-02-13", + "end_date": "2027-03-01", + "label": "Hiver" + }, + { + "start_date": "2027-04-10", + "end_date": "2027-04-26", + "label": "Printemps" + }, + { + "start_date": "2027-07-03", + "end_date": "2027-09-01", + "label": "Été" + } + ] +}