From 8c313d3366925c4dfec31248fed197e03210bee5 Mon Sep 17 00:00:00 2001 From: Cyrille L Date: Mon, 6 Mar 2023 15:42:53 +0100 Subject: [PATCH] navbar/sidebar. Changes in source config files --- src/var/lib/tyto/program/domain.py | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/src/var/lib/tyto/program/domain.py b/src/var/lib/tyto/program/domain.py index ee4cfe9..9aa95b1 100644 --- a/src/var/lib/tyto/program/domain.py +++ b/src/var/lib/tyto/program/domain.py @@ -633,8 +633,10 @@ def create_sidebar(option): '# (depuis articles/)\n' + \ '# Ne commence pas par "/"\n' + \ '# L\'ordre définit la position\n' + \ - '\n# %s\n'%(15 * "-") +\ + '# Option : : Titre de la sidebar\n' + \ + '\n# %s\n'%(15 * "-") + \ '# Exemples :\n' + \ + '# : Ma liste des nouveaux articles\n' + \ '# index.tyto\n' + \ '# dir1/index.tyto\n' + \ '# %s\n\n'%(15 * "-") @@ -643,7 +645,7 @@ def create_sidebar(option): sdb_load_en = \ '# For: Tyto - Littérateur\n' + \ '# Type: Text file\n' + \ - '# Description: file used with "tyto wip/publish"\n' + \ + '# Description: Used with "wip/publish sidebar"\n' + \ '# (articles\'s list)\n' + \ '# File: %s\n'%db.sidebar_load + \ '# Commands: tyto new sidebar (reset)\n' + \ @@ -653,8 +655,10 @@ def create_sidebar(option): '# (from articles/)\n' + \ '# not begining with "/"\n' + \ '# Order in sidebar position\n' + \ - '\n# %s\n'%(15 * "-") +\ + '# Option: : Sidebar Title\n' + \ + '\n# %s\n'%(15 * "-") + \ '# Examples :\n' + \ + '# : My new articles list' '# index.tyto\n' + \ '# dir1/index.tyto\n' + \ '# %s\n\n'%(15 * "-") @@ -696,8 +700,8 @@ def create_navbar(option): # French navbar_load content nav_load_fr = '# Pour : Tyto - Littérateur\n' + \ '# Type : fichier texte\n' + \ - '# Description : Fichier utilisé par "tyto wip/publish"\n' + \ - '# (Liste des catégories)\n' + \ + '# Description : Utilisé par "wip/publish sidebar"\n' + \ + '# (Liste des dossiers)\n' + \ '# Fichier : %s\n'%db.navbar_load + \ '# Comment : 1 nom de dossier par ligne *1\n' + \ '# (depuis articles/)\n' + \ @@ -718,8 +722,8 @@ def create_navbar(option): # English navbar_load content nav_load_en = '# For: Tyto - Littérateur\n' + \ '# Type: Text file\n' + \ - '# Description: file used with "tyto wip/publish"\n' + \ - '# (categories\'s list)\n' + \ + '# Description: Used with "wip/publish navbar"\n' + \ + '# (directories\'s list)\n' + \ '# File : %s\n'%db.navbar_load + \ '# Comment: 1 folder name per line *1\n' + \ '# (from articles/)\n' + \