This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository nuiton-config. See https://gitlab.nuiton.org/nuiton/nuiton-config.git commit e6611a047d7178f077c7ce3ffcbde4b4c28efe5b Author: Tony CHEMIT <chemit@codelutin.com> Date: Sun Oct 2 13:44:53 2016 +0200 Use toml format in example --- .../src/main/config/NuitonConfigExample.toml | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/nuiton-config-example/src/main/config/NuitonConfigExample.toml b/nuiton-config-example/src/main/config/NuitonConfigExample.toml new file mode 100644 index 0000000..5c69a8c --- /dev/null +++ b/nuiton-config-example/src/main/config/NuitonConfigExample.toml @@ -0,0 +1,51 @@ +description = "Exemple de configuration" + +[[options]] +name = "firstName" +key = "identity.firstName" +description = "Prénom de l'utilisateur" +type = "string" +defaultValue = "Joshua" +_transient = false +_final = false + +[[options]] +name = "lastName" +key = "identity.lastName" +description = "Nom de l'utilisateur" +type = "string" +defaultValue = "Bloch" +_transient = false +_final = false + +[[options]] +name = "email" +key = "identity.email" +description = "Courriel de l'utilisateur" +type = "string" +_transient = false +_final = false + +[[options]] +name = "twitter" +key = "identity.twitter" +description = "Compte Twitter de l'utilisateur" +type = "string" +defaultValue = "jbloch" +_transient = false +_final = false + +[[options]] +name = "age" +key = "identity.age" +description = "age de l'utilisateur" +type = "int" +defaultValue = "56" +_transient = false +_final = false + +[[actions]] +name = "help" +description = "Pour afficher l'aide" +action = "org.nuiton.config.example.NuitonConfigExample#help" +aliases = ["-h", "--help"] -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.