Compare commits
3 commits
a5dc507c65
...
856811805c
| Author | SHA1 | Date | |
|---|---|---|---|
| 856811805c | |||
| 38fa8447eb | |||
| c5134247a0 |
451 changed files with 2236 additions and 1101 deletions
|
|
@ -1,3 +1,10 @@
|
||||||
|
## 0.2.0a32 (2025-10-03)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- property calculated with disabled variable
|
||||||
|
- better disabled support
|
||||||
|
|
||||||
## 0.2.0a31 (2025-10-02)
|
## 0.2.0a31 (2025-10-02)
|
||||||
|
|
||||||
### Feat
|
### Feat
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rougail.output_doc"
|
name = "rougail.output_doc"
|
||||||
version = "0.2.0a31"
|
version = "0.2.0a32"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "Rougail output doc"
|
description = "Rougail output doc"
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "0.2.0a31"
|
__version__ = "0.2.0a32"
|
||||||
|
|
|
||||||
|
|
@ -568,10 +568,10 @@ class RougailOutputDoc(Examples):
|
||||||
|
|
||||||
def _parse_properties(
|
def _parse_properties(
|
||||||
self,
|
self,
|
||||||
variable,
|
child,
|
||||||
):
|
):
|
||||||
informations = []
|
informations = []
|
||||||
properties = variable.property.get(uncalculated=True)
|
properties = child.property.get(uncalculated=True)
|
||||||
for mode in self.modes_level:
|
for mode in self.modes_level:
|
||||||
if mode not in properties:
|
if mode not in properties:
|
||||||
continue
|
continue
|
||||||
|
|
@ -588,8 +588,8 @@ class RougailOutputDoc(Examples):
|
||||||
"type": "property",
|
"type": "property",
|
||||||
"name": translated_prop,
|
"name": translated_prop,
|
||||||
}
|
}
|
||||||
elif variable.information.get(f"{prop}_calculation", False):
|
elif child.information.get(f"{prop}_calculation", False):
|
||||||
annotation = self._to_string(variable, prop)
|
annotation = self._to_string(child, prop)
|
||||||
if annotation is None or isinstance(annotation, bool):
|
if annotation is None or isinstance(annotation, bool):
|
||||||
if annotation is None and prop in HIDDEN_PROPERTIES:
|
if annotation is None and prop in HIDDEN_PROPERTIES:
|
||||||
return False, {}
|
return False, {}
|
||||||
|
|
@ -705,15 +705,9 @@ class RougailOutputDoc(Examples):
|
||||||
try:
|
try:
|
||||||
variable.value.get()
|
variable.value.get()
|
||||||
except AttributeError as err:
|
except AttributeError as err:
|
||||||
|
if prop in HIDDEN_PROPERTIES:
|
||||||
|
return False
|
||||||
variable = None
|
variable = None
|
||||||
# else:
|
|
||||||
# uncalculated = variable.value.get(uncalculated=True)
|
|
||||||
# if child.name() == 'datasource':
|
|
||||||
# print(child, variable, prop, uncalculated, variable)
|
|
||||||
# if not isinstance(
|
|
||||||
# uncalculated, Calculation
|
|
||||||
# ) and self._is_inaccessible_user_data(variable):
|
|
||||||
# return None
|
|
||||||
if variable and self._is_inaccessible_user_data(variable):
|
if variable and self._is_inaccessible_user_data(variable):
|
||||||
try:
|
try:
|
||||||
variable_value = self._get_unmodified_default_value(variable)
|
variable_value = self._get_unmodified_default_value(variable)
|
||||||
|
|
|
||||||
|
|
@ -36,10 +36,10 @@ class Formater(GithubFormater):
|
||||||
|
|
||||||
def title(self, title: str, level: int) -> str:
|
def title(self, title: str, level: int) -> str:
|
||||||
# self.max_line_variable = 0
|
# self.max_line_variable = 0
|
||||||
return " " * level + '<details><summary>' + title + '</summary>\n\n'
|
return '<details><summary>' + title + '</summary>\n\n'
|
||||||
|
|
||||||
def end_family(self, level):
|
def end_family(self, level):
|
||||||
return " " * level + '</details>\n\n'
|
return '</details>\n\n'
|
||||||
|
|
||||||
def columns(
|
def columns(
|
||||||
self,
|
self,
|
||||||
|
|
|
||||||
|
|
@ -22,9 +22,8 @@ My var3. +
|
||||||
|
|
|
|
||||||
|
|
||||||
**var4** +
|
**var4** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` `__hidden__` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` |
|
||||||
My var4. +
|
My var4.
|
||||||
**Hidden**: when the variable "a.unknown.variable" has the value "value".
|
|
||||||
|
|
|
|
||||||
|
|
||||||
**var5** +
|
**var5** +
|
||||||
|
|
@ -81,26 +80,22 @@ A variable.
|
||||||
|
|
|
|
||||||
|
|
||||||
**var_10** +
|
**var_10** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` `__hidden__` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` |
|
||||||
My var10. +
|
My var10.
|
||||||
**Hidden**: when the variable "a.unknown.variable" has the value "val".
|
|
||||||
|
|
|
|
||||||
|
|
||||||
**var_11** +
|
**var_11** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` `__hidden__` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` |
|
||||||
My var11. +
|
My var11.
|
||||||
**Hidden**: when the variable "a.unknown.variable" hasn't the value "val".
|
|
||||||
|
|
|
|
||||||
|
|
||||||
**var_12** +
|
**var_12** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` `__hidden__` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` |
|
||||||
My var12. +
|
My var12.
|
||||||
**Hidden**: when the variable "a.unknown.variable" is defined and has the value "true".
|
|
||||||
|
|
|
|
||||||
|
|
||||||
**var_13** +
|
**var_13** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` `__hidden__` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` |
|
||||||
My var13. +
|
My var13.
|
||||||
**Hidden**: when the variable "a.unknown.variable" has the value "true".
|
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
| **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 |
|
| **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 |
|
||||||
| **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 "var1".<br/>**Default**: a |
|
| **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 "var1".<br/>**Default**: a |
|
||||||
|
|
||||||
<details><summary>family</summary>
|
<details><summary>family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family**<br>`standard`
|
**family**<br>`standard`
|
||||||
|
|
@ -14,5 +14,5 @@
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **family.var3**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.<br/>**Choices**: the value of the variable "family.var1".<br/>**Default**: the value of the variable "var2". |
|
| **family.var3**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.<br/>**Choices**: the value of the variable "family.var1".<br/>**Default**: the value of the variable "var2". |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,9 +10,8 @@ A condition. +
|
||||||
|
|
|
|
||||||
|
|
||||||
**var1** +
|
**var1** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
|
||||||
A first variable. +
|
A first variable.
|
||||||
**Hidden**: when the variable "unknown" is defined and has the value "true".
|
|
||||||
|
|
|
|
||||||
|
|
||||||
**var3** +
|
**var3** +
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------|
|
||||||
| **condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: false |
|
| **condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: false |
|
||||||
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A first variable.<br/>**Hidden**: when the variable "unknown" is defined and has the value "true". |
|
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
|
||||||
| **var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.<br/>**Hidden**: when the variable "condition" is defined and has the value "true". |
|
| **var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.<br/>**Hidden**: when the variable "condition" is defined and has the value "true". |
|
||||||
| **var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.<br/>**Hidden**: when the variable "condition" is defined and has the value "true". |
|
| **var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.<br/>**Hidden**: when the variable "condition" is defined and has the value "true". |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -39,11 +39,6 @@
|
||||||
{
|
{
|
||||||
"type": "mode",
|
"type": "mode",
|
||||||
"name": "standard"
|
"name": "standard"
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "property",
|
|
||||||
"name": "hidden",
|
|
||||||
"annotation": "when the variable \"unknown\" is defined and has the value \"true\"."
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"paths": [
|
"paths": [
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: false |
|
| **condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: false |
|
||||||
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A first variable.<br/>**Hidden**: when the variable "unknown" is defined and has the value "true". |
|
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A first variable. |
|
||||||
| **var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.<br/>**Hidden**: when the variable "condition" is defined and has the value "true". |
|
| **var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.<br/>**Hidden**: when the variable "condition" is defined and has the value "true". |
|
||||||
| **var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.<br/>**Hidden**: when the variable "condition" is defined and has the value "true". |
|
| **var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.<br/>**Hidden**: when the variable "condition" is defined and has the value "true". |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,8 +5,7 @@
|
||||||
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: false │
|
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: false │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar1[0m │ A first variable. │
|
│ [1mvar1[0m │ A first variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;3;7m hidden [0m │ [1mHidden[0m: when the variable "unknown" │
|
│ [1;7m string [0m [1;7m standard [0m │ │
|
||||||
│ │ is defined and has the value "true". │
|
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar3[0m │ A second variable. │
|
│ [1mvar3[0m │ A second variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;3;7m hidden [0m │ [1mHidden[0m: when the variable │
|
│ [1;7m string [0m [1;7m standard [0m [1;3;7m hidden [0m │ [1mHidden[0m: when the variable │
|
||||||
|
|
|
||||||
17
tests/results/test/04_5disabled_calculation_variable10.adoc
Normal file
17
tests/results/test/04_5disabled_calculation_variable10.adoc
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
[cols="1a,1a"]
|
||||||
|
|====
|
||||||
|
| Variable | Description
|
||||||
|
|
|
||||||
|
|
||||||
|
**condition** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
||||||
|
A condition. +
|
||||||
|
**Default**: true
|
||||||
|
|
|
||||||
|
|
||||||
|
**variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` |
|
||||||
|
A variable. +
|
||||||
|
**Disabled**: when the variable "condition" has the value "true".
|
||||||
|
|====
|
||||||
|
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
| Variable | Description |
|
||||||
|
|--------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
|
||||||
|
| **condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: true |
|
||||||
|
| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.<br/>**Disabled**: when the variable "condition" has the value "true". |
|
||||||
|
|
||||||
63
tests/results/test/04_5disabled_calculation_variable10.json
Normal file
63
tests/results/test/04_5disabled_calculation_variable10.json
Normal file
|
|
@ -0,0 +1,63 @@
|
||||||
|
{
|
||||||
|
"condition": {
|
||||||
|
"type": "variable",
|
||||||
|
"default": {
|
||||||
|
"name": "Default",
|
||||||
|
"values": true
|
||||||
|
},
|
||||||
|
"properties": [
|
||||||
|
{
|
||||||
|
"type": "type",
|
||||||
|
"name": "boolean"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "mode",
|
||||||
|
"name": "standard"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "property",
|
||||||
|
"name": "mandatory"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"paths": [
|
||||||
|
"condition"
|
||||||
|
],
|
||||||
|
"names": [
|
||||||
|
"condition"
|
||||||
|
],
|
||||||
|
"descriptions": [
|
||||||
|
"A condition."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"variable": {
|
||||||
|
"type": "variable",
|
||||||
|
"properties": [
|
||||||
|
{
|
||||||
|
"type": "type",
|
||||||
|
"name": "string"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "mode",
|
||||||
|
"name": "basic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "property",
|
||||||
|
"name": "mandatory"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "property",
|
||||||
|
"name": "disabled",
|
||||||
|
"annotation": "when the variable \"condition\" has the value \"true\"."
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"paths": [
|
||||||
|
"variable"
|
||||||
|
],
|
||||||
|
"names": [
|
||||||
|
"variable"
|
||||||
|
],
|
||||||
|
"descriptions": [
|
||||||
|
"A variable."
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
| Variable | Description |
|
||||||
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
| **condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: true |
|
||||||
|
| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.<br/>**Disabled**: when the variable "condition" has the value "true". |
|
||||||
|
|
||||||
10
tests/results/test/04_5disabled_calculation_variable10.sh
Normal file
10
tests/results/test/04_5disabled_calculation_variable10.sh
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||||
|
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||||
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
|
│ [1mcondition[0m │ A condition. │
|
||||||
|
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: true │
|
||||||
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
|
│ [1mvariable[0m │ A variable. │
|
||||||
|
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;3;7m [0m │ [1mDisabled[0m: when the variable │
|
||||||
|
│ [1;3;7mdisabled [0m │ "condition" has the value "true". │
|
||||||
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
10
tests/results/test/04_5disabled_calculation_variable5.adoc
Normal file
10
tests/results/test/04_5disabled_calculation_variable5.adoc
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
[cols="1a,1a"]
|
||||||
|
|====
|
||||||
|
| Variable | Description
|
||||||
|
|
|
||||||
|
|
||||||
|
**variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||||
|
A variable.
|
||||||
|
|====
|
||||||
|
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
| Variable | Description |
|
||||||
|
|-------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
|
| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||||
|
|
||||||
28
tests/results/test/04_5disabled_calculation_variable5.json
Normal file
28
tests/results/test/04_5disabled_calculation_variable5.json
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"variable": {
|
||||||
|
"type": "variable",
|
||||||
|
"properties": [
|
||||||
|
{
|
||||||
|
"type": "type",
|
||||||
|
"name": "string"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "mode",
|
||||||
|
"name": "basic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "property",
|
||||||
|
"name": "mandatory"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"paths": [
|
||||||
|
"variable"
|
||||||
|
],
|
||||||
|
"names": [
|
||||||
|
"variable"
|
||||||
|
],
|
||||||
|
"descriptions": [
|
||||||
|
"A variable."
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
4
tests/results/test/04_5disabled_calculation_variable5.md
Normal file
4
tests/results/test/04_5disabled_calculation_variable5.md
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
| Variable | Description |
|
||||||
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||||
|
|
||||||
6
tests/results/test/04_5disabled_calculation_variable5.sh
Normal file
6
tests/results/test/04_5disabled_calculation_variable5.sh
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||||
|
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||||
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
|
│ [1mvariable[0m │ A variable. │
|
||||||
|
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m │ │
|
||||||
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
10
tests/results/test/04_5disabled_calculation_variable6.adoc
Normal file
10
tests/results/test/04_5disabled_calculation_variable6.adoc
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
[cols="1a,1a"]
|
||||||
|
|====
|
||||||
|
| Variable | Description
|
||||||
|
|
|
||||||
|
|
||||||
|
**variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||||
|
A variable.
|
||||||
|
|====
|
||||||
|
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
| Variable | Description |
|
||||||
|
|-------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
|
| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||||
|
|
||||||
28
tests/results/test/04_5disabled_calculation_variable6.json
Normal file
28
tests/results/test/04_5disabled_calculation_variable6.json
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"variable": {
|
||||||
|
"type": "variable",
|
||||||
|
"properties": [
|
||||||
|
{
|
||||||
|
"type": "type",
|
||||||
|
"name": "string"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "mode",
|
||||||
|
"name": "basic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "property",
|
||||||
|
"name": "mandatory"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"paths": [
|
||||||
|
"variable"
|
||||||
|
],
|
||||||
|
"names": [
|
||||||
|
"variable"
|
||||||
|
],
|
||||||
|
"descriptions": [
|
||||||
|
"A variable."
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
4
tests/results/test/04_5disabled_calculation_variable6.md
Normal file
4
tests/results/test/04_5disabled_calculation_variable6.md
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
| Variable | Description |
|
||||||
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||||
|
|
||||||
6
tests/results/test/04_5disabled_calculation_variable6.sh
Normal file
6
tests/results/test/04_5disabled_calculation_variable6.sh
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||||
|
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||||
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
|
│ [1mvariable[0m │ A variable. │
|
||||||
|
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m │ │
|
||||||
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
17
tests/results/test/04_5disabled_calculation_variable7.adoc
Normal file
17
tests/results/test/04_5disabled_calculation_variable7.adoc
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
[cols="1a,1a"]
|
||||||
|
|====
|
||||||
|
| Variable | Description
|
||||||
|
|
|
||||||
|
|
||||||
|
**condition** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
||||||
|
A condition. +
|
||||||
|
**Default**: false
|
||||||
|
|
|
||||||
|
|
||||||
|
**variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` |
|
||||||
|
A variable. +
|
||||||
|
**Disabled**: when the variable "condition" has the value "true".
|
||||||
|
|====
|
||||||
|
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
| Variable | Description |
|
||||||
|
|--------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------|
|
||||||
|
| **condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: false |
|
||||||
|
| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.<br/>**Disabled**: when the variable "condition" has the value "true". |
|
||||||
|
|
||||||
63
tests/results/test/04_5disabled_calculation_variable7.json
Normal file
63
tests/results/test/04_5disabled_calculation_variable7.json
Normal file
|
|
@ -0,0 +1,63 @@
|
||||||
|
{
|
||||||
|
"condition": {
|
||||||
|
"type": "variable",
|
||||||
|
"default": {
|
||||||
|
"name": "Default",
|
||||||
|
"values": false
|
||||||
|
},
|
||||||
|
"properties": [
|
||||||
|
{
|
||||||
|
"type": "type",
|
||||||
|
"name": "boolean"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "mode",
|
||||||
|
"name": "standard"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "property",
|
||||||
|
"name": "mandatory"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"paths": [
|
||||||
|
"condition"
|
||||||
|
],
|
||||||
|
"names": [
|
||||||
|
"condition"
|
||||||
|
],
|
||||||
|
"descriptions": [
|
||||||
|
"A condition."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"variable": {
|
||||||
|
"type": "variable",
|
||||||
|
"properties": [
|
||||||
|
{
|
||||||
|
"type": "type",
|
||||||
|
"name": "string"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "mode",
|
||||||
|
"name": "basic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "property",
|
||||||
|
"name": "mandatory"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "property",
|
||||||
|
"name": "disabled",
|
||||||
|
"annotation": "when the variable \"condition\" has the value \"true\"."
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"paths": [
|
||||||
|
"variable"
|
||||||
|
],
|
||||||
|
"names": [
|
||||||
|
"variable"
|
||||||
|
],
|
||||||
|
"descriptions": [
|
||||||
|
"A variable."
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
5
tests/results/test/04_5disabled_calculation_variable7.md
Normal file
5
tests/results/test/04_5disabled_calculation_variable7.md
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
| Variable | Description |
|
||||||
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
| **condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: false |
|
||||||
|
| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A variable.<br/>**Disabled**: when the variable "condition" has the value "true". |
|
||||||
|
|
||||||
10
tests/results/test/04_5disabled_calculation_variable7.sh
Normal file
10
tests/results/test/04_5disabled_calculation_variable7.sh
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||||
|
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||||
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
|
│ [1mcondition[0m │ A condition. │
|
||||||
|
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: false │
|
||||||
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
|
│ [1mvariable[0m │ A variable. │
|
||||||
|
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;3;7m [0m │ [1mDisabled[0m: when the variable │
|
||||||
|
│ [1;3;7mdisabled [0m │ "condition" has the value "true". │
|
||||||
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{}
|
||||||
0
tests/results/test/04_5disabled_calculation_variable8.md
Normal file
0
tests/results/test/04_5disabled_calculation_variable8.md
Normal file
0
tests/results/test/04_5disabled_calculation_variable8.sh
Normal file
0
tests/results/test/04_5disabled_calculation_variable8.sh
Normal file
10
tests/results/test/04_5disabled_calculation_variable9.adoc
Normal file
10
tests/results/test/04_5disabled_calculation_variable9.adoc
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
[cols="1a,1a"]
|
||||||
|
|====
|
||||||
|
| Variable | Description
|
||||||
|
|
|
||||||
|
|
||||||
|
**variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||||
|
A variable.
|
||||||
|
|====
|
||||||
|
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
| Variable | Description |
|
||||||
|
|-------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
|
| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||||
|
|
||||||
28
tests/results/test/04_5disabled_calculation_variable9.json
Normal file
28
tests/results/test/04_5disabled_calculation_variable9.json
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"variable": {
|
||||||
|
"type": "variable",
|
||||||
|
"properties": [
|
||||||
|
{
|
||||||
|
"type": "type",
|
||||||
|
"name": "string"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "mode",
|
||||||
|
"name": "basic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "property",
|
||||||
|
"name": "mandatory"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"paths": [
|
||||||
|
"variable"
|
||||||
|
],
|
||||||
|
"names": [
|
||||||
|
"variable"
|
||||||
|
],
|
||||||
|
"descriptions": [
|
||||||
|
"A variable."
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
4
tests/results/test/04_5disabled_calculation_variable9.md
Normal file
4
tests/results/test/04_5disabled_calculation_variable9.md
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
| Variable | Description |
|
||||||
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||||
|
|
||||||
6
tests/results/test/04_5disabled_calculation_variable9.sh
Normal file
6
tests/results/test/04_5disabled_calculation_variable9.sh
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||||
|
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||||
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
|
│ [1mvariable[0m │ A variable. │
|
||||||
|
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m │ │
|
||||||
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>family</summary>
|
<details><summary>family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family**<br>`basic` *`disabled`*
|
**family**<br>`basic` *`disabled`*
|
||||||
|
|
@ -9,5 +9,5 @@
|
||||||
|----------------------------------------------------------------------------------------------------------------------------|---------------|
|
|----------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
| **family.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var1. |
|
| **family.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var1. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>family</summary>
|
<details><summary>family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family**<br>`basic`
|
**family**<br>`basic`
|
||||||
|
|
@ -9,5 +9,5 @@
|
||||||
|----------------------------------------------------------------------------------------------------------------------------|---------------|
|
|----------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
| **family.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var1. |
|
| **family.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var1. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>new description</summary>
|
<details><summary>new description</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family**<br>`basic`
|
**family**<br>`basic`
|
||||||
|
|
@ -9,5 +9,5 @@
|
||||||
|--------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|--------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
| **family.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
| **family.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a family</summary>
|
<details><summary>a family</summary>
|
||||||
|
|
||||||
Redefine help family ok.
|
Redefine help family ok.
|
||||||
|
|
||||||
|
|
@ -11,5 +11,5 @@ Redefine help family ok.
|
||||||
|--------------------------------------------------------------------------------------------------------------------------------|--------------------------------------|
|
|--------------------------------------------------------------------------------------------------------------------------------|--------------------------------------|
|
||||||
| **family.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Redefine help.<br/>Redefine help ok. |
|
| **family.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Redefine help.<br/>Redefine help ok. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>new description</summary>
|
<details><summary>new description</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family1**<br>`basic`
|
**family1**<br>`basic`
|
||||||
|
|
@ -9,9 +9,9 @@
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|----------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
| **family1.variable1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
| **family1.variable1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details><summary>a second family</summary>
|
<details><summary>a second family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family2**<br>`basic`
|
**family2**<br>`basic`
|
||||||
|
|
@ -22,5 +22,5 @@
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
||||||
| **family2.variable2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. |
|
| **family2.variable2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>A family</summary>
|
<details><summary>A family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family**<br>`basic`
|
**family**<br>`basic`
|
||||||
|
|
@ -10,5 +10,5 @@
|
||||||
| **family.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable. |
|
| **family.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable. |
|
||||||
| **family.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable. |
|
| **family.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<details><summary>a family</summary>
|
<details><summary>a family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family**<br>`standard`
|
**family**<br>`standard`
|
||||||
|
|
||||||
|
|
||||||
>>>
|
>>>
|
||||||
<details><summary>a sub family</summary>
|
<details><summary>a sub family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family.subfamily**<br>`standard`
|
**family.subfamily**<br>`standard`
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
|---------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|---------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
| **family.subfamily.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
|
| **family.subfamily.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<details><summary>a family</summary>
|
<details><summary>a family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family**<br>`basic`
|
**family**<br>`basic`
|
||||||
|
|
||||||
|
|
||||||
>>>
|
>>>
|
||||||
<details><summary>a sub family</summary>
|
<details><summary>a sub family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family.subfamily**<br>`basic`
|
**family.subfamily**<br>`basic`
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
| **family.subfamily.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
| **family.subfamily.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<details><summary>a family</summary>
|
<details><summary>a family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family**<br>`advanced`
|
**family**<br>`advanced`
|
||||||
|
|
||||||
|
|
||||||
>>>
|
>>>
|
||||||
<details><summary>a sub family</summary>
|
<details><summary>a sub family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family.subfamily**<br>`advanced`
|
**family.subfamily**<br>`advanced`
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
|---------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|---------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
| **family.subfamily.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `advanced` | A variable. |
|
| **family.subfamily.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `advanced` | A variable. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|-------------------------------------------------------------------------------------------------------------------------|---------------|
|
|-------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||||
|
|
||||||
<details><summary>a family</summary>
|
<details><summary>a family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family**<br>`basic`
|
**family**<br>`basic`
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
|---------------------------------------------------------------------------------------------------------------------------------|-------------------|
|
|---------------------------------------------------------------------------------------------------------------------------------|-------------------|
|
||||||
| **family.variable1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
|
| **family.variable1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
|
||||||
|
|
||||||
<details><summary>a sub family</summary>
|
<details><summary>a sub family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family.subfamily**<br>`basic`
|
**family.subfamily**<br>`basic`
|
||||||
|
|
@ -24,11 +24,11 @@
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
| **family.subfamily.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
| **family.subfamily.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|---------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
|---------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
||||||
| **family.variable2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. |
|
| **family.variable2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>my_family</summary>
|
<details><summary>my_family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**my_family**<br>`standard`
|
**my_family**<br>`standard`
|
||||||
|
|
@ -10,5 +10,5 @@
|
||||||
| **my_family.dynamic**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Dynamic.<br/>**Default**: <br/>- val1<br/>- val2 |
|
| **my_family.dynamic**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Dynamic.<br/>**Default**: <br/>- val1<br/>- val2 |
|
||||||
| **my_family.var**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: true |
|
| **my_family.var**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: true |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>my_family</summary>
|
<details><summary>my_family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**my_family**<br>`standard`
|
**my_family**<br>`standard`
|
||||||
|
|
@ -9,5 +9,5 @@
|
||||||
|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------|
|
|--------------------------------------------------------------------------------------------------------------------------------------|--------------------------------|
|
||||||
| **my_family.default**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Default.<br/>**Default**: true |
|
| **my_family.default**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Default.<br/>**Default**: true |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>family</summary>
|
<details><summary>family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family**<br>`basic`
|
**family**<br>`basic`
|
||||||
|
|
@ -10,5 +10,5 @@
|
||||||
| **family.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
|
| **family.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first variable. |
|
||||||
| **family.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: the value of the information "test_information" of the variable "family". |
|
| **family.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: the value of the information "test_information" of the variable "family". |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|---------------------------------------------------------------------------------------------------------------------|-----------------|
|
|---------------------------------------------------------------------------------------------------------------------|-----------------|
|
||||||
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | First variable. |
|
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | First variable. |
|
||||||
|
|
||||||
<details><summary>a family</summary>
|
<details><summary>a family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family**<br>`basic`
|
**family**<br>`basic`
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
|----------------------------------------------------------------------------------------------------------------------------|---------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------|---------------------------------------------|
|
||||||
| **family.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.<br/>**Example**: string6 |
|
| **family.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A second variable.<br/>**Example**: string6 |
|
||||||
|
|
||||||
<details><summary>a sub family</summary>
|
<details><summary>a sub family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family.subfamily**<br>`standard`
|
**family.subfamily**<br>`standard`
|
||||||
|
|
@ -24,11 +24,11 @@
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **family.subfamily.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Third variable.<br/>**Default**: <br/>- the value of the variable "var1".<br/>- the value of the variable "family.var2". |
|
| **family.subfamily.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Third variable.<br/>**Default**: <br/>- the value of the variable "var1".<br/>- the value of the variable "family.var2". |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details><summary>a family</summary>
|
<details><summary>a family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family2**<br>`standard`
|
**family2**<br>`standard`
|
||||||
|
|
@ -40,7 +40,7 @@
|
||||||
| **family2.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.<br/>**Default**: the value of the variable "family.var2". |
|
| **family2.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.<br/>**Default**: the value of the variable "family.var2". |
|
||||||
| **family2.var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Var3.<br/>**Default**: string4<br/>**Example**: string5 |
|
| **family2.var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | Var3.<br/>**Default**: string4<br/>**Example**: string5 |
|
||||||
|
|
||||||
<details><summary>a sub family</summary>
|
<details><summary>a sub family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family2.subfamily**<br>`standard`
|
**family2.subfamily**<br>`standard`
|
||||||
|
|
@ -51,7 +51,7 @@
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **family2.subfamily.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Fourth variable.<br/>**Default**: <br/>- the value of the variable "var1".<br/>- the value of the variable "family.var2".<br/>- the value of the variable "family2.var3". |
|
| **family2.subfamily.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Fourth variable.<br/>**Default**: <br/>- the value of the variable "var1".<br/>- the value of the variable "family.var2".<br/>- the value of the variable "family2.var3". |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,14 +2,14 @@
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
|
||||||
| **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.<br/>**Default**: no |
|
| **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.<br/>**Default**: no |
|
||||||
|
|
||||||
<details><summary>possibly hidden family</summary>
|
<details><summary>possibly hidden family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family**<br>`basic` *`hidden`*
|
**family**<br>`basic` *`hidden`*
|
||||||
|
|
||||||
**Hidden**: if condition is yes.
|
**Hidden**: if condition is yes.
|
||||||
>>>
|
>>>
|
||||||
<details><summary>family.subfamily</summary>
|
<details><summary>family.subfamily</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family.subfamily**<br>`basic`
|
**family.subfamily**<br>`basic`
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
|--------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|--------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
| **family.subfamily.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
| **family.subfamily.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,14 +2,14 @@
|
||||||
|------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||||
| **condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.<br/>**Default**: true |
|
| **condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.<br/>**Default**: true |
|
||||||
|
|
||||||
<details><summary>possibly hidden family</summary>
|
<details><summary>possibly hidden family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family**<br>`standard` *`hidden`*
|
**family**<br>`standard` *`hidden`*
|
||||||
|
|
||||||
**Hidden**: when the variable "condition" has the value "true".
|
**Hidden**: when the variable "condition" has the value "true".
|
||||||
>>>
|
>>>
|
||||||
<details><summary>a subfamily</summary>
|
<details><summary>a subfamily</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family.subfamily**<br>`standard`
|
**family.subfamily**<br>`standard`
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------|---------------|
|
|-----------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
| **family.subfamily.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
|
| **family.subfamily.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,14 +2,14 @@
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------|
|
||||||
| **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.<br/>**Default**: no |
|
| **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The variable use has condition.<br/>**Default**: no |
|
||||||
|
|
||||||
<details><summary>possibly hidden family</summary>
|
<details><summary>possibly hidden family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family**<br>`basic` *`hidden`*
|
**family**<br>`basic` *`hidden`*
|
||||||
|
|
||||||
**Hidden**: if condition is yes.
|
**Hidden**: if condition is yes.
|
||||||
>>>
|
>>>
|
||||||
<details><summary>a subfamily</summary>
|
<details><summary>a subfamily</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**family.sub_family**<br>`basic`
|
**family.sub_family**<br>`basic`
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
|---------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|---------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
| **family.sub_family.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
| **family.sub_family.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a family</summary>
|
<details><summary>a family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**general**<br>`basic`
|
**general**<br>`basic`
|
||||||
|
|
@ -10,5 +10,5 @@
|
||||||
| **general.int**<br/>[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first integer.<br/>**Validators**: <br/>- int and int2 must be different.<br/>- int and int3 must be different.<br/>**Example**: 5 |
|
| **general.int**<br/>[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A first integer.<br/>**Validators**: <br/>- int and int2 must be different.<br/>- int and int3 must be different.<br/>**Example**: 5 |
|
||||||
| **general.int2**<br/>[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second integer.<br/>**Default**: 1 |
|
| **general.int2**<br/>[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second integer.<br/>**Default**: 1 |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -13,5 +13,5 @@ This family contains lists of variable blocks.
|
||||||
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
||||||
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | An other follower. |
|
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | An other follower. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -13,5 +13,5 @@ This family contains lists of variable blocks.
|
||||||
| **leadership.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
| **leadership.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
||||||
| **leadership.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | An other follower. |
|
| **leadership.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | An other follower. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -13,5 +13,5 @@ This family contains lists of variable blocks.
|
||||||
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: value |
|
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: value |
|
||||||
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second follower.<br/>**Default**: returns follower1 value. |
|
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second follower.<br/>**Default**: returns follower1 value. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -12,5 +12,5 @@ This family contains lists of variable blocks.
|
||||||
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. |
|
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. |
|
||||||
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower with default value.<br/>**Default**: value |
|
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower with default value.<br/>**Default**: value |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -12,5 +12,5 @@ This family contains lists of variable blocks.
|
||||||
| **leadership.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
| **leadership.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||||
| **leadership.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: the value of the variable "leadership.leader". |
|
| **leadership.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: the value of the variable "leadership.leader". |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>general</summary>
|
<details><summary>general</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**general**<br>`standard`
|
**general**<br>`standard`
|
||||||
|
|
@ -9,16 +9,16 @@
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------|
|
||||||
| **general.mode_conteneur_actif**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | No change.<br/>**Default**: non |
|
| **general.mode_conteneur_actif**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | No change.<br/>**Default**: non |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details><summary>general1</summary>
|
<details><summary>general1</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**general1**<br>`basic`
|
**general1**<br>`basic`
|
||||||
|
|
||||||
|
|
||||||
>>>
|
>>>
|
||||||
<details><summary>general1.leader</summary>
|
<details><summary>general1.leader</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -33,7 +33,7 @@ This family contains lists of variable blocks.
|
||||||
| **general1.leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Follower1. |
|
| **general1.leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Follower1. |
|
||||||
| **general1.leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Follower2. |
|
| **general1.leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Follower2. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -12,5 +12,5 @@ This family contains lists of variable blocks.
|
||||||
| **leadership.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value_1<br/>- value_2<br/>- value_3<br/>**Examples**: <br/>- val1<br/>- val2 |
|
| **leadership.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value_1<br/>- value_2<br/>- value_3<br/>**Examples**: <br/>- val1<br/>- val2 |
|
||||||
| **leadership.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
| **leadership.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -14,5 +14,5 @@ This family contains lists of variable blocks.
|
||||||
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The follower2. |
|
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The follower2. |
|
||||||
| **leader.follower3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The follower3. |
|
| **leader.follower3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The follower3. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -12,5 +12,5 @@ This family contains lists of variable blocks.
|
||||||
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- a<br/>- b<br/>- c |
|
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- a<br/>- b<br/>- c |
|
||||||
| **leader.follower1**<br/>[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: the value of the index. |
|
| **leader.follower1**<br/>[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: the value of the index. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -12,5 +12,5 @@ This family contains lists of variable blocks.
|
||||||
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- a<br/>- b<br/>- c |
|
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- a<br/>- b<br/>- c |
|
||||||
| **leader.follower1**<br/>[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: the value of the index. |
|
| **leader.follower1**<br/>[`integer`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: the value of the index. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -13,5 +13,5 @@ This family contains lists of variable blocks.
|
||||||
| **leadership.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `multiple` | The first follower. |
|
| **leadership.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `multiple` | The first follower. |
|
||||||
| **leadership.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | The second follower.<br/>**Default**: value |
|
| **leadership.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | The second follower.<br/>**Default**: value |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>A leadership</summary>
|
<details><summary>A leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -13,5 +13,5 @@ This family contains lists of variable blocks.
|
||||||
| **leadership.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `multiple` | The first follower. |
|
| **leadership.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `multiple` | The first follower. |
|
||||||
| **leadership.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | The second follower.<br/>**Default**: value |
|
| **leadership.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | The second follower.<br/>**Default**: value |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|-----------------------------------------------------------------------------------------------------------------------|---------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------|---------------------------------|
|
||||||
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: no |
|
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: no |
|
||||||
|
|
||||||
<details><summary>a family</summary>
|
<details><summary>a family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**fam1**<br>`standard`
|
**fam1**<br>`standard`
|
||||||
|
|
@ -13,5 +13,5 @@
|
||||||
|----------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------|
|
||||||
| **fam1.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.<br/>**Default**: the value of the variable "var". |
|
| **fam1.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A calculated variable.<br/>**Default**: the value of the variable "var". |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>first family</summary>
|
<details><summary>first family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**fam1**<br>`standard`
|
**fam1**<br>`standard`
|
||||||
|
|
@ -9,9 +9,9 @@
|
||||||
|----------------------------------------------------------------------------------------------------------------------------|---------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------|---------------------------------|
|
||||||
| **fam1.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: no |
|
| **fam1.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: no |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details><summary>second family</summary>
|
<details><summary>second family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
>>> [!note] Informations
|
||||||
**fam2**<br>`standard`
|
**fam2**<br>`standard`
|
||||||
|
|
@ -22,5 +22,5 @@
|
||||||
|----------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------|
|
||||||
| **fam2.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: the value of the variable "fam1.var". |
|
| **fam2.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Default**: the value of the variable "fam1.var". |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -12,5 +12,5 @@ This family contains lists of variable blocks.
|
||||||
| **leadership.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
| **leadership.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||||
| **leadership.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A follower.<br/>**Default**: the value of the variable "leadership.leader". |
|
| **leadership.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A follower.<br/>**Default**: the value of the variable "leadership.leader". |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -13,7 +13,7 @@ This family contains lists of variable blocks.
|
||||||
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val11 |
|
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val11 |
|
||||||
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.<br/>**Default**: val21 |
|
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.<br/>**Default**: val21 |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -13,7 +13,7 @@ This family contains lists of variable blocks.
|
||||||
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val11 |
|
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val11 |
|
||||||
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.<br/>**Default**: val21 |
|
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.<br/>**Default**: val21 |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>leader</summary>
|
<details><summary>leader</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -12,7 +12,7 @@ This family contains lists of variable blocks.
|
||||||
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Leader.<br/>**Default**: <br/>- a<br/>- b |
|
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Leader.<br/>**Default**: <br/>- a<br/>- b |
|
||||||
| **leader.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | Follower. |
|
| **leader.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | Follower. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -13,7 +13,7 @@ This family contains lists of variable blocks.
|
||||||
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val11 |
|
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val11 |
|
||||||
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.<br/>**Default**: val21 |
|
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.<br/>**Default**: val21 |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -13,7 +13,7 @@ This family contains lists of variable blocks.
|
||||||
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val11 |
|
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val11 |
|
||||||
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.<br/>**Default**: val21 |
|
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.<br/>**Default**: val21 |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -13,7 +13,7 @@ This family contains lists of variable blocks.
|
||||||
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val11 |
|
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val11 |
|
||||||
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.<br/>**Default**: val21 |
|
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.<br/>**Default**: val21 |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -13,7 +13,7 @@ This family contains lists of variable blocks.
|
||||||
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val11 |
|
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val11 |
|
||||||
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.<br/>**Default**: val21 |
|
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.<br/>**Default**: val21 |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------|
|
||||||
| **calculate**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A calculated variable.<br/>**Default**: <br/>- value1<br/>- value2 |
|
| **calculate**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A calculated variable.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||||
|
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -17,5 +17,5 @@ This family contains lists of variable blocks.
|
||||||
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val11 |
|
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val11 |
|
||||||
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.<br/>**Default**: val21 |
|
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.<br/>**Default**: val21 |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -12,9 +12,9 @@ This family contains lists of variable blocks.
|
||||||
| **leadership_1.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
| **leadership_1.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||||
| **leadership_1.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
| **leadership_1.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details><summary>a second leadership</summary>
|
<details><summary>a second leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -28,5 +28,5 @@ This family contains lists of variable blocks.
|
||||||
| **leadership_2.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: the value of the variable "leadership_1.follower". |
|
| **leadership_2.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: the value of the variable "leadership_1.follower". |
|
||||||
| **leadership_2.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val |
|
| **leadership_2.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -12,9 +12,9 @@ This family contains lists of variable blocks.
|
||||||
| **leadership_1.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
| **leadership_1.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||||
| **leadership_1.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
| **leadership_1.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details><summary>a second leadership</summary>
|
<details><summary>a second leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -28,5 +28,5 @@ This family contains lists of variable blocks.
|
||||||
| **leadership_2.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
| **leadership_2.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||||
| **leadership_2.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A follower.<br/>**Default**: the value of the variable "leadership_1.leader". |
|
| **leadership_2.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A follower.<br/>**Default**: the value of the variable "leadership_1.leader". |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>The leadership</summary>
|
<details><summary>The leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -12,5 +12,5 @@ This family contains lists of variable blocks.
|
||||||
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | The leader. |
|
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | The leader. |
|
||||||
| **leader.follower1**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower.<br/>**Choices**: <br/>- a<br/>- b<br/>- c |
|
| **leader.follower1**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower.<br/>**Choices**: <br/>- a<br/>- b<br/>- c |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -12,5 +12,5 @@ This family contains lists of variable blocks.
|
||||||
| **leadership.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Aleader.<br/>**Default**: <br/>- a<br/>- b |
|
| **leadership.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Aleader.<br/>**Default**: <br/>- a<br/>- b |
|
||||||
| **leadership.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A follower.<br/>**Default**: value<br/>**Disabled**: depends on a calculation. |
|
| **leadership.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` *`disabled`* | A follower.<br/>**Default**: value<br/>**Disabled**: depends on a calculation. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -12,5 +12,5 @@ This family contains lists of variable blocks.
|
||||||
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. |
|
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. |
|
||||||
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A follower. |
|
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A follower. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -12,5 +12,5 @@ This family contains lists of variable blocks.
|
||||||
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. |
|
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. |
|
||||||
| **leader.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
| **leader.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------|----------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------|----------------------------------|
|
||||||
| **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: no |
|
| **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: no |
|
||||||
|
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -16,5 +16,5 @@ This family contains lists of variable blocks.
|
||||||
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. |
|
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A leader. |
|
||||||
| **leader.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
| **leader.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------|-----------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------|-----------------------------------|
|
||||||
| **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: yes |
|
| **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: yes |
|
||||||
|
|
||||||
<details><summary>a leadership</summary>
|
<details><summary>a leadership</summary>
|
||||||
|
|
||||||
This family contains lists of variable blocks.
|
This family contains lists of variable blocks.
|
||||||
|
|
||||||
|
|
@ -16,5 +16,5 @@ This family contains lists of variable blocks.
|
||||||
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. |
|
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A leader. |
|
||||||
| **leader.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A follower.<br/>**Disabled**: if condition is yes. |
|
| **leader.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* | A follower.<br/>**Disabled**: if condition is yes. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
|
||||||
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val1<br/>- val2 |
|
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val1<br/>- val2 |
|
||||||
|
|
||||||
<details><summary>A dynamic family</summary>
|
<details><summary>A dynamic family</summary>
|
||||||
|
|
||||||
This family builds families dynamically.
|
This family builds families dynamically.
|
||||||
|
|
||||||
|
|
@ -15,5 +15,5 @@ This family builds families dynamically.
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
|
||||||
| **dyn*val1*.var**<br/>**dyn*val2*.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
|
| **dyn*val1*.var**<br/>**dyn*val2*.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
|
||||||
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val1<br/>- val2 |
|
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val1<br/>- val2 |
|
||||||
|
|
||||||
<details><summary>A dynamic family</summary>
|
<details><summary>A dynamic family</summary>
|
||||||
|
|
||||||
This family builds families dynamically.
|
This family builds families dynamically.
|
||||||
|
|
||||||
|
|
@ -15,5 +15,5 @@ This family builds families dynamically.
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
|
||||||
| **dyn*val1*.vardyn**<br/>**dyn*val2*.vardyn**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
|
| **dyn*val1*.vardyn**<br/>**dyn*val2*.vardyn**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
|
||||||
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 |
|
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 |
|
||||||
|
|
||||||
<details><summary>A dynamic family</summary>
|
<details><summary>A dynamic family</summary>
|
||||||
|
|
||||||
This family builds families dynamically.
|
This family builds families dynamically.
|
||||||
|
|
||||||
|
|
@ -15,5 +15,5 @@ This family builds families dynamically.
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
|
||||||
| **dyn*val1*.vardyn**<br/>**dyn*val2*.vardyn**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
|
| **dyn*val1*.vardyn**<br/>**dyn*val2*.vardyn**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------|--------------------|
|
||||||
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable. |
|
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable. |
|
||||||
|
|
||||||
<details><summary>A dynamic family</summary>
|
<details><summary>A dynamic family</summary>
|
||||||
|
|
||||||
This family builds families dynamically.
|
This family builds families dynamically.
|
||||||
|
|
||||||
|
|
@ -15,5 +15,5 @@ This family builds families dynamically.
|
||||||
|---------------------------------------------------------------------------------------------------------------------------------|---------------------|
|
|---------------------------------------------------------------------------------------------------------------------------------|---------------------|
|
||||||
| **dyn*example*.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
|
| **dyn*example*.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------|
|
||||||
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val.1<br/>- val.2 |
|
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val.1<br/>- val.2 |
|
||||||
|
|
||||||
<details><summary>A dynamic family</summary>
|
<details><summary>A dynamic family</summary>
|
||||||
|
|
||||||
This family builds families dynamically.
|
This family builds families dynamically.
|
||||||
|
|
||||||
|
|
@ -16,5 +16,5 @@ This family builds families dynamically.
|
||||||
| **dyn*val_1*.var1**<br/>**dyn*val_2*.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.<br/>**Default**: the value of the identifier. |
|
| **dyn*val_1*.var1**<br/>**dyn*val_2*.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.<br/>**Default**: the value of the identifier. |
|
||||||
| **dyn*val_1*.var2**<br/>**dyn*val_2*.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.<br/>**Default**: depends on a calculation. |
|
| **dyn*val_1*.var2**<br/>**dyn*val_2*.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A dynamic variable.<br/>**Default**: depends on a calculation. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
|
||||||
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val1<br/>- val2 |
|
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- val1<br/>- val2 |
|
||||||
|
|
||||||
<details><summary>A dynamic family</summary>
|
<details><summary>A dynamic family</summary>
|
||||||
|
|
||||||
This family builds families dynamically.
|
This family builds families dynamically.
|
||||||
|
|
||||||
|
|
@ -15,5 +15,5 @@ This family builds families dynamically.
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
| **dyn*val1*.var**<br/>**dyn*val2*.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var. |
|
| **dyn*val1*.var**<br/>**dyn*val2*.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
|
||||||
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 |
|
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 |
|
||||||
|
|
||||||
<details><summary>A dynamic family</summary>
|
<details><summary>A dynamic family</summary>
|
||||||
|
|
||||||
This family builds families dynamically.
|
This family builds families dynamically.
|
||||||
|
|
||||||
|
|
@ -15,5 +15,5 @@ This family builds families dynamically.
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
|
||||||
| **dyn*val1*.var**<br/>**dyn*val2*.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var. |
|
| **dyn*val1*.var**<br/>**dyn*val2*.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | Var. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<details><summary>a dynamic family</summary>
|
<details><summary>a dynamic family</summary>
|
||||||
|
|
||||||
This family builds families dynamically.
|
This family builds families dynamically.
|
||||||
|
|
||||||
|
|
@ -11,5 +11,5 @@ This family builds families dynamically.
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------|
|
||||||
| **dyn*val1*.var**<br/>**dyn*val2*.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable inside a dynamic family. |
|
| **dyn*val1*.var**<br/>**dyn*val2*.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable inside a dynamic family. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
|
||||||
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 |
|
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 |
|
||||||
|
|
||||||
<details><summary>A dynamic family</summary>
|
<details><summary>A dynamic family</summary>
|
||||||
|
|
||||||
This family builds families dynamically.
|
This family builds families dynamically.
|
||||||
|
|
||||||
|
|
@ -15,5 +15,5 @@ This family builds families dynamically.
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|
|
||||||
| **dyn*val1*.var**<br/>**dyn*val2*.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
|
| **dyn*val1*.var**<br/>**dyn*val2*.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue