From e6a69b8441da4d37453649f5909af8639b7433fa Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Sun, 9 Jan 2022 13:08:54 +0100 Subject: [PATCH] password => secret --- doc/variable/README.md | 2 +- src/rougail/annotator/variable.py | 1 + src/rougail/data/rougail.dtd | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/variable/README.md b/doc/variable/README.md index 50f2e4b2..e7398c64 100644 --- a/doc/variable/README.md +++ b/doc/variable/README.md @@ -39,7 +39,7 @@ Une variable a un type. Ce type permet de définir les valeurs acceptées par ce - number : un nombre - float : un chiffre flottant - boolean : "True" ou "False", si aucune valeur n'est défini la valeur par défaut de cette variable sera "True", ces variables sont également obligatoire par défaut -- password : un mot de passe +- secret (ou password mais est obsolète) : un secret (comme un mot de passe, une clef privée, ...) - mail : une adresse mail - filename : nom de fichier au sens Unix (exemple : "/etc/passwd") - date : une date au format "%Y-%m-%d" (exemple : "2021-01-30") diff --git a/src/rougail/annotator/variable.py b/src/rougail/annotator/variable.py index d6b4b677..0fafa9b0 100644 --- a/src/rougail/annotator/variable.py +++ b/src/rougail/annotator/variable.py @@ -35,6 +35,7 @@ CONVERT_OPTION = {'number': dict(opttype="IntOption", func=int), 'choice': dict(opttype="ChoiceOption"), 'string': dict(opttype="StrOption"), 'password': dict(opttype="PasswordOption"), + 'secret': dict(opttype="PasswordOption"), 'mail': dict(opttype="EmailOption"), 'boolean': dict(opttype="BoolOption", func=convert_boolean), 'symlink': dict(opttype="SymLinkOption"), diff --git a/src/rougail/data/rougail.dtd b/src/rougail/data/rougail.dtd index 64a31164..61f2ba6f 100644 --- a/src/rougail/data/rougail.dtd +++ b/src/rougail/data/rougail.dtd @@ -93,7 +93,7 @@ - +