Compare commits
No commits in common. "main" and "0.1.0rc0" have entirely different histories.
621 changed files with 11163 additions and 6791 deletions
CHANGELOG.mdpyproject.toml
src/rougail/output_doc
tests/docs/base
00_0version_underscore.adoc00_0version_underscore.md00_1empty_variable.adoc00_1empty_variable.md00_2default_calculated.adoc00_2default_calculated.md00_2default_calculated_multi.adoc00_2default_calculated_multi.md00_2default_calculated_variable_transitive.adoc00_2default_calculated_variable_transitive.md00_4load_subfolder.adoc00_4load_subfolder.md00_5load_notype.adoc00_5load_notype.md00_6boolean.adoc00_6boolean.md00_6boolean_no_mandatory.adoc00_6boolean_no_mandatory.md00_6choice.adoc00_6choice.md00_6choice_calculation.adoc00_6choice_calculation.md00_6choice_variable.adoc00_6choice_variable.md00_6custom.adoc00_6custom.md00_6domainname.adoc00_6domainname.md00_6domainname_params.adoc00_6domainname_params.md00_6float.adoc00_6float.md00_6number.adoc00_6number.md00_6port.adoc00_6port.md00_6regexp.adoc00_6regexp.md00_6string.adoc00_6string.md00_7choice_quote.adoc00_7choice_quote.md00_7help_quote.adoc00_7help_quote.md00_7value_doublequote.adoc00_7value_doublequote.md00_7value_doublequote2.adoc00_7value_doublequote2.md00_7value_doublequote3.adoc00_7value_doublequote3.md00_7value_quote.adoc00_7value_quote.md00_8calculation_information.adoc00_8calculation_information.md00_8test.adoc00_8test.md00_9choice_variable_multi.adoc00_9choice_variable_multi.md00_9choice_variables.adoc00_9choice_variables.md00_9default_calculation.adoc00_9default_calculation.md00_9default_calculation_information.adoc00_9default_calculation_information.md00_9default_calculation_information_other_variable.adoc00_9default_calculation_information_other_variable.md00_9default_calculation_multi_optional.adoc00_9default_calculation_multi_optional.md00_9default_calculation_multi_optional2.adoc00_9default_calculation_multi_optional2.md00_9default_calculation_optional.adoc00_9default_calculation_optional.md00_9default_calculation_optional_exists.adoc00_9default_calculation_optional_exists.md00_9default_calculation_param_optional.adoc00_9default_calculation_param_optional.md00_9default_information_other_variable.adoc00_9default_information_other_variable.md00_9default_integer.adoc00_9default_integer.md00_9extra.adoc00_9extra.md00_9extra_calculation.adoc00_9extra_calculation.md01_6boolean_multi.adoc01_6boolean_multi.md01_6custom_multi.adoc01_6custom_multi.md01_6float_multi.adoc01_6float_multi.md01_6number_multi.adoc01_6number_multi.md01_6string_empty.adoc01_6string_empty.md01_6string_multi.adoc01_6string_multi.md01_7value_multi_doublequote.adoc
|
@ -1,10 +1,3 @@
|
|||
## 0.1.0rc1 (2024-11-06)
|
||||
|
||||
### Fix
|
||||
|
||||
- support variable dynamic with test as values
|
||||
- update rougail dependency
|
||||
|
||||
## 0.1.0rc0 (2024-11-01)
|
||||
|
||||
### Feat
|
||||
|
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "rougail.output_doc"
|
||||
version = "0.1.0"
|
||||
version = "0.1.0rc0"
|
||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||
readme = "README.md"
|
||||
description = "Rougail output doc"
|
||||
|
@ -25,7 +25,7 @@ classifiers = [
|
|||
|
||||
]
|
||||
dependencies = [
|
||||
"rougail ~= 1.1,<2",
|
||||
"rougail ~= 1.1.0",
|
||||
"tabulate ~= 0.9.0",
|
||||
]
|
||||
|
||||
|
@ -37,5 +37,5 @@ name = "cz_conventional_commits"
|
|||
tag_format = "$version"
|
||||
version_scheme = "pep440"
|
||||
version_provider = "pep621"
|
||||
#update_changelog_on_bump = true
|
||||
update_changelog_on_bump = true
|
||||
changelog_merge_prerelease = true
|
||||
|
|
|
@ -59,8 +59,6 @@ class Annotator(Walk):
|
|||
values = self.objectspace.informations.get(variable.path).get("examples", None)
|
||||
if not values:
|
||||
values = self.objectspace.informations.get(variable.path).get("test", None)
|
||||
if isinstance(values, tuple):
|
||||
values = list(values)
|
||||
return values
|
||||
|
||||
def add_default_value(
|
||||
|
|
|
@ -5,15 +5,29 @@
|
|||
_version: '1.1'
|
||||
version: # a variable
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="107a,107a",options="header"]
|
||||
[cols="105a,105a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.version** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` |
|
||||
A variable.
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
A variable.
|
||||
|====
|
||||
|
||||
|
||||
== Example with mandatory variables not filled in
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
version: example
|
||||
----
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
version: example
|
||||
----
|
||||
|
|
|
@ -9,10 +9,24 @@ include_toc: true
|
|||
_version: '1.1'
|
||||
version: # a variable
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.version**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | A variable. |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.version**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||
|
||||
|
||||
# Example with mandatory variables not filled in
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
version: example
|
||||
```
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
version: example
|
||||
```
|
||||
|
|
|
@ -5,15 +5,29 @@
|
|||
version: '1.0'
|
||||
empty:
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="107a,107a",options="header"]
|
||||
[cols="105a,105a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.empty** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` |
|
||||
Empty.
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
Empty.
|
||||
|====
|
||||
|
||||
|
||||
== Example with mandatory variables not filled in
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
empty: example
|
||||
----
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
empty: example
|
||||
----
|
||||
|
|
|
@ -9,10 +9,24 @@ include_toc: true
|
|||
version: '1.0'
|
||||
empty:
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.empty**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | Empty. |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.empty**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Empty. |
|
||||
|
||||
|
||||
# Example with mandatory variables not filled in
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
empty: example
|
||||
```
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
empty: example
|
||||
```
|
||||
|
|
|
@ -8,25 +8,35 @@ var2:
|
|||
description: a second variable
|
||||
multi: true
|
||||
default:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{{ _.var1 }}
|
||||
description: the value of var1
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="130a,130a",options="header"]
|
||||
[cols="128a,128a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A first variable. +
|
||||
**Défaut**: no
|
||||
**Default**: no
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A second variable. +
|
||||
**Défaut**: the value of var1.
|
||||
**Default**: the value of var1.
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: no
|
||||
var2:
|
||||
- no
|
||||
----
|
||||
|
|
|
@ -12,15 +12,25 @@ var2:
|
|||
description: a second variable
|
||||
multi: true
|
||||
default:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{{ _.var1 }}
|
||||
description: the value of var1
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A first variable.<br/>**Défaut**: no |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | A second variable.<br/>**Défaut**: the value of var1. |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Default**: no |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: the value of var1. |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: no
|
||||
var2:
|
||||
- no
|
||||
```
|
||||
|
|
|
@ -11,31 +11,46 @@ var2:
|
|||
description: a second variable
|
||||
multi: true
|
||||
default:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{% for val in _.var1 %}
|
||||
{{ val }}
|
||||
{% endfor %}
|
||||
description: the value of _.var1
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="130a,130a",options="header"]
|
||||
[cols="128a,128a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A first variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* no
|
||||
* yes
|
||||
* maybe
|
||||
* maybe
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A second variable. +
|
||||
**Défaut**: the value of _.var1.
|
||||
**Default**: the value of _.var1.
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1:
|
||||
- no
|
||||
- yes
|
||||
- maybe
|
||||
var2:
|
||||
- no
|
||||
- yes
|
||||
- maybe
|
||||
----
|
||||
|
|
|
@ -15,17 +15,32 @@ var2:
|
|||
description: a second variable
|
||||
multi: true
|
||||
default:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{% for val in _.var1 %}
|
||||
{{ val }}
|
||||
{% endfor %}
|
||||
description: the value of _.var1
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | A first variable.<br/>**Défaut**: <br/>- no<br/>- yes<br/>- maybe |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | A second variable.<br/>**Défaut**: the value of _.var1. |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A first variable.<br/>**Default**: <br/>- no<br/>- yes<br/>- maybe |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: the value of _.var1. |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1:
|
||||
- no
|
||||
- yes
|
||||
- maybe
|
||||
var2:
|
||||
- no
|
||||
- yes
|
||||
- maybe
|
||||
```
|
||||
|
|
|
@ -1,38 +0,0 @@
|
|||
== dictionaries/rougail/00-base.yml
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
version: 1.1
|
||||
|
||||
var1:
|
||||
description: a first variable
|
||||
multi: true
|
||||
type: domainname
|
||||
params:
|
||||
allow_ip: true
|
||||
|
||||
var2:
|
||||
description: a second variable
|
||||
default:
|
||||
type: variable
|
||||
variable: _.var1
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
|
||||
[cols="134a,134a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `obligatoire` `unique` `multiple` |
|
||||
A first variable. +
|
||||
**Validator**: le nom de domaine peut être une IP
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `obligatoire` `unique` `multiple` |
|
||||
A second variable. +
|
||||
**Validator**: le nom de domaine peut être une IP +
|
||||
**Défaut**: la valeur de la variable "rougail.var1".
|
||||
|====
|
||||
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
---
|
||||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
# dictionaries/rougail/00-base.yml
|
||||
|
||||
```yaml
|
||||
---
|
||||
version: 1.1
|
||||
|
||||
var1:
|
||||
description: a first variable
|
||||
multi: true
|
||||
type: domainname
|
||||
params:
|
||||
allow_ip: true
|
||||
|
||||
var2:
|
||||
description: a second variable
|
||||
default:
|
||||
type: variable
|
||||
variable: _.var1
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` `unique` `multiple` | A first variable.<br/>**Validator**: le nom de domaine peut être une IP |
|
||||
| **rougail.var2**<br/>[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | A second variable.<br/>**Validator**: le nom de domaine peut être une IP<br/>**Défaut**: la valeur de la variable "rougail.var1". |
|
||||
|
||||
|
|
@ -14,19 +14,35 @@ version: '1.0'
|
|||
var2:
|
||||
description: a variable
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="107a,107a",options="header"]
|
||||
[cols="105a,105a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` |
|
||||
A variable.
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
A variable.
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` |
|
||||
A variable.
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
A variable.
|
||||
|====
|
||||
|
||||
|
||||
== Example with mandatory variables not filled in
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
----
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
----
|
||||
|
|
|
@ -18,11 +18,27 @@ version: '1.0'
|
|||
var2:
|
||||
description: a variable
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | A variable. |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | A variable. |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||
|
||||
|
||||
# Example with mandatory variables not filled in
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
```
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
```
|
||||
|
|
|
@ -7,16 +7,23 @@ without_type:
|
|||
description: a variable
|
||||
default: non
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.without_type** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A variable. +
|
||||
**Défaut**: non
|
||||
**Default**: non
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
without_type: non
|
||||
----
|
||||
|
|
|
@ -11,10 +11,17 @@ without_type:
|
|||
description: a variable
|
||||
default: non
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.without_type**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A variable.<br/>**Défaut**: non |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.without_type**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: non |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
without_type: non
|
||||
```
|
||||
|
|
|
@ -20,41 +20,53 @@ var6:
|
|||
type: boolean
|
||||
default: false
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="111a,111a",options="header"]
|
||||
[cols="109a,109a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
||||
The first variable. +
|
||||
**Défaut**: True
|
||||
**Default**: True
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
||||
The second variable. +
|
||||
**Défaut**: True
|
||||
**Default**: True
|
||||
|
|
||||
**rougail.var3** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
||||
The third variable. +
|
||||
**Défaut**: True
|
||||
**Default**: True
|
||||
|
|
||||
**rougail.var4** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
||||
The forth variable. +
|
||||
**Défaut**: False
|
||||
**Default**: False
|
||||
|
|
||||
**rougail.var5** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
||||
The fifth variable. +
|
||||
**Défaut**: False
|
||||
**Default**: False
|
||||
|
|
||||
**rougail.var6** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
||||
The sixth variable. +
|
||||
**Défaut**: False
|
||||
**Default**: False
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: true
|
||||
var2: true
|
||||
var3: true
|
||||
var4: false
|
||||
var5: false
|
||||
var6: false
|
||||
----
|
||||
|
|
|
@ -24,15 +24,27 @@ var6:
|
|||
type: boolean
|
||||
default: false
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The first variable.<br/>**Défaut**: True |
|
||||
| **rougail.var2**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The second variable.<br/>**Défaut**: True |
|
||||
| **rougail.var3**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The third variable.<br/>**Défaut**: True |
|
||||
| **rougail.var4**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The forth variable.<br/>**Défaut**: False |
|
||||
| **rougail.var5**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The fifth variable.<br/>**Défaut**: False |
|
||||
| **rougail.var6**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The sixth variable.<br/>**Défaut**: False |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first variable.<br/>**Default**: True |
|
||||
| **rougail.var2**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Default**: True |
|
||||
| **rougail.var3**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The third variable.<br/>**Default**: True |
|
||||
| **rougail.var4**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The forth variable.<br/>**Default**: False |
|
||||
| **rougail.var5**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Default**: False |
|
||||
| **rougail.var6**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.<br/>**Default**: False |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: true
|
||||
var2: true
|
||||
var3: true
|
||||
var4: false
|
||||
var5: false
|
||||
var6: false
|
||||
```
|
||||
|
|
|
@ -8,7 +8,7 @@ variable:
|
|||
type: boolean
|
||||
mandatory: false
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="97a,97a",options="header"]
|
||||
|====
|
||||
|
@ -17,7 +17,14 @@ variable:
|
|||
**rougail.variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` |
|
||||
A variable. +
|
||||
**Défaut**: True
|
||||
**Default**: True
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
variable: true
|
||||
----
|
||||
|
|
|
@ -12,10 +12,17 @@ variable:
|
|||
type: boolean
|
||||
mandatory: false
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.<br/>**Défaut**: True |
|
||||
| **rougail.variable**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.<br/>**Default**: True |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
variable: true
|
||||
```
|
||||
|
|
|
@ -44,66 +44,86 @@ var6:
|
|||
- 3
|
||||
default: 1
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` |
|
||||
The first variable. +
|
||||
**Choix**:
|
||||
**Choices**:
|
||||
|
||||
* a
|
||||
* b
|
||||
* c
|
||||
* c
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` |
|
||||
The second variable. +
|
||||
**Choix**:
|
||||
**Choices**:
|
||||
|
||||
* a
|
||||
* b
|
||||
* c
|
||||
* c
|
||||
|
|
||||
**rougail.var3** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` |
|
||||
The third variable. +
|
||||
**Choix**:
|
||||
**Choices**:
|
||||
|
||||
* a
|
||||
* b
|
||||
* c
|
||||
* null
|
||||
* null
|
||||
|
|
||||
**rougail.var4** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` |
|
||||
The forth variable. +
|
||||
**Choix**:
|
||||
**Choices**:
|
||||
|
||||
* null
|
||||
* b
|
||||
* c
|
||||
* c
|
||||
|
|
||||
**rougail.var5** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
||||
The fifth variable. +
|
||||
**Choix**:
|
||||
**Choices**:
|
||||
|
||||
* a ← (defaut)
|
||||
* a ← (default)
|
||||
* b
|
||||
* c
|
||||
* c
|
||||
|
|
||||
**rougail.var6** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
||||
The sixth variable. +
|
||||
**Choix**:
|
||||
**Choices**:
|
||||
|
||||
* 1 ← (defaut)
|
||||
* 1 ← (default)
|
||||
* 2
|
||||
* 3
|
||||
* 3
|
||||
|====
|
||||
|
||||
|
||||
== Example with mandatory variables not filled in
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: a_choice
|
||||
var2: a_choice
|
||||
----
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: a_choice
|
||||
var2: a_choice
|
||||
var3: a_choice
|
||||
var4: a_choice
|
||||
var5: a
|
||||
var6: 1
|
||||
----
|
||||
|
|
|
@ -48,15 +48,35 @@ var6:
|
|||
- 3
|
||||
default: 1
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | The first variable.<br/>**Choix**: <br/>- a<br/>- b<br/>- c |
|
||||
| **rougail.var2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | The second variable.<br/>**Choix**: <br/>- a<br/>- b<br/>- c |
|
||||
| **rougail.var3**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The third variable.<br/>**Choix**: <br/>- a<br/>- b<br/>- c<br/>- null |
|
||||
| **rougail.var4**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The forth variable.<br/>**Choix**: <br/>- null<br/>- b<br/>- c |
|
||||
| **rougail.var5**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The fifth variable.<br/>**Choix**: <br/>- a ← (defaut)<br/>- b<br/>- c |
|
||||
| **rougail.var6**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The sixth variable.<br/>**Choix**: <br/>- 1 ← (defaut)<br/>- 2<br/>- 3 |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Choices**: <br/>- a<br/>- b<br/>- c |
|
||||
| **rougail.var2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable.<br/>**Choices**: <br/>- a<br/>- b<br/>- c |
|
||||
| **rougail.var3**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The third variable.<br/>**Choices**: <br/>- a<br/>- b<br/>- c<br/>- null |
|
||||
| **rougail.var4**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The forth variable.<br/>**Choices**: <br/>- null<br/>- b<br/>- c |
|
||||
| **rougail.var5**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Choices**: <br/>- a ← (default)<br/>- b<br/>- c |
|
||||
| **rougail.var6**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.<br/>**Choices**: <br/>- 1 ← (default)<br/>- 2<br/>- 3 |
|
||||
|
||||
|
||||
# Example with mandatory variables not filled in
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: a_choice
|
||||
var2: a_choice
|
||||
```
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: a_choice
|
||||
var2: a_choice
|
||||
var3: a_choice
|
||||
var4: a_choice
|
||||
var5: a
|
||||
var6: 1
|
||||
```
|
||||
|
|
|
@ -7,6 +7,7 @@ var:
|
|||
description: a variable
|
||||
default: 9
|
||||
choices:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{% for n in trange(0, 10) %}
|
||||
{{ n }}
|
||||
|
@ -14,17 +15,24 @@ var:
|
|||
return_type: number
|
||||
description: choices is 0 to 9
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
||||
A variable. +
|
||||
**Choix**: choices is 0 to 9. +
|
||||
**Défaut**: 9
|
||||
**Choices**: choices is 0 to 9. +
|
||||
**Default**: 9
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var: 9
|
||||
----
|
||||
|
|
|
@ -11,6 +11,7 @@ var:
|
|||
description: a variable
|
||||
default: 9
|
||||
choices:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{% for n in trange(0, 10) %}
|
||||
{{ n }}
|
||||
|
@ -18,10 +19,17 @@ var:
|
|||
return_type: number
|
||||
description: choices is 0 to 9
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A variable.<br/>**Choix**: choices is 0 to 9.<br/>**Défaut**: 9 |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Choices**: choices is 0 to 9.<br/>**Default**: 9 |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var: 9
|
||||
```
|
||||
|
|
|
@ -11,28 +11,40 @@ var2:
|
|||
description: a first variable
|
||||
default: a
|
||||
choices:
|
||||
type: variable
|
||||
variable: _.var1
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A second variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* a
|
||||
* b
|
||||
* c
|
||||
* c
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
||||
A first variable. +
|
||||
**Choix**: la valeur de la variable "rougail.var1". +
|
||||
**Défaut**: a
|
||||
**Choices**: the value of the variable "rougail.var1". +
|
||||
**Default**: a
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1:
|
||||
- a
|
||||
- b
|
||||
- c
|
||||
var2: a
|
||||
----
|
||||
|
|
|
@ -15,13 +15,25 @@ var2:
|
|||
description: a first variable
|
||||
default: a
|
||||
choices:
|
||||
type: variable
|
||||
variable: _.var1
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | A second variable.<br/>**Défaut**: <br/>- a<br/>- b<br/>- c |
|
||||
| **rougail.var2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A first variable.<br/>**Choix**: la valeur de la variable "rougail.var1".<br/>**Défaut**: a |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: <br/>- a<br/>- b<br/>- c |
|
||||
| **rougail.var2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Choices**: the value of the variable "rougail.var1".<br/>**Default**: a |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1:
|
||||
- a
|
||||
- b
|
||||
- c
|
||||
var2: a
|
||||
```
|
||||
|
|
|
@ -11,20 +11,35 @@ custom2:
|
|||
type: custom
|
||||
default: value
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.custom1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `obligatoire` |
|
||||
The first variable.
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` |
|
||||
The first variable.
|
||||
|
|
||||
**rougail.custom2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` |
|
||||
The seconf variable. +
|
||||
**Défaut**: value
|
||||
**Default**: value
|
||||
|====
|
||||
|
||||
|
||||
== Example with mandatory variables not filled in
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
custom1: xxx
|
||||
----
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
custom1: xxx
|
||||
custom2: value
|
||||
----
|
||||
|
|
|
@ -15,11 +15,26 @@ custom2:
|
|||
type: custom
|
||||
default: value
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.custom1**<br/>[`custom`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | The first variable. |
|
||||
| **rougail.custom2**<br/>[`custom`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The seconf variable.<br/>**Défaut**: value |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.custom1**<br/>[`custom`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable. |
|
||||
| **rougail.custom2**<br/>[`custom`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The seconf variable.<br/>**Default**: value |
|
||||
|
||||
|
||||
# Example with mandatory variables not filled in
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
custom1: xxx
|
||||
```
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
custom1: xxx
|
||||
custom2: value
|
||||
```
|
||||
|
|
|
@ -8,16 +8,23 @@ variable:
|
|||
type: domainname
|
||||
default: my.domain.name
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="114a,114a",options="header"]
|
||||
[cols="112a,112a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` |
|
||||
A domain name variable. +
|
||||
**Défaut**: my.domain.name
|
||||
**Default**: my.domain.name
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
variable: my.domain.name
|
||||
----
|
||||
|
|
|
@ -12,10 +12,17 @@ variable:
|
|||
type: domainname
|
||||
default: my.domain.name
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A domain name variable.<br/>**Défaut**: my.domain.name |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A domain name variable.<br/>**Default**: my.domain.name |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
variable: my.domain.name
|
||||
```
|
||||
|
|
|
@ -10,17 +10,24 @@ variable:
|
|||
params:
|
||||
allow_ip: true
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="114a,114a",options="header"]
|
||||
[cols="112a,112a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` |
|
||||
A domain name variable. +
|
||||
**Validator**: le nom de domaine peut être une IP +
|
||||
**Défaut**: my.domain.name
|
||||
**Validator**: the domain name can be an IP +
|
||||
**Default**: my.domain.name
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
variable: my.domain.name
|
||||
----
|
||||
|
|
|
@ -14,10 +14,17 @@ variable:
|
|||
params:
|
||||
allow_ip: true
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A domain name variable.<br/>**Validator**: le nom de domaine peut être une IP<br/>**Défaut**: my.domain.name |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A domain name variable.<br/>**Validator**: the domain name can be an IP<br/>**Default**: my.domain.name |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
variable: my.domain.name
|
||||
```
|
||||
|
|
|
@ -20,41 +20,53 @@ var6:
|
|||
type: float
|
||||
default: 10.1
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="109a,109a",options="header"]
|
||||
[cols="107a,107a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
||||
The first variable. +
|
||||
**Défaut**: 0.0
|
||||
**Default**: 0.0
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
||||
The second variable. +
|
||||
**Défaut**: 0.0
|
||||
**Default**: 0.0
|
||||
|
|
||||
**rougail.var3** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
||||
The third variable. +
|
||||
**Défaut**: 0.0
|
||||
**Default**: 0.0
|
||||
|
|
||||
**rougail.var4** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
||||
The forth variable. +
|
||||
**Défaut**: 10.1
|
||||
**Default**: 10.1
|
||||
|
|
||||
**rougail.var5** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
||||
The fifth variable. +
|
||||
**Défaut**: 10.1
|
||||
**Default**: 10.1
|
||||
|
|
||||
**rougail.var6** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
||||
The sixth variable. +
|
||||
**Défaut**: 10.1
|
||||
**Default**: 10.1
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: 0.0
|
||||
var2: 0.0
|
||||
var3: 0.0
|
||||
var4: 10.1
|
||||
var5: 10.1
|
||||
var6: 10.1
|
||||
----
|
||||
|
|
|
@ -24,15 +24,27 @@ var6:
|
|||
type: float
|
||||
default: 10.1
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The first variable.<br/>**Défaut**: 0.0 |
|
||||
| **rougail.var2**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The second variable.<br/>**Défaut**: 0.0 |
|
||||
| **rougail.var3**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The third variable.<br/>**Défaut**: 0.0 |
|
||||
| **rougail.var4**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The forth variable.<br/>**Défaut**: 10.1 |
|
||||
| **rougail.var5**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The fifth variable.<br/>**Défaut**: 10.1 |
|
||||
| **rougail.var6**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The sixth variable.<br/>**Défaut**: 10.1 |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first variable.<br/>**Default**: 0.0 |
|
||||
| **rougail.var2**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Default**: 0.0 |
|
||||
| **rougail.var3**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The third variable.<br/>**Default**: 0.0 |
|
||||
| **rougail.var4**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The forth variable.<br/>**Default**: 10.1 |
|
||||
| **rougail.var5**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Default**: 10.1 |
|
||||
| **rougail.var6**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.<br/>**Default**: 10.1 |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: 0.0
|
||||
var2: 0.0
|
||||
var3: 0.0
|
||||
var4: 10.1
|
||||
var5: 10.1
|
||||
var6: 10.1
|
||||
```
|
||||
|
|
|
@ -20,41 +20,53 @@ var6:
|
|||
type: number
|
||||
default: 10
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `mandatory` |
|
||||
The first variable. +
|
||||
**Défaut**: 0
|
||||
**Default**: 0
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `mandatory` |
|
||||
The second variable. +
|
||||
**Défaut**: 0
|
||||
**Default**: 0
|
||||
|
|
||||
**rougail.var3** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `mandatory` |
|
||||
The third variable. +
|
||||
**Défaut**: 0
|
||||
**Default**: 0
|
||||
|
|
||||
**rougail.var4** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `mandatory` |
|
||||
This forth variable. +
|
||||
**Défaut**: 10
|
||||
**Default**: 10
|
||||
|
|
||||
**rougail.var5** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `mandatory` |
|
||||
The fifth variable. +
|
||||
**Défaut**: 10
|
||||
**Default**: 10
|
||||
|
|
||||
**rougail.var6** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `mandatory` |
|
||||
The sixth variable. +
|
||||
**Défaut**: 10
|
||||
**Default**: 10
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: 0
|
||||
var2: 0
|
||||
var3: 0
|
||||
var4: 10
|
||||
var5: 10
|
||||
var6: 10
|
||||
----
|
||||
|
|
|
@ -24,15 +24,27 @@ var6:
|
|||
type: number
|
||||
default: 10
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The first variable.<br/>**Défaut**: 0 |
|
||||
| **rougail.var2**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The second variable.<br/>**Défaut**: 0 |
|
||||
| **rougail.var3**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The third variable.<br/>**Défaut**: 0 |
|
||||
| **rougail.var4**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | This forth variable.<br/>**Défaut**: 10 |
|
||||
| **rougail.var5**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The fifth variable.<br/>**Défaut**: 10 |
|
||||
| **rougail.var6**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The sixth variable.<br/>**Défaut**: 10 |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first variable.<br/>**Default**: 0 |
|
||||
| **rougail.var2**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Default**: 0 |
|
||||
| **rougail.var3**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The third variable.<br/>**Default**: 0 |
|
||||
| **rougail.var4**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | This forth variable.<br/>**Default**: 10 |
|
||||
| **rougail.var5**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Default**: 10 |
|
||||
| **rougail.var6**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.<br/>**Default**: 10 |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: 0
|
||||
var2: 0
|
||||
var3: 0
|
||||
var4: 10
|
||||
var5: 10
|
||||
var6: 10
|
||||
```
|
||||
|
|
|
@ -1,39 +0,0 @@
|
|||
== dictionaries/rougail/00-base.yml
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
version: '1.1'
|
||||
variable1:
|
||||
description: a port variable
|
||||
type: port
|
||||
variable2:
|
||||
description: a port variable with default value
|
||||
type: port
|
||||
default: '8080'
|
||||
variable3:
|
||||
description: a port variable with integer default value
|
||||
type: port
|
||||
default: 8080
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.variable1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `basic` `obligatoire` |
|
||||
A port variable.
|
||||
|
|
||||
**rougail.variable2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `obligatoire` |
|
||||
A port variable with default value. +
|
||||
**Défaut**: 8080
|
||||
|
|
||||
**rougail.variable3** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `obligatoire` |
|
||||
A port variable with integer default value. +
|
||||
**Défaut**: 8080
|
||||
|====
|
||||
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
---
|
||||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
# dictionaries/rougail/00-base.yml
|
||||
|
||||
```yaml
|
||||
---
|
||||
version: '1.1'
|
||||
variable1:
|
||||
description: a port variable
|
||||
type: port
|
||||
variable2:
|
||||
description: a port variable with default value
|
||||
type: port
|
||||
default: '8080'
|
||||
variable3:
|
||||
description: a port variable with integer default value
|
||||
type: port
|
||||
default: 8080
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable1**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | A port variable. |
|
||||
| **rougail.variable2**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A port variable with default value.<br/>**Défaut**: 8080 |
|
||||
| **rougail.variable3**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A port variable with integer default value.<br/>**Défaut**: 8080 |
|
||||
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
== dictionaries/rougail/00-base.yml
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
version: '1.1'
|
||||
var:
|
||||
description: a first variable
|
||||
regexp: ^#(?:[0-9a-f]{3}){1,2}$
|
||||
default: '#a1a1a1'
|
||||
test:
|
||||
- '#b1b1b1'
|
||||
- '#b2b2b2'
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `obligatoire` |
|
||||
A first variable. +
|
||||
**Défaut**: #a1a1a1 +
|
||||
**Exemple**: #b1b1b1
|
||||
|====
|
||||
|
||||
|
|
@ -1,24 +0,0 @@
|
|||
---
|
||||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
# dictionaries/rougail/00-base.yml
|
||||
|
||||
```yaml
|
||||
---
|
||||
version: '1.1'
|
||||
var:
|
||||
description: a first variable
|
||||
regexp: ^#(?:[0-9a-f]{3}){1,2}$
|
||||
default: '#a1a1a1'
|
||||
test:
|
||||
- '#b1b1b1'
|
||||
- '#b2b2b2'
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var**<br/>[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A first variable.<br/>**Défaut**: #a1a1a1<br/>**Exemple**: #b1b1b1 |
|
||||
|
||||
|
|
@ -19,38 +19,59 @@ var6:
|
|||
type: string
|
||||
default: value
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` |
|
||||
The first variable.
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
The first variable.
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` |
|
||||
The second variable.
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
The second variable.
|
||||
|
|
||||
**rougail.var3** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` |
|
||||
The third variable.
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
The third variable.
|
||||
|
|
||||
**rougail.var4** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
The forth variable. +
|
||||
**Défaut**: value
|
||||
**Default**: value
|
||||
|
|
||||
**rougail.var5** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
The fifth variable. +
|
||||
**Défaut**: value
|
||||
**Default**: value
|
||||
|
|
||||
**rougail.var6** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
The sixth variable. +
|
||||
**Défaut**: value
|
||||
**Default**: value
|
||||
|====
|
||||
|
||||
|
||||
== Example with mandatory variables not filled in
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
var3: example
|
||||
----
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
var3: example
|
||||
var4: value
|
||||
var5: value
|
||||
var6: value
|
||||
----
|
||||
|
|
|
@ -23,15 +23,36 @@ var6:
|
|||
type: string
|
||||
default: value
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | The first variable. |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | The second variable. |
|
||||
| **rougail.var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | The third variable. |
|
||||
| **rougail.var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The forth variable.<br/>**Défaut**: value |
|
||||
| **rougail.var5**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The fifth variable.<br/>**Défaut**: value |
|
||||
| **rougail.var6**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The sixth variable.<br/>**Défaut**: value |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable. |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable. |
|
||||
| **rougail.var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The third variable. |
|
||||
| **rougail.var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The forth variable.<br/>**Default**: value |
|
||||
| **rougail.var5**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Default**: value |
|
||||
| **rougail.var6**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.<br/>**Default**: value |
|
||||
|
||||
|
||||
# Example with mandatory variables not filled in
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
var3: example
|
||||
```
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
var3: example
|
||||
var4: value
|
||||
var5: value
|
||||
var6: value
|
||||
```
|
||||
|
|
|
@ -12,20 +12,27 @@ var:
|
|||
- quote"
|
||||
- quote"'
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
||||
A choice. +
|
||||
**Choix**:
|
||||
**Choices**:
|
||||
|
||||
* quote' ← (defaut)
|
||||
* quote' ← (default)
|
||||
* quote"
|
||||
* quote"'
|
||||
* quote"'
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var: quote'
|
||||
----
|
||||
|
|
|
@ -16,10 +16,17 @@ var:
|
|||
- quote"
|
||||
- quote"'
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A choice.<br/>**Choix**: <br/>- quote' ← (defaut)<br/>- quote"<br/>- quote"' |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A choice.<br/>**Choices**: <br/>- quote' ← (default)<br/>- quote"<br/>- quote"' |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var: quote'
|
||||
```
|
||||
|
|
|
@ -10,21 +10,37 @@ var2:
|
|||
description: the second variable
|
||||
help: message with "
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="107a,107a",options="header"]
|
||||
[cols="105a,105a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
The first variable. +
|
||||
Message with '.
|
||||
Message with '.
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
The second variable. +
|
||||
Message with ".
|
||||
Message with ".
|
||||
|====
|
||||
|
||||
|
||||
== Example with mandatory variables not filled in
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
----
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
----
|
||||
|
|
|
@ -14,11 +14,27 @@ var2:
|
|||
description: the second variable
|
||||
help: message with "
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | The first variable.<br/>Message with '. |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | The second variable.<br/>Message with ". |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>Message with '. |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable.<br/>Message with ". |
|
||||
|
||||
|
||||
# Example with mandatory variables not filled in
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
```
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
```
|
||||
|
|
|
@ -7,16 +7,23 @@ variable:
|
|||
description: a variable
|
||||
default: quote"
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A variable. +
|
||||
**Défaut**: quote"
|
||||
**Default**: quote"
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
variable: quote"
|
||||
----
|
||||
|
|
|
@ -11,10 +11,17 @@ variable:
|
|||
description: a variable
|
||||
default: quote"
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A variable.<br/>**Défaut**: quote" |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: quote" |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
variable: quote"
|
||||
```
|
||||
|
|
|
@ -7,16 +7,23 @@ variable:
|
|||
description: a variable
|
||||
default: quote'"
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A variable. +
|
||||
**Défaut**: quote'"
|
||||
**Default**: quote'"
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
variable: quote'"
|
||||
----
|
||||
|
|
|
@ -11,10 +11,17 @@ variable:
|
|||
description: a variable
|
||||
default: quote'"
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A variable.<br/>**Défaut**: quote'" |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: quote'" |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
variable: quote'"
|
||||
```
|
||||
|
|
|
@ -2,22 +2,9 @@
|
|||
|
||||
[,yaml]
|
||||
----
|
||||
version: '1.1'
|
||||
|
||||
version: '1.0'
|
||||
variable:
|
||||
description: a variable
|
||||
hidden: true
|
||||
default: quote\"\'
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
A variable. +
|
||||
**Défaut**: quote\"\'
|
||||
|====
|
||||
|
||||
|
||||
|
|
|
@ -6,16 +6,9 @@ include_toc: true
|
|||
|
||||
```yaml
|
||||
---
|
||||
version: '1.1'
|
||||
|
||||
version: '1.0'
|
||||
variable:
|
||||
description: a variable
|
||||
hidden: true
|
||||
default: quote\"\'
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A variable.<br/>**Défaut**: quote\"\' |
|
||||
|
||||
|
||||
|
|
|
@ -7,16 +7,23 @@ variable:
|
|||
description: a variable
|
||||
default: quote'
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A variable. +
|
||||
**Défaut**: quote'
|
||||
**Default**: quote'
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
variable: quote'
|
||||
----
|
||||
|
|
|
@ -11,10 +11,17 @@ variable:
|
|||
description: a variable
|
||||
default: quote'
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A variable.<br/>**Défaut**: quote' |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: quote' |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
variable: quote'
|
||||
```
|
||||
|
|
|
@ -6,6 +6,7 @@ version: '1.1'
|
|||
variable:
|
||||
description: a variable
|
||||
default:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{{test_information }}
|
||||
params:
|
||||
|
@ -14,16 +15,30 @@ variable:
|
|||
information: test_information
|
||||
description: get information test_information
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A variable. +
|
||||
**Défaut**: get information test_information.
|
||||
**Default**: get information test_information.
|
||||
|====
|
||||
|
||||
|
||||
== Example with mandatory variables not filled in
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
variable: example
|
||||
----
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
variable: example
|
||||
----
|
||||
|
|
|
@ -10,6 +10,7 @@ version: '1.1'
|
|||
variable:
|
||||
description: a variable
|
||||
default:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{{test_information }}
|
||||
params:
|
||||
|
@ -18,10 +19,24 @@ variable:
|
|||
information: test_information
|
||||
description: get information test_information
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A variable.<br/>**Défaut**: get information test_information. |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: get information test_information. |
|
||||
|
||||
|
||||
# Example with mandatory variables not filled in
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
variable: example
|
||||
```
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
variable: example
|
||||
```
|
||||
|
|
|
@ -3,85 +3,83 @@
|
|||
[,yaml]
|
||||
----
|
||||
version: '1.1'
|
||||
|
||||
var1:
|
||||
description: the first variable
|
||||
test:
|
||||
- test
|
||||
|
||||
var2:
|
||||
description: the second variable
|
||||
test:
|
||||
- test
|
||||
default: value
|
||||
|
||||
var3:
|
||||
description: the third variable
|
||||
test:
|
||||
- test1
|
||||
- test2
|
||||
|
||||
var4:
|
||||
description: the forth variable
|
||||
test:
|
||||
-
|
||||
- test1
|
||||
- test2
|
||||
mandatory: false
|
||||
|
||||
var5:
|
||||
description: the fifth variable
|
||||
type: boolean
|
||||
test:
|
||||
- false
|
||||
|
||||
var6:
|
||||
description: the sixth variable
|
||||
multi: true
|
||||
test:
|
||||
- test1
|
||||
- test2
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="127a,127a",options="header"]
|
||||
[cols="105a,105a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
The first variable. +
|
||||
**Exemple**: test
|
||||
**Example**: test
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
The second variable. +
|
||||
**Défaut**: value +
|
||||
**Exemple**: test
|
||||
**Default**: value +
|
||||
**Example**: test
|
||||
|
|
||||
**rougail.var3** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
The third variable. +
|
||||
**Exemple**: test1
|
||||
**Example**: test1
|
||||
|
|
||||
**rougail.var4** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
The forth variable. +
|
||||
**Exemple**: None
|
||||
**Example**: None
|
||||
|
|
||||
**rougail.var5** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
The fifth variable. +
|
||||
**Défaut**: True +
|
||||
**Exemple**: False
|
||||
|
|
||||
**rougail.var6** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` `unique` `multiple` |
|
||||
The sixth variable. +
|
||||
**Exemples**:
|
||||
|
||||
* test1
|
||||
* test2
|
||||
**Example**: False
|
||||
|====
|
||||
|
||||
|
||||
== Example with mandatory variables not filled in
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: test
|
||||
var2: test
|
||||
var3: test1
|
||||
var5: false
|
||||
----
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: test
|
||||
var2: test
|
||||
var3: test1
|
||||
var4:
|
||||
var5: false
|
||||
----
|
||||
|
|
|
@ -7,54 +7,60 @@ include_toc: true
|
|||
```yaml
|
||||
---
|
||||
version: '1.1'
|
||||
|
||||
var1:
|
||||
description: the first variable
|
||||
test:
|
||||
- test
|
||||
|
||||
var2:
|
||||
description: the second variable
|
||||
test:
|
||||
- test
|
||||
default: value
|
||||
|
||||
var3:
|
||||
description: the third variable
|
||||
test:
|
||||
- test1
|
||||
- test2
|
||||
|
||||
var4:
|
||||
description: the forth variable
|
||||
test:
|
||||
-
|
||||
- test1
|
||||
- test2
|
||||
mandatory: false
|
||||
|
||||
var5:
|
||||
description: the fifth variable
|
||||
type: boolean
|
||||
test:
|
||||
- false
|
||||
|
||||
var6:
|
||||
description: the sixth variable
|
||||
multi: true
|
||||
test:
|
||||
- test1
|
||||
- test2
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | The first variable.<br/>**Exemple**: test |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The second variable.<br/>**Défaut**: value<br/>**Exemple**: test |
|
||||
| **rougail.var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | The third variable.<br/>**Exemple**: test1 |
|
||||
| **rougail.var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The forth variable.<br/>**Exemple**: None |
|
||||
| **rougail.var5**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The fifth variable.<br/>**Défaut**: True<br/>**Exemple**: False |
|
||||
| **rougail.var6**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` `unique` `multiple` | The sixth variable.<br/>**Exemples**: <br/>- test1<br/>- test2 |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Example**: test |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Default**: value<br/>**Example**: test |
|
||||
| **rougail.var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The third variable.<br/>**Example**: test1 |
|
||||
| **rougail.var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The forth variable.<br/>**Example**: None |
|
||||
| **rougail.var5**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The fifth variable.<br/>**Example**: False |
|
||||
|
||||
|
||||
# Example with mandatory variables not filled in
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: test
|
||||
var2: test
|
||||
var3: test1
|
||||
var5: false
|
||||
```
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: test
|
||||
var2: test
|
||||
var3: test1
|
||||
var4:
|
||||
var5: false
|
||||
```
|
||||
|
|
|
@ -19,16 +19,16 @@ variable2:
|
|||
- val1
|
||||
- val2
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="116a,116a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.variable1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` |
|
||||
A first variable. +
|
||||
**Choix**:
|
||||
**Choices**:
|
||||
|
||||
* val1
|
||||
* val2
|
||||
|
@ -36,10 +36,28 @@ A first variable. +
|
|||
**rougail.variable2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` |
|
||||
A second variable. +
|
||||
**Choix**:
|
||||
**Choices**:
|
||||
|
||||
* val1
|
||||
* val2
|
||||
|====
|
||||
|
||||
|
||||
== Example with mandatory variables not filled in
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
variable1:
|
||||
- a_choice
|
||||
----
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
variable1:
|
||||
- a_choice
|
||||
variable2:
|
||||
- a_choice
|
||||
----
|
||||
|
|
|
@ -23,11 +23,29 @@ variable2:
|
|||
- val1
|
||||
- val2
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable1**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` `unique` `multiple` | A first variable.<br/>**Choix**: <br/>- val1<br/>- val2 |
|
||||
| **rougail.variable2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A second variable.<br/>**Choix**: <br/>- val1<br/>- val2 |
|
||||
| **rougail.variable1**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A first variable.<br/>**Choices**: <br/>- val1<br/>- val2 |
|
||||
| **rougail.variable2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A second variable.<br/>**Choices**: <br/>- val1<br/>- val2 |
|
||||
|
||||
|
||||
# Example with mandatory variables not filled in
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
variable1:
|
||||
- a_choice
|
||||
```
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
variable1:
|
||||
- a_choice
|
||||
variable2:
|
||||
- a_choice
|
||||
```
|
||||
|
|
|
@ -9,35 +9,46 @@ my_variable:
|
|||
description: a variable
|
||||
type: choice
|
||||
choices:
|
||||
- variable: _.source_variable_1
|
||||
- variable: _.source_variable_2
|
||||
- type: variable
|
||||
variable: rougail.source_variable_1
|
||||
- type: variable
|
||||
variable: rougail.source_variable_2
|
||||
default: val1
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.source_variable_1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
The first source variable. +
|
||||
**Défaut**: val1
|
||||
**Default**: val1
|
||||
|
|
||||
**rougail.source_variable_2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
The second source variable. +
|
||||
**Défaut**: val2
|
||||
**Default**: val2
|
||||
|
|
||||
**rougail.my_variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
||||
A variable. +
|
||||
**Choix**:
|
||||
**Choices**:
|
||||
|
||||
* la valeur de la variable "rougail.source_variable_1".
|
||||
* la valeur de la variable "rougail.source_variable_2".
|
||||
* the value of the variable "rougail.source_variable_1".
|
||||
* the value of the variable "rougail.source_variable_2".
|
||||
|
||||
**Défaut**: val1
|
||||
**Default**: val1
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
source_variable_1: val1
|
||||
source_variable_2: val2
|
||||
my_variable: val1
|
||||
----
|
||||
|
|
|
@ -13,16 +13,27 @@ my_variable:
|
|||
description: a variable
|
||||
type: choice
|
||||
choices:
|
||||
- variable: _.source_variable_1
|
||||
- variable: _.source_variable_2
|
||||
- type: variable
|
||||
variable: rougail.source_variable_1
|
||||
- type: variable
|
||||
variable: rougail.source_variable_2
|
||||
default: val1
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.source_variable_1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The first source variable.<br/>**Défaut**: val1 |
|
||||
| **rougail.source_variable_2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | The second source variable.<br/>**Défaut**: val2 |
|
||||
| **rougail.my_variable**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A variable.<br/>**Choix**: <br/>- la valeur de la variable "rougail.source_variable_1".<br/>- la valeur de la variable "rougail.source_variable_2".<br/>**Défaut**: val1 |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.source_variable_1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.<br/>**Default**: val1 |
|
||||
| **rougail.source_variable_2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.<br/>**Default**: val2 |
|
||||
| **rougail.my_variable**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Choices**: <br/>- the value of the variable "rougail.source_variable_1".<br/>- the value of the variable "rougail.source_variable_2".<br/>**Default**: val1 |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
source_variable_1: val1
|
||||
source_variable_2: val2
|
||||
my_variable: val1
|
||||
```
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
[,yaml]
|
||||
----
|
||||
version: '1.1'
|
||||
|
||||
variable:
|
||||
description: a variable
|
||||
default:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{{ param1 }}_{{ param2 }}_{{ param3 }}_{{ param4 }}
|
||||
params:
|
||||
|
@ -16,16 +16,23 @@ variable:
|
|||
param4:
|
||||
description: concat all parameters
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A variable. +
|
||||
**Défaut**: concat all parameters.
|
||||
**Default**: concat all parameters.
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
variable: string_1_True_None
|
||||
----
|
||||
|
|
|
@ -7,10 +7,10 @@ include_toc: true
|
|||
```yaml
|
||||
---
|
||||
version: '1.1'
|
||||
|
||||
variable:
|
||||
description: a variable
|
||||
default:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{{ param1 }}_{{ param2 }}_{{ param3 }}_{{ param4 }}
|
||||
params:
|
||||
|
@ -20,10 +20,17 @@ variable:
|
|||
param4:
|
||||
description: concat all parameters
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A variable.<br/>**Défaut**: concat all parameters. |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: concat all parameters. |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
variable: string_1_True_None
|
||||
```
|
||||
|
|
|
@ -6,6 +6,7 @@ version: '1.1'
|
|||
var:
|
||||
description: a variable
|
||||
default:
|
||||
type: jinja
|
||||
jinja: '{{ information }}'
|
||||
params:
|
||||
information:
|
||||
|
@ -14,16 +15,30 @@ var:
|
|||
variable: _.var
|
||||
description: returns the information
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A variable. +
|
||||
**Défaut**: returns the information.
|
||||
**Default**: returns the information.
|
||||
|====
|
||||
|
||||
|
||||
== Example with mandatory variables not filled in
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var: example
|
||||
----
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var: example
|
||||
----
|
||||
|
|
|
@ -10,6 +10,7 @@ version: '1.1'
|
|||
var:
|
||||
description: a variable
|
||||
default:
|
||||
type: jinja
|
||||
jinja: '{{ information }}'
|
||||
params:
|
||||
information:
|
||||
|
@ -18,10 +19,24 @@ var:
|
|||
variable: _.var
|
||||
description: returns the information
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A variable.<br/>**Défaut**: returns the information. |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: returns the information. |
|
||||
|
||||
|
||||
# Example with mandatory variables not filled in
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var: example
|
||||
```
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var: example
|
||||
```
|
||||
|
|
|
@ -7,6 +7,7 @@ var1: # a first variable
|
|||
var2:
|
||||
description: a second variable
|
||||
default:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{{ information }}
|
||||
params:
|
||||
|
@ -15,20 +16,36 @@ var2:
|
|||
information: test_information
|
||||
variable: _.var1
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` |
|
||||
A first variable.
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
A first variable.
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A second variable. +
|
||||
**Défaut**: depends on a calculation.
|
||||
**Default**: issu d'un calcul.
|
||||
|====
|
||||
|
||||
|
||||
== Example with mandatory variables not filled in
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
----
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
----
|
||||
|
|
|
@ -11,6 +11,7 @@ var1: # a first variable
|
|||
var2:
|
||||
description: a second variable
|
||||
default:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{{ information }}
|
||||
params:
|
||||
|
@ -19,11 +20,27 @@ var2:
|
|||
information: test_information
|
||||
variable: _.var1
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | A first variable. |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A second variable.<br/>**Défaut**: depends on a calculation. |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: issu d'un calcul. |
|
||||
|
||||
|
||||
# Example with mandatory variables not filled in
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
```
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
```
|
||||
|
|
|
@ -1,35 +0,0 @@
|
|||
== dictionaries/rougail/00-base.yml
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
version: 1.1
|
||||
my_variable:
|
||||
default: val1
|
||||
my_calculated_variable:
|
||||
multi: true
|
||||
default:
|
||||
- variable: _.my_variable
|
||||
optional: true
|
||||
- variable: _.my_variable_unexists
|
||||
optional: true
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
|
||||
[cols="130a,130a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.my_variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
My_variable. +
|
||||
**Défaut**: val1
|
||||
|
|
||||
**rougail.my_calculated_variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` `unique` `multiple` |
|
||||
My_calculated_variable. +
|
||||
**Défaut**:
|
||||
|
||||
* la valeur de la variable "rougail.my_variable".
|
||||
|====
|
||||
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
---
|
||||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
# dictionaries/rougail/00-base.yml
|
||||
|
||||
```yaml
|
||||
---
|
||||
version: 1.1
|
||||
my_variable:
|
||||
default: val1
|
||||
my_calculated_variable:
|
||||
multi: true
|
||||
default:
|
||||
- variable: _.my_variable
|
||||
optional: true
|
||||
- variable: _.my_variable_unexists
|
||||
optional: true
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | My_variable.<br/>**Défaut**: val1 |
|
||||
| **rougail.my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | My_calculated_variable.<br/>**Défaut**: <br/>- la valeur de la variable "rougail.my_variable". |
|
||||
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
== dictionaries/rougail/00-base.yml
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
version: 1.1
|
||||
my_variable:
|
||||
default: val1
|
||||
my_calculated_variable:
|
||||
multi: true
|
||||
default:
|
||||
- variable: _.my_variable_unexists
|
||||
optional: true
|
||||
- variable: _.my_variable
|
||||
optional: true
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
|
||||
[cols="130a,130a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.my_variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
My_variable. +
|
||||
**Défaut**: val1
|
||||
|
|
||||
**rougail.my_calculated_variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` `unique` `multiple` |
|
||||
My_calculated_variable. +
|
||||
**Défaut**:
|
||||
|
||||
* la valeur de la variable "rougail.my_variable_unexists".
|
||||
|====
|
||||
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
---
|
||||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
# dictionaries/rougail/00-base.yml
|
||||
|
||||
```yaml
|
||||
---
|
||||
version: 1.1
|
||||
my_variable:
|
||||
default: val1
|
||||
my_calculated_variable:
|
||||
multi: true
|
||||
default:
|
||||
- variable: _.my_variable_unexists
|
||||
optional: true
|
||||
- variable: _.my_variable
|
||||
optional: true
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | My_variable.<br/>**Défaut**: val1 |
|
||||
| **rougail.my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | My_calculated_variable.<br/>**Défaut**: <br/>- la valeur de la variable "rougail.my_variable_unexists". |
|
||||
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
== dictionaries/rougail/00-base.yml
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
version: 1.1
|
||||
my_calculated_variable:
|
||||
multi: true
|
||||
default:
|
||||
variable: _.my_variable
|
||||
optional: true
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
|
||||
[cols="130a,130a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.my_calculated_variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` `unique` `multiple` |
|
||||
My_calculated_variable.
|
||||
|====
|
||||
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
---
|
||||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
# dictionaries/rougail/00-base.yml
|
||||
|
||||
```yaml
|
||||
---
|
||||
version: 1.1
|
||||
my_calculated_variable:
|
||||
multi: true
|
||||
default:
|
||||
variable: _.my_variable
|
||||
optional: true
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | My_calculated_variable. |
|
||||
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
== dictionaries/rougail/00-base.yml
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
version: 1.1
|
||||
my_variable:
|
||||
multi: true
|
||||
default:
|
||||
- val1
|
||||
- val2
|
||||
my_calculated_variable:
|
||||
multi: true
|
||||
default:
|
||||
variable: _.my_variable
|
||||
optional: true
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
|
||||
[cols="130a,130a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.my_variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` `unique` `multiple` |
|
||||
My_variable. +
|
||||
**Défaut**:
|
||||
|
||||
* val1
|
||||
* val2
|
||||
|
|
||||
**rougail.my_calculated_variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` `unique` `multiple` |
|
||||
My_calculated_variable. +
|
||||
**Défaut**: la valeur de la variable "rougail.my_variable".
|
||||
|====
|
||||
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
---
|
||||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
# dictionaries/rougail/00-base.yml
|
||||
|
||||
```yaml
|
||||
---
|
||||
version: 1.1
|
||||
my_variable:
|
||||
multi: true
|
||||
default:
|
||||
- val1
|
||||
- val2
|
||||
my_calculated_variable:
|
||||
multi: true
|
||||
default:
|
||||
variable: _.my_variable
|
||||
optional: true
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | My_variable.<br/>**Défaut**: <br/>- val1<br/>- val2 |
|
||||
| **rougail.my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | My_calculated_variable.<br/>**Défaut**: la valeur de la variable "rougail.my_variable". |
|
||||
|
||||
|
|
@ -6,37 +6,49 @@ version: '1.1'
|
|||
var1:
|
||||
description: a first variable
|
||||
default:
|
||||
type: jinja
|
||||
jinja: '{% if var2 is defined %} {{ var2 }} {% elif var3 is defined %} {{ var3
|
||||
}} {% elif var4 is defined %} {{ var4 }} {% else %} {{ _.var2 }} {% endif %} '
|
||||
params:
|
||||
var2:
|
||||
type: variable
|
||||
variable: _.var2
|
||||
optional: true
|
||||
var3:
|
||||
type: variable
|
||||
variable: _.var3
|
||||
optional: true
|
||||
var4:
|
||||
type: variable
|
||||
variable: _.unknown_family.var
|
||||
optional: true
|
||||
description: returns a value
|
||||
mandatory: false
|
||||
var2: no # a second variable
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
|
||||
A first variable. +
|
||||
**Défaut**: returns a value.
|
||||
**Default**: returns a value.
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A second variable. +
|
||||
**Défaut**: no
|
||||
**Default**: no
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: no
|
||||
var2: no
|
||||
----
|
||||
|
|
|
@ -10,27 +10,39 @@ version: '1.1'
|
|||
var1:
|
||||
description: a first variable
|
||||
default:
|
||||
type: jinja
|
||||
jinja: '{% if var2 is defined %} {{ var2 }} {% elif var3 is defined %} {{ var3
|
||||
}} {% elif var4 is defined %} {{ var4 }} {% else %} {{ _.var2 }} {% endif %} '
|
||||
params:
|
||||
var2:
|
||||
type: variable
|
||||
variable: _.var2
|
||||
optional: true
|
||||
var3:
|
||||
type: variable
|
||||
variable: _.var3
|
||||
optional: true
|
||||
var4:
|
||||
type: variable
|
||||
variable: _.unknown_family.var
|
||||
optional: true
|
||||
description: returns a value
|
||||
mandatory: false
|
||||
var2: no # a second variable
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable.<br/>**Défaut**: returns a value. |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A second variable.<br/>**Défaut**: no |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable.<br/>**Default**: returns a value. |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: no |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: no
|
||||
var2: no
|
||||
```
|
||||
|
|
|
@ -11,20 +11,36 @@ var2:
|
|||
information: test_information
|
||||
variable: _.var1
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` |
|
||||
A first variable.
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
A first variable.
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A second variable. +
|
||||
**Défaut**: la valeur de information.
|
||||
**Default**: value of the information.
|
||||
|====
|
||||
|
||||
|
||||
== Example with mandatory variables not filled in
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
----
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
----
|
||||
|
|
|
@ -15,11 +15,27 @@ var2:
|
|||
information: test_information
|
||||
variable: _.var1
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | A first variable. |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A second variable.<br/>**Défaut**: la valeur de information. |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: value of the information. |
|
||||
|
||||
|
||||
# Example with mandatory variables not filled in
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
```
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1: example
|
||||
var2: example
|
||||
```
|
||||
|
|
|
@ -5,8 +5,10 @@
|
|||
version: '1.1'
|
||||
var:
|
||||
description: a variable
|
||||
type: choice
|
||||
default: 9
|
||||
choices:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{% for item in trange(0, 10) %}
|
||||
{{ item }}
|
||||
|
@ -14,17 +16,24 @@ var:
|
|||
return_type: number
|
||||
description: choice for 0 to 9
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
||||
A variable. +
|
||||
**Choix**: choice for 0 to 9. +
|
||||
**Défaut**: 9
|
||||
**Choices**: choice for 0 to 9. +
|
||||
**Default**: 9
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var: 9
|
||||
----
|
||||
|
|
|
@ -9,8 +9,10 @@ include_toc: true
|
|||
version: '1.1'
|
||||
var:
|
||||
description: a variable
|
||||
type: choice
|
||||
default: 9
|
||||
choices:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{% for item in trange(0, 10) %}
|
||||
{{ item }}
|
||||
|
@ -18,10 +20,17 @@ var:
|
|||
return_type: number
|
||||
description: choice for 0 to 9
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A variable.<br/>**Choix**: choice for 0 to 9.<br/>**Défaut**: 9 |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Choices**: choice for 0 to 9.<br/>**Default**: 9 |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var: 9
|
||||
```
|
||||
|
|
|
@ -13,32 +13,42 @@ version: '1.1'
|
|||
variable:
|
||||
description: a variable
|
||||
default:
|
||||
type: jinja
|
||||
jinja: no
|
||||
description: return no
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A variable. +
|
||||
**Défaut**: rougail
|
||||
**Default**: rougail
|
||||
|====
|
||||
|
||||
|
||||
== Variables pour "extra"
|
||||
== Variables for "extra"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**extra.variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A variable. +
|
||||
**Défaut**: return no.
|
||||
**Default**: return no.
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
variable: rougail
|
||||
extra:
|
||||
variable: no
|
||||
----
|
||||
|
|
|
@ -17,20 +17,30 @@ version: '1.1'
|
|||
variable:
|
||||
description: a variable
|
||||
default:
|
||||
type: jinja
|
||||
jinja: no
|
||||
description: return no
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A variable.<br/>**Défaut**: rougail |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: rougail |
|
||||
|
||||
|
||||
# Variables pour "extra"
|
||||
# Variables for "extra"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **extra.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A variable.<br/>**Défaut**: return no. |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **extra.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: return no. |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
variable: rougail
|
||||
extra:
|
||||
variable: no
|
||||
```
|
||||
|
|
|
@ -13,56 +13,71 @@ version: '1.1'
|
|||
variable1:
|
||||
description: a first variable
|
||||
default:
|
||||
type: variable
|
||||
variable: rougail.variable
|
||||
variable2:
|
||||
description: a second variable
|
||||
default:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{{ rougail.variable }}
|
||||
description: copy the value of rougail.variable
|
||||
variable3:
|
||||
description: a third variable
|
||||
default:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{{ variable }}
|
||||
params:
|
||||
variable:
|
||||
type: variable
|
||||
variable: rougail.variable
|
||||
description: copy the value of rougail.variable
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A variable. +
|
||||
**Défaut**: value
|
||||
**Default**: value
|
||||
|====
|
||||
|
||||
|
||||
== Variables pour "extra"
|
||||
== Variables for "extra"
|
||||
|
||||
[cols="110a,110a",options="header"]
|
||||
[cols="108a,108a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**extra.variable1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A first variable. +
|
||||
**Défaut**: la valeur de la variable "rougail.variable".
|
||||
**Default**: the value of the variable "rougail.variable".
|
||||
|
|
||||
**extra.variable2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A second variable. +
|
||||
**Défaut**: copy the value of rougail.variable.
|
||||
**Default**: copy the value of rougail.variable.
|
||||
|
|
||||
**extra.variable3** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A third variable. +
|
||||
**Défaut**: copy the value of rougail.variable.
|
||||
**Default**: copy the value of rougail.variable.
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
variable: value
|
||||
extra:
|
||||
variable1: value
|
||||
variable2: value
|
||||
variable3: value
|
||||
----
|
||||
|
|
|
@ -17,36 +17,51 @@ version: '1.1'
|
|||
variable1:
|
||||
description: a first variable
|
||||
default:
|
||||
type: variable
|
||||
variable: rougail.variable
|
||||
variable2:
|
||||
description: a second variable
|
||||
default:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{{ rougail.variable }}
|
||||
description: copy the value of rougail.variable
|
||||
variable3:
|
||||
description: a third variable
|
||||
default:
|
||||
type: jinja
|
||||
jinja: |
|
||||
{{ variable }}
|
||||
params:
|
||||
variable:
|
||||
type: variable
|
||||
variable: rougail.variable
|
||||
description: copy the value of rougail.variable
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A variable.<br/>**Défaut**: value |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: value |
|
||||
|
||||
|
||||
# Variables pour "extra"
|
||||
# Variables for "extra"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **extra.variable1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A first variable.<br/>**Défaut**: la valeur de la variable "rougail.variable". |
|
||||
| **extra.variable2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A second variable.<br/>**Défaut**: copy the value of rougail.variable. |
|
||||
| **extra.variable3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` | A third variable.<br/>**Défaut**: copy the value of rougail.variable. |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **extra.variable1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Default**: the value of the variable "rougail.variable". |
|
||||
| **extra.variable2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: copy the value of rougail.variable. |
|
||||
| **extra.variable3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.<br/>**Default**: copy the value of rougail.variable. |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
variable: value
|
||||
extra:
|
||||
variable1: value
|
||||
variable2: value
|
||||
variable3: value
|
||||
```
|
||||
|
|
|
@ -38,67 +38,89 @@ var8:
|
|||
default:
|
||||
- true
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="131a,131a",options="header"]
|
||||
[cols="129a,129a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
|
||||
The first variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* true
|
||||
* true
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
|
||||
The second variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* true
|
||||
* true
|
||||
|
|
||||
**rougail.var3** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
|
||||
The third variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* true
|
||||
* true
|
||||
|
|
||||
**rougail.var4** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
|
||||
The forth variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* false
|
||||
* false
|
||||
|
|
||||
**rougail.var5** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
|
||||
The fifth variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* false
|
||||
* false
|
||||
|
|
||||
**rougail.var6** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
|
||||
The sixth variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* false
|
||||
* false
|
||||
|
|
||||
**rougail.var7** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
|
||||
The seventh variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* true
|
||||
* true
|
||||
|
|
||||
**rougail.var8** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
|
||||
The eighth variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* true
|
||||
* true
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1:
|
||||
- true
|
||||
var2:
|
||||
- true
|
||||
var3:
|
||||
- true
|
||||
var4:
|
||||
- false
|
||||
var5:
|
||||
- false
|
||||
var6:
|
||||
- false
|
||||
var7:
|
||||
- true
|
||||
var8:
|
||||
- true
|
||||
----
|
||||
|
|
|
@ -42,17 +42,39 @@ var8:
|
|||
default:
|
||||
- true
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The first variable.<br/>**Défaut**: <br/>- true |
|
||||
| **rougail.var2**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The second variable.<br/>**Défaut**: <br/>- true |
|
||||
| **rougail.var3**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The third variable.<br/>**Défaut**: <br/>- true |
|
||||
| **rougail.var4**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The forth variable.<br/>**Défaut**: <br/>- false |
|
||||
| **rougail.var5**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The fifth variable.<br/>**Défaut**: <br/>- false |
|
||||
| **rougail.var6**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The sixth variable.<br/>**Défaut**: <br/>- false |
|
||||
| **rougail.var7**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The seventh variable.<br/>**Défaut**: <br/>- true |
|
||||
| **rougail.var8**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The eighth variable.<br/>**Défaut**: <br/>- true |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The first variable.<br/>**Default**: <br/>- true |
|
||||
| **rougail.var2**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The second variable.<br/>**Default**: <br/>- true |
|
||||
| **rougail.var3**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The third variable.<br/>**Default**: <br/>- true |
|
||||
| **rougail.var4**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The forth variable.<br/>**Default**: <br/>- false |
|
||||
| **rougail.var5**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The fifth variable.<br/>**Default**: <br/>- false |
|
||||
| **rougail.var6**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The sixth variable.<br/>**Default**: <br/>- false |
|
||||
| **rougail.var7**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The seventh variable.<br/>**Default**: <br/>- true |
|
||||
| **rougail.var8**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The eighth variable.<br/>**Default**: <br/>- true |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1:
|
||||
- true
|
||||
var2:
|
||||
- true
|
||||
var3:
|
||||
- true
|
||||
var4:
|
||||
- false
|
||||
var5:
|
||||
- false
|
||||
var6:
|
||||
- false
|
||||
var7:
|
||||
- true
|
||||
var8:
|
||||
- true
|
||||
```
|
||||
|
|
|
@ -13,22 +13,40 @@ custom2:
|
|||
default:
|
||||
- value
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="130a,130a",options="header"]
|
||||
[cols="128a,128a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.custom1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `obligatoire` `unique` `multiple` |
|
||||
A first custom variable.
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` |
|
||||
A first custom variable.
|
||||
|
|
||||
**rougail.custom2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` |
|
||||
A second custom variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* value
|
||||
* value
|
||||
|====
|
||||
|
||||
|
||||
== Example with mandatory variables not filled in
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
custom1:
|
||||
- xxx
|
||||
----
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
custom1:
|
||||
- xxx
|
||||
custom2:
|
||||
- value
|
||||
----
|
||||
|
|
|
@ -17,11 +17,29 @@ custom2:
|
|||
default:
|
||||
- value
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.custom1**<br/>[`custom`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` `unique` `multiple` | A first custom variable. |
|
||||
| **rougail.custom2**<br/>[`custom`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | A second custom variable.<br/>**Défaut**: <br/>- value |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.custom1**<br/>[`custom`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A first custom variable. |
|
||||
| **rougail.custom2**<br/>[`custom`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second custom variable.<br/>**Default**: <br/>- value |
|
||||
|
||||
|
||||
# Example with mandatory variables not filled in
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
custom1:
|
||||
- xxx
|
||||
```
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
custom1:
|
||||
- xxx
|
||||
custom2:
|
||||
- value
|
||||
```
|
||||
|
|
|
@ -38,67 +38,89 @@ var8:
|
|||
default:
|
||||
- 0.0
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="129a,129a",options="header"]
|
||||
[cols="127a,127a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
|
||||
The first variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* 0.0
|
||||
* 0.0
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
|
||||
The second variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* 0.0
|
||||
* 0.0
|
||||
|
|
||||
**rougail.var3** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
|
||||
The third variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* 0.0
|
||||
* 0.0
|
||||
|
|
||||
**rougail.var4** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
|
||||
The forth variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* 10.1
|
||||
* 10.1
|
||||
|
|
||||
**rougail.var5** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
|
||||
The fifth variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* 10.1
|
||||
* 10.1
|
||||
|
|
||||
**rougail.var6** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
|
||||
The sixth variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* 10.1
|
||||
* 10.1
|
||||
|
|
||||
**rougail.var7** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
|
||||
The seventh variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* 0.0
|
||||
* 0.0
|
||||
|
|
||||
**rougail.var8** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
|
||||
The eighth variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* 0.0
|
||||
* 0.0
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1:
|
||||
- 0.0
|
||||
var2:
|
||||
- 0.0
|
||||
var3:
|
||||
- 0.0
|
||||
var4:
|
||||
- 10.1
|
||||
var5:
|
||||
- 10.1
|
||||
var6:
|
||||
- 10.1
|
||||
var7:
|
||||
- 0.0
|
||||
var8:
|
||||
- 0.0
|
||||
----
|
||||
|
|
|
@ -42,17 +42,39 @@ var8:
|
|||
default:
|
||||
- 0.0
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The first variable.<br/>**Défaut**: <br/>- 0.0 |
|
||||
| **rougail.var2**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The second variable.<br/>**Défaut**: <br/>- 0.0 |
|
||||
| **rougail.var3**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The third variable.<br/>**Défaut**: <br/>- 0.0 |
|
||||
| **rougail.var4**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The forth variable.<br/>**Défaut**: <br/>- 10.1 |
|
||||
| **rougail.var5**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The fifth variable.<br/>**Défaut**: <br/>- 10.1 |
|
||||
| **rougail.var6**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The sixth variable.<br/>**Défaut**: <br/>- 10.1 |
|
||||
| **rougail.var7**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The seventh variable.<br/>**Défaut**: <br/>- 0.0 |
|
||||
| **rougail.var8**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The eighth variable.<br/>**Défaut**: <br/>- 0.0 |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The first variable.<br/>**Default**: <br/>- 0.0 |
|
||||
| **rougail.var2**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The second variable.<br/>**Default**: <br/>- 0.0 |
|
||||
| **rougail.var3**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The third variable.<br/>**Default**: <br/>- 0.0 |
|
||||
| **rougail.var4**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The forth variable.<br/>**Default**: <br/>- 10.1 |
|
||||
| **rougail.var5**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The fifth variable.<br/>**Default**: <br/>- 10.1 |
|
||||
| **rougail.var6**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The sixth variable.<br/>**Default**: <br/>- 10.1 |
|
||||
| **rougail.var7**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The seventh variable.<br/>**Default**: <br/>- 0.0 |
|
||||
| **rougail.var8**<br/>[`float`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The eighth variable.<br/>**Default**: <br/>- 0.0 |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1:
|
||||
- 0.0
|
||||
var2:
|
||||
- 0.0
|
||||
var3:
|
||||
- 0.0
|
||||
var4:
|
||||
- 10.1
|
||||
var5:
|
||||
- 10.1
|
||||
var6:
|
||||
- 10.1
|
||||
var7:
|
||||
- 0.0
|
||||
var8:
|
||||
- 0.0
|
||||
```
|
||||
|
|
|
@ -38,67 +38,89 @@ var8:
|
|||
default:
|
||||
- 0
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="130a,130a",options="header"]
|
||||
[cols="128a,128a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `mandatory` `unique` `multiple` |
|
||||
The first variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* 0
|
||||
* 0
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `mandatory` `unique` `multiple` |
|
||||
The second variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* 0
|
||||
* 0
|
||||
|
|
||||
**rougail.var3** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `mandatory` `unique` `multiple` |
|
||||
The third variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* 0
|
||||
* 0
|
||||
|
|
||||
**rougail.var4** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `mandatory` `unique` `multiple` |
|
||||
The forth variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* 10
|
||||
* 10
|
||||
|
|
||||
**rougail.var5** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `mandatory` `unique` `multiple` |
|
||||
The fifth variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* 10
|
||||
* 10
|
||||
|
|
||||
**rougail.var6** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `mandatory` `unique` `multiple` |
|
||||
The sixth variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* 10
|
||||
* 10
|
||||
|
|
||||
**rougail.var7** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `mandatory` `unique` `multiple` |
|
||||
The seventh variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* 0
|
||||
* 0
|
||||
|
|
||||
**rougail.var8** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[number]` `standard` `mandatory` `unique` `multiple` |
|
||||
The eighth variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* 0
|
||||
* 0
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1:
|
||||
- 0
|
||||
var2:
|
||||
- 0
|
||||
var3:
|
||||
- 0
|
||||
var4:
|
||||
- 10
|
||||
var5:
|
||||
- 10
|
||||
var6:
|
||||
- 10
|
||||
var7:
|
||||
- 0
|
||||
var8:
|
||||
- 0
|
||||
----
|
||||
|
|
|
@ -42,17 +42,39 @@ var8:
|
|||
default:
|
||||
- 0
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The first variable.<br/>**Défaut**: <br/>- 0 |
|
||||
| **rougail.var2**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The second variable.<br/>**Défaut**: <br/>- 0 |
|
||||
| **rougail.var3**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The third variable.<br/>**Défaut**: <br/>- 0 |
|
||||
| **rougail.var4**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The forth variable.<br/>**Défaut**: <br/>- 10 |
|
||||
| **rougail.var5**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The fifth variable.<br/>**Défaut**: <br/>- 10 |
|
||||
| **rougail.var6**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The sixth variable.<br/>**Défaut**: <br/>- 10 |
|
||||
| **rougail.var7**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The seventh variable.<br/>**Défaut**: <br/>- 0 |
|
||||
| **rougail.var8**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The eighth variable.<br/>**Défaut**: <br/>- 0 |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The first variable.<br/>**Default**: <br/>- 0 |
|
||||
| **rougail.var2**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The second variable.<br/>**Default**: <br/>- 0 |
|
||||
| **rougail.var3**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The third variable.<br/>**Default**: <br/>- 0 |
|
||||
| **rougail.var4**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The forth variable.<br/>**Default**: <br/>- 10 |
|
||||
| **rougail.var5**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The fifth variable.<br/>**Default**: <br/>- 10 |
|
||||
| **rougail.var6**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The sixth variable.<br/>**Default**: <br/>- 10 |
|
||||
| **rougail.var7**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The seventh variable.<br/>**Default**: <br/>- 0 |
|
||||
| **rougail.var8**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The eighth variable.<br/>**Default**: <br/>- 0 |
|
||||
|
||||
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1:
|
||||
- 0
|
||||
var2:
|
||||
- 0
|
||||
var3:
|
||||
- 0
|
||||
var4:
|
||||
- 10
|
||||
var5:
|
||||
- 10
|
||||
var6:
|
||||
- 10
|
||||
var7:
|
||||
- 0
|
||||
var8:
|
||||
- 0
|
||||
```
|
||||
|
|
|
@ -1,26 +0,0 @@
|
|||
== dictionaries/rougail/00-base.yml
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
version: '1.1'
|
||||
var1:
|
||||
description: the second variable
|
||||
empty: false
|
||||
default: [value, None]
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
|
||||
[cols="130a,130a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` `unique` `multiple` |
|
||||
The second variable. +
|
||||
**Défaut**:
|
||||
|
||||
* value
|
||||
* None
|
||||
|====
|
||||
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
---
|
||||
gitea: none
|
||||
include_toc: true
|
||||
---
|
||||
# dictionaries/rougail/00-base.yml
|
||||
|
||||
```yaml
|
||||
---
|
||||
version: '1.1'
|
||||
var1:
|
||||
description: the second variable
|
||||
empty: false
|
||||
default: [value, None]
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The second variable.<br/>**Défaut**: <br/>- value<br/>- None |
|
||||
|
||||
|
|
@ -34,58 +34,90 @@ var8:
|
|||
default:
|
||||
- value
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="130a,130a",options="header"]
|
||||
[cols="128a,128a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.var1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` `unique` `multiple` |
|
||||
The first variable.
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` |
|
||||
The first variable.
|
||||
|
|
||||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` `unique` `multiple` |
|
||||
The second variable.
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` |
|
||||
The second variable.
|
||||
|
|
||||
**rougail.var3** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `obligatoire` |
|
||||
The third variable.
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
The third variable.
|
||||
|
|
||||
**rougail.var4** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
The forth variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* value
|
||||
* value
|
||||
|
|
||||
**rougail.var5** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
The fifth variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* value
|
||||
* value
|
||||
|
|
||||
**rougail.var6** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
The sixth variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* value
|
||||
* value
|
||||
|
|
||||
**rougail.var7** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
The seventh variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* value
|
||||
* value
|
||||
|
|
||||
**rougail.var8** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
The eighth variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* value
|
||||
* value
|
||||
|====
|
||||
|
||||
|
||||
== Example with mandatory variables not filled in
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1:
|
||||
- example
|
||||
var2:
|
||||
- example
|
||||
var3: example
|
||||
----
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
var1:
|
||||
- example
|
||||
var2:
|
||||
- example
|
||||
var3: example
|
||||
var4:
|
||||
- value
|
||||
var5:
|
||||
- value
|
||||
var6:
|
||||
- value
|
||||
var7:
|
||||
- value
|
||||
var8:
|
||||
- value
|
||||
----
|
||||
|
|
|
@ -38,17 +38,49 @@ var8:
|
|||
default:
|
||||
- value
|
||||
```
|
||||
# Variables pour "rougail"
|
||||
# Variables for "rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` `unique` `multiple` | The first variable. |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` `unique` `multiple` | The second variable. |
|
||||
| **rougail.var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `obligatoire` | The third variable. |
|
||||
| **rougail.var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The forth variable.<br/>**Défaut**: <br/>- value |
|
||||
| **rougail.var5**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The fifth variable.<br/>**Défaut**: <br/>- value |
|
||||
| **rougail.var6**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The sixth variable.<br/>**Défaut**: <br/>- value |
|
||||
| **rougail.var7**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The seventh variable.<br/>**Défaut**: <br/>- value |
|
||||
| **rougail.var8**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `obligatoire` `unique` `multiple` | The eighth variable.<br/>**Défaut**: <br/>- value |
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | The first variable. |
|
||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | The second variable. |
|
||||
| **rougail.var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The third variable. |
|
||||
| **rougail.var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The forth variable.<br/>**Default**: <br/>- value |
|
||||
| **rougail.var5**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The fifth variable.<br/>**Default**: <br/>- value |
|
||||
| **rougail.var6**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The sixth variable.<br/>**Default**: <br/>- value |
|
||||
| **rougail.var7**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The seventh variable.<br/>**Default**: <br/>- value |
|
||||
| **rougail.var8**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | The eighth variable.<br/>**Default**: <br/>- value |
|
||||
|
||||
|
||||
# Example with mandatory variables not filled in
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1:
|
||||
- example
|
||||
var2:
|
||||
- example
|
||||
var3: example
|
||||
```
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
rougail:
|
||||
var1:
|
||||
- example
|
||||
var2:
|
||||
- example
|
||||
var3: example
|
||||
var4:
|
||||
- value
|
||||
var5:
|
||||
- value
|
||||
var6:
|
||||
- value
|
||||
var7:
|
||||
- value
|
||||
var8:
|
||||
- value
|
||||
```
|
||||
|
|
|
@ -8,18 +8,26 @@ variable:
|
|||
default:
|
||||
- quote"
|
||||
----
|
||||
== Variables pour "rougail"
|
||||
== Variables for "rougail"
|
||||
|
||||
[cols="130a,130a",options="header"]
|
||||
[cols="128a,128a",options="header"]
|
||||
|====
|
||||
| Variable | Description
|
||||
| Variable | Description
|
||||
|
|
||||
**rougail.variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `obligatoire` `unique` `multiple` |
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A variable. +
|
||||
**Défaut**:
|
||||
**Default**:
|
||||
|
||||
* quote"
|
||||
* quote"
|
||||
|====
|
||||
|
||||
|
||||
== Example with all variables modifiable
|
||||
|
||||
[,yaml]
|
||||
----
|
||||
rougail:
|
||||
variable:
|
||||
- quote"
|
||||
----
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue