Compare commits
No commits in common. "ef0aca7e55d321af6b4d42862a91aa359b5357d1" and "213c25c8f6132d9d4598bc57058880278b173fe0" have entirely different histories.
ef0aca7e55
...
213c25c8f6
100 changed files with 95 additions and 451 deletions
|
|
@ -1,10 +1,3 @@
|
||||||
## 0.2.0a27 (2025-09-29)
|
|
||||||
|
|
||||||
### Fix
|
|
||||||
|
|
||||||
- doc network with CIDR format
|
|
||||||
- better doc for calculation with unknown variable
|
|
||||||
|
|
||||||
## 0.2.0a26 (2025-09-29)
|
## 0.2.0a26 (2025-09-29)
|
||||||
|
|
||||||
### 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.0a27"
|
version = "0.2.0a26"
|
||||||
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.0a27"
|
__version__ = "0.2.0a26"
|
||||||
|
|
|
||||||
|
|
@ -175,8 +175,6 @@ class Annotator(Walk):
|
||||||
prop_value,
|
prop_value,
|
||||||
variable.version,
|
variable.version,
|
||||||
)
|
)
|
||||||
if isinstance(prop_value, Calculation):
|
|
||||||
prop_value.default_values = False
|
|
||||||
|
|
||||||
def calculation_to_information(
|
def calculation_to_information(
|
||||||
self,
|
self,
|
||||||
|
|
@ -239,7 +237,6 @@ class Annotator(Walk):
|
||||||
"type": "variable",
|
"type": "variable",
|
||||||
"value": value,
|
"value": value,
|
||||||
"ori_path": variable_path,
|
"ori_path": variable_path,
|
||||||
"optional": values.optional,
|
|
||||||
}
|
}
|
||||||
if isinstance(values, InformationCalculation):
|
if isinstance(values, InformationCalculation):
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
|
|
@ -670,20 +670,14 @@ class RougailOutputDoc(Examples):
|
||||||
if variable and self._is_inaccessible_user_data(variable):
|
if variable and self._is_inaccessible_user_data(variable):
|
||||||
msg = _("depends on an undocumented variable")
|
msg = _("depends on an undocumented variable")
|
||||||
elif condition == "when_not":
|
elif condition == "when_not":
|
||||||
if not calculation["optional"]:
|
|
||||||
msg = _('when the variable "{0}" hasn\'t the value "{1}"')
|
msg = _('when the variable "{0}" hasn\'t the value "{1}"')
|
||||||
else:
|
else:
|
||||||
msg = _('when the variable "{0}" is defined and hasn\'t the value "{1}"')
|
|
||||||
else:
|
|
||||||
if not calculation["optional"]:
|
|
||||||
msg = _('when the variable "{0}" has the value "{1}"')
|
msg = _('when the variable "{0}" has the value "{1}"')
|
||||||
else:
|
|
||||||
msg = _('when the variable "{0}" is defined and has the value "{1}"')
|
|
||||||
if not isinstance(value, str):
|
if not isinstance(value, str):
|
||||||
value = dump(value)
|
value = dump(value)
|
||||||
values = msg.format(variable_path, value)
|
values = msg.format(variable_path, value)
|
||||||
else:
|
else:
|
||||||
if calculation["optional"]:
|
if calculation.get("optional", False):
|
||||||
path = calculation["value"]
|
path = calculation["value"]
|
||||||
if "{{ identifier }}" in path:
|
if "{{ identifier }}" in path:
|
||||||
if path not in self.dynamic_paths:
|
if path not in self.dynamic_paths:
|
||||||
|
|
@ -693,11 +687,7 @@ class RougailOutputDoc(Examples):
|
||||||
self.conf.forcepermissive.option(path).get()
|
self.conf.forcepermissive.option(path).get()
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
return None
|
return None
|
||||||
if not calculation["optional"]:
|
|
||||||
true_msg = _('the value of the variable "{0}"')
|
true_msg = _('the value of the variable "{0}"')
|
||||||
else:
|
|
||||||
true_msg = _('the value of the variable "{0}" if it is defined')
|
|
||||||
print('connard ben lan ...')
|
|
||||||
hidden_msg = _("the value of an undocumented variable")
|
hidden_msg = _("the value of an undocumented variable")
|
||||||
# if "{{ identifier }}" in calculation["value"] and calculation["value"] in self.dynamic_paths:
|
# if "{{ identifier }}" in calculation["value"] and calculation["value"] in self.dynamic_paths:
|
||||||
if "{{ identifier }}" in calculation["ori_path"]:
|
if "{{ identifier }}" in calculation["ori_path"]:
|
||||||
|
|
|
||||||
|
|
@ -64,11 +64,6 @@ DocTypes = {
|
||||||
"allow_reserved": _("reserved IP are allowed"),
|
"allow_reserved": _("reserved IP are allowed"),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
"network": {
|
|
||||||
"params": {
|
|
||||||
"cidr": _("network must be in CIDR format"),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"hostname": {
|
"hostname": {
|
||||||
"params": {
|
"params": {
|
||||||
"allow_ip": _("the host name can be an IP"),
|
"allow_ip": _("the host name can be an IP"),
|
||||||
|
|
|
||||||
|
|
@ -21,12 +21,6 @@ My var3. +
|
||||||
**Hidden**: var could be hidden.
|
**Hidden**: var could be hidden.
|
||||||
|
|
|
|
||||||
|
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` `__hidden__` |
|
|
||||||
My var4. +
|
|
||||||
**Hidden**: when the variable "a.unknown.variable" has the value "value".
|
|
||||||
|
|
|
||||||
|
|
||||||
**var5** +
|
**var5** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` |
|
||||||
My var5. +
|
My var5. +
|
||||||
|
|
@ -54,7 +48,7 @@ My var8. +
|
||||||
**Choices**: the a.unknown.variable values.
|
**Choices**: the a.unknown.variable values.
|
||||||
|====
|
|====
|
||||||
|
|
||||||
== my var9
|
== my var6
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -72,32 +66,3 @@ This family builds families dynamically.
|
||||||
A variable.
|
A variable.
|
||||||
|====
|
|====
|
||||||
|
|
||||||
[cols="1a,1a"]
|
|
||||||
|====
|
|
||||||
| Variable | Description
|
|
||||||
|
|
|
||||||
|
|
||||||
**var_10** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` `__hidden__` |
|
|
||||||
My var10. +
|
|
||||||
**Hidden**: when the variable "a.unknown.variable" has the value "val".
|
|
||||||
|
|
|
||||||
|
|
||||||
**var_11** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` `__hidden__` |
|
|
||||||
My var11. +
|
|
||||||
**Hidden**: when the variable "a.unknown.variable" hasn't the value "val".
|
|
||||||
|
|
|
||||||
|
|
||||||
**var_12** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` `__hidden__` |
|
|
||||||
My var12. +
|
|
||||||
**Hidden**: when the variable "a.unknown.variable" is defined and has the value "true".
|
|
||||||
|
|
|
||||||
|
|
||||||
**var_13** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` `__hidden__` |
|
|
||||||
My var13. +
|
|
||||||
**Hidden**: when the variable "a.unknown.variable" has the value "true".
|
|
||||||
|====
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -54,32 +54,8 @@ var8:
|
||||||
description: the a.unknown.variable values
|
description: the a.unknown.variable values
|
||||||
|
|
||||||
"var_{{ identifier }}":
|
"var_{{ identifier }}":
|
||||||
description: my var9
|
description: my var6
|
||||||
dynamic:
|
dynamic:
|
||||||
variable: a.unknown.variable
|
variable: a.unknown.variable
|
||||||
var:
|
var:
|
||||||
description: a variable
|
description: a variable
|
||||||
|
|
||||||
var_10:
|
|
||||||
description: my var10
|
|
||||||
hidden:
|
|
||||||
variable: a.unknown.variable
|
|
||||||
when: val
|
|
||||||
|
|
||||||
var_11:
|
|
||||||
description: my var11
|
|
||||||
hidden:
|
|
||||||
variable: a.unknown.variable
|
|
||||||
when_not: val
|
|
||||||
|
|
||||||
var_12:
|
|
||||||
description: my var12
|
|
||||||
hidden:
|
|
||||||
variable: a.unknown.variable
|
|
||||||
optional: true
|
|
||||||
|
|
||||||
var_13:
|
|
||||||
description: my var13
|
|
||||||
hidden:
|
|
||||||
variable: a.unknown.variable
|
|
||||||
optional: false
|
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,6 @@ An network. +
|
||||||
**var2** +
|
**var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` |
|
||||||
An network in CIDR format. +
|
An network in CIDR format. +
|
||||||
**Validator**: network must be in CIDR format +
|
|
||||||
**Default**: 1.1.1.0/24
|
**Default**: 1.1.1.0/24
|
||||||
|
|
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -49,10 +49,6 @@
|
||||||
"name": "mandatory"
|
"name": "mandatory"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"validators": {
|
|
||||||
"name": "Validator",
|
|
||||||
"values": "network must be in CIDR format"
|
|
||||||
},
|
|
||||||
"paths": [
|
"paths": [
|
||||||
"var2"
|
"var2"
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **var1**<br/>[`network`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An network.<br/>**Default**: 1.1.1.0 |
|
| **var1**<br/>[`network`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An network.<br/>**Default**: 1.1.1.0 |
|
||||||
| **var2**<br/>[`network`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An network in CIDR format.<br/>**Validator**: network must be in CIDR format<br/>**Default**: 1.1.1.0/24 |
|
| **var2**<br/>[`network`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An network in CIDR format.<br/>**Default**: 1.1.1.0/24 |
|
||||||
| **var3**<br/>[`network_cidr`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An network in CIDR format with obsolete CIDR type.<br/>**Default**: 1.1.1.0/24 |
|
| **var3**<br/>[`network_cidr`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An network in CIDR format with obsolete CIDR type.<br/>**Default**: 1.1.1.0/24 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,7 @@
|
||||||
│ [1;7m network [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: 1.1.1.0 │
|
│ [1;7m network [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: 1.1.1.0 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ An network in CIDR format. │
|
│ [1mvar2[0m │ An network in CIDR format. │
|
||||||
│ [1;7m network [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidator[0m: network must be in CIDR │
|
│ [1;7m network [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: 1.1.1.0/24 │
|
||||||
│ │ format │
|
|
||||||
│ │ [1mDefault[0m: 1.1.1.0/24 │
|
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar3[0m │ An network in CIDR format with │
|
│ [1mvar3[0m │ An network in CIDR format with │
|
||||||
│ [1;7m network_cidr [0m [1;7m standard [0m [1;7m mandatory [0m │ obsolete CIDR type. │
|
│ [1;7m network_cidr [0m [1;7m standard [0m [1;7m mandatory [0m │ obsolete CIDR type. │
|
||||||
|
|
|
||||||
|
|
@ -34,17 +34,5 @@ The fifth variable. +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||||
The sixth variable. +
|
The sixth variable. +
|
||||||
**Default**: value
|
**Default**: value
|
||||||
|
|
|
||||||
|
|
||||||
**var7** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The seventh variable. +
|
|
||||||
**Default**: 8080
|
|
||||||
|
|
|
||||||
|
|
||||||
**var8** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The height variable. +
|
|
||||||
**Default**: true
|
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -166,65 +166,5 @@
|
||||||
"descriptions": [
|
"descriptions": [
|
||||||
"The sixth variable."
|
"The sixth variable."
|
||||||
]
|
]
|
||||||
},
|
|
||||||
"var7": {
|
|
||||||
"type": "variable",
|
|
||||||
"default": {
|
|
||||||
"name": "Default",
|
|
||||||
"values": "8080"
|
|
||||||
},
|
|
||||||
"properties": [
|
|
||||||
{
|
|
||||||
"type": "type",
|
|
||||||
"name": "string"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "mode",
|
|
||||||
"name": "standard"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "property",
|
|
||||||
"name": "mandatory"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths": [
|
|
||||||
"var7"
|
|
||||||
],
|
|
||||||
"names": [
|
|
||||||
"var7"
|
|
||||||
],
|
|
||||||
"descriptions": [
|
|
||||||
"The seventh variable."
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"var8": {
|
|
||||||
"type": "variable",
|
|
||||||
"default": {
|
|
||||||
"name": "Default",
|
|
||||||
"values": "true"
|
|
||||||
},
|
|
||||||
"properties": [
|
|
||||||
{
|
|
||||||
"type": "type",
|
|
||||||
"name": "string"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "mode",
|
|
||||||
"name": "standard"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "property",
|
|
||||||
"name": "mandatory"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths": [
|
|
||||||
"var8"
|
|
||||||
],
|
|
||||||
"names": [
|
|
||||||
"var8"
|
|
||||||
],
|
|
||||||
"descriptions": [
|
|
||||||
"The height variable."
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -6,6 +6,4 @@
|
||||||
| **var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The forth variable.<br/>**Default**: value |
|
| **var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The forth variable.<br/>**Default**: value |
|
||||||
| **var5**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Default**: value |
|
| **var5**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Default**: value |
|
||||||
| **var6**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.<br/>**Default**: value |
|
| **var6**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.<br/>**Default**: value |
|
||||||
| **var7**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The seventh variable.<br/>**Default**: 8080 |
|
|
||||||
| **var8**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The height variable.<br/>**Default**: true |
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,10 +18,4 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar6[0m │ The sixth variable. │
|
│ [1mvar6[0m │ The sixth variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: value │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: value │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
|
||||||
│ [1mvar7[0m │ The seventh variable. │
|
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: 8080 │
|
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
|
||||||
│ [1mvar8[0m │ The height variable. │
|
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: true │
|
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,6 @@ My_variable. +
|
||||||
**my_calculated_variable** +
|
**my_calculated_variable** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||||
My_calculated_variable. +
|
My_calculated_variable. +
|
||||||
**Default**: the value of the variable "my_variable" if it is defined.
|
**Default**: the value of the variable "my_variable".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
"default": {
|
"default": {
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"values": [
|
"values": [
|
||||||
"the value of the variable \"my_variable\" if it is defined."
|
"the value of the variable \"my_variable\"."
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"properties": [
|
"properties": [
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | My_variable.<br/>**Default**: val1 |
|
| **my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | My_variable.<br/>**Default**: val1 |
|
||||||
| **my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.<br/>**Default**: the value of the variable "my_variable" if it is defined. |
|
| **my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.<br/>**Default**: the value of the variable "my_variable". |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,5 +6,5 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mmy_calculated_variable[0m │ My_calculated_variable. │
|
│ [1mmy_calculated_variable[0m │ My_calculated_variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable" if it is defined. │
|
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable". │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,6 @@ My_variable. +
|
||||||
**my_calculated_variable** +
|
**my_calculated_variable** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||||
My_calculated_variable. +
|
My_calculated_variable. +
|
||||||
**Default**: the value of the variable "my_variable" if it is defined.
|
**Default**: the value of the variable "my_variable".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
"default": {
|
"default": {
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"values": [
|
"values": [
|
||||||
"the value of the variable \"my_variable\" if it is defined."
|
"the value of the variable \"my_variable\"."
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"properties": [
|
"properties": [
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | My_variable.<br/>**Default**: val1 |
|
| **my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | My_variable.<br/>**Default**: val1 |
|
||||||
| **my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.<br/>**Default**: the value of the variable "my_variable" if it is defined. |
|
| **my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.<br/>**Default**: the value of the variable "my_variable". |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,5 +6,5 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mmy_calculated_variable[0m │ My_calculated_variable. │
|
│ [1mmy_calculated_variable[0m │ My_calculated_variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable" if it is defined. │
|
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable". │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,6 @@ My_variable. +
|
||||||
**my_calculated_variable** +
|
**my_calculated_variable** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||||
My_calculated_variable. +
|
My_calculated_variable. +
|
||||||
**Default**: the value of the variable "my_variable" if it is defined.
|
**Default**: the value of the variable "my_variable".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
"default": {
|
"default": {
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"values": [
|
"values": [
|
||||||
"the value of the variable \"my_variable\" if it is defined."
|
"the value of the variable \"my_variable\"."
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"properties": [
|
"properties": [
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | My_variable.<br/>**Default**: val1 |
|
| **my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | My_variable.<br/>**Default**: val1 |
|
||||||
| **my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.<br/>**Default**: the value of the variable "my_variable" if it is defined. |
|
| **my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.<br/>**Default**: the value of the variable "my_variable". |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,5 +6,5 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mmy_calculated_variable[0m │ My_calculated_variable. │
|
│ [1mmy_calculated_variable[0m │ My_calculated_variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable" if it is defined. │
|
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable". │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,6 @@ My_variable. +
|
||||||
**my_calculated_variable** +
|
**my_calculated_variable** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||||
My_calculated_variable. +
|
My_calculated_variable. +
|
||||||
**Default**: the value of the variable "my_variable" if it is defined.
|
**Default**: the value of the variable "my_variable".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@
|
||||||
"type": "variable",
|
"type": "variable",
|
||||||
"default": {
|
"default": {
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"values": "the value of the variable \"my_variable\" if it is defined."
|
"values": "the value of the variable \"my_variable\"."
|
||||||
},
|
},
|
||||||
"properties": [
|
"properties": [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_variable.<br/>**Default**: <br/>- val1<br/>- val2 |
|
| **my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_variable.<br/>**Default**: <br/>- val1<br/>- val2 |
|
||||||
| **my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.<br/>**Default**: the value of the variable "my_variable" if it is defined. |
|
| **my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.<br/>**Default**: the value of the variable "my_variable". |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,5 +8,5 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mmy_calculated_variable[0m │ My_calculated_variable. │
|
│ [1mmy_calculated_variable[0m │ My_calculated_variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable" if it is defined. │
|
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable". │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -9,21 +9,15 @@ A condition. +
|
||||||
**Default**: false
|
**Default**: false
|
||||||
|
|
|
|
||||||
|
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` |
|
|
||||||
A first variable. +
|
|
||||||
**Hidden**: when the variable "unknown" is defined and has the value "true".
|
|
||||||
|
|
|
||||||
|
|
||||||
**var3** +
|
**var3** +
|
||||||
`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` `__hidden__` |
|
||||||
A second variable. +
|
A second variable. +
|
||||||
**Hidden**: when the variable "condition" is defined and has the value "true".
|
**Hidden**: when the variable "condition" has the value "true".
|
||||||
|
|
|
|
||||||
|
|
||||||
**var4** +
|
**var4** +
|
||||||
`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` `__hidden__` |
|
||||||
A forth variable. +
|
A forth variable. +
|
||||||
**Hidden**: when the variable "condition" is defined and has the value "true".
|
**Hidden**: when the variable "condition" has the value "true".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,33 +29,6 @@
|
||||||
"A condition."
|
"A condition."
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"var1": {
|
|
||||||
"type": "variable",
|
|
||||||
"properties": [
|
|
||||||
{
|
|
||||||
"type": "type",
|
|
||||||
"name": "string"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "mode",
|
|
||||||
"name": "standard"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "property",
|
|
||||||
"name": "hidden",
|
|
||||||
"annotation": "when the variable \"unknown\" is defined and has the value \"true\"."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths": [
|
|
||||||
"var1"
|
|
||||||
],
|
|
||||||
"names": [
|
|
||||||
"var1"
|
|
||||||
],
|
|
||||||
"descriptions": [
|
|
||||||
"A first variable."
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"var3": {
|
"var3": {
|
||||||
"type": "variable",
|
"type": "variable",
|
||||||
"properties": [
|
"properties": [
|
||||||
|
|
@ -70,7 +43,7 @@
|
||||||
{
|
{
|
||||||
"type": "property",
|
"type": "property",
|
||||||
"name": "hidden",
|
"name": "hidden",
|
||||||
"annotation": "when the variable \"condition\" is defined and has the value \"true\"."
|
"annotation": "when the variable \"condition\" has the value \"true\"."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"paths": [
|
"paths": [
|
||||||
|
|
@ -97,7 +70,7 @@
|
||||||
{
|
{
|
||||||
"type": "property",
|
"type": "property",
|
||||||
"name": "hidden",
|
"name": "hidden",
|
||||||
"annotation": "when the variable \"condition\" is defined and has the value \"true\"."
|
"annotation": "when the variable \"condition\" has the value \"true\"."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"paths": [
|
"paths": [
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
| 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". |
|
| **var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.<br/>**Hidden**: when the variable "condition" 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" 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". |
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,17 +4,11 @@
|
||||||
│ [1mcondition[0m │ A condition. │
|
│ [1mcondition[0m │ A condition. │
|
||||||
│ [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. │
|
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;3;7m hidden [0m │ [1mHidden[0m: when the variable "unknown" │
|
|
||||||
│ │ 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 │
|
||||||
│ │ "condition" is defined and has the │
|
│ │ "condition" has the value "true". │
|
||||||
│ │ value "true". │
|
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar4[0m │ A forth variable. │
|
│ [1mvar4[0m │ A forth 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 │
|
||||||
│ │ "condition" is defined and has the │
|
│ │ "condition" has the value "true". │
|
||||||
│ │ value "true". │
|
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -39,6 +39,6 @@ A dynamic variable.
|
||||||
**var2** +
|
**var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||||
A variable calculated. +
|
A variable calculated. +
|
||||||
**Default**: the value of the variable "dynval1.var" if it is defined.
|
**Default**: the value of the variable "dynval1.var".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -93,7 +93,7 @@
|
||||||
"type": "variable",
|
"type": "variable",
|
||||||
"default": {
|
"default": {
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"values": "the value of the variable \"dynval1.var\" if it is defined."
|
"values": "the value of the variable \"dynval1.var\"."
|
||||||
},
|
},
|
||||||
"properties": [
|
"properties": [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -16,5 +16,5 @@ This family builds families dynamically.
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.<br/>**Default**: the value of the variable "dynval1.var" if it is defined. |
|
| **var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.<br/>**Default**: the value of the variable "dynval1.var". |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -32,5 +32,5 @@ This family builds families dynamically.
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar2[0m │ A variable calculated. │
|
│ [1mvar2[0m │ A variable calculated. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
||||||
│ │ "dynval1.var" if it is defined. │
|
│ │ "dynval1.var". │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -40,6 +40,6 @@ A variable inside dynamic family. +
|
||||||
**var2** +
|
**var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
|
||||||
A variable. +
|
A variable. +
|
||||||
**Default**: the value of the variable "dyn_val1.var" if it is defined.
|
**Default**: the value of the variable "dyn_val1.var".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -98,7 +98,7 @@
|
||||||
"type": "variable",
|
"type": "variable",
|
||||||
"default": {
|
"default": {
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"values": "the value of the variable \"dyn_val1.var\" if it is defined."
|
"values": "the value of the variable \"dyn_val1.var\"."
|
||||||
},
|
},
|
||||||
"properties": [
|
"properties": [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -16,5 +16,5 @@ This family builds families dynamically.
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.<br/>**Default**: the value of the variable "dyn_val1.var" if it is defined. |
|
| **var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.<br/>**Default**: the value of the variable "dyn_val1.var". |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -32,5 +32,5 @@ This family builds families dynamically.
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar2[0m │ A variable. │
|
│ [1mvar2[0m │ A variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m │ [1mDefault[0m: the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m │ [1mDefault[0m: the value of the variable │
|
||||||
│ │ "dyn_val1.var" if it is defined. │
|
│ │ "dyn_val1.var". │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,4 @@ var3: example
|
||||||
var4: value
|
var4: value
|
||||||
var5: value
|
var5: value
|
||||||
var6: value
|
var6: value
|
||||||
var7: '8080'
|
|
||||||
var8: 'true'
|
|
||||||
```
|
```
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@
|
||||||
```yaml
|
```yaml
|
||||||
---
|
---
|
||||||
condition: false
|
condition: false
|
||||||
var1: example
|
|
||||||
var3: example
|
var3: example
|
||||||
var4: example
|
var4: example
|
||||||
```
|
```
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,6 @@ An network. +
|
||||||
**rougail.var2** +
|
**rougail.var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` |
|
||||||
An network in CIDR format. +
|
An network in CIDR format. +
|
||||||
**Validator**: network must be in CIDR format +
|
|
||||||
**Default**: 1.1.1.0/24
|
**Default**: 1.1.1.0/24
|
||||||
|
|
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -67,10 +67,6 @@
|
||||||
"name": "mandatory"
|
"name": "mandatory"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"validators": {
|
|
||||||
"name": "Validator",
|
|
||||||
"values": "network must be in CIDR format"
|
|
||||||
},
|
|
||||||
"paths": [
|
"paths": [
|
||||||
"rougail.var2"
|
"rougail.var2"
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,6 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **rougail.var1**<br/>[`network`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An network.<br/>**Default**: 1.1.1.0 |
|
| **rougail.var1**<br/>[`network`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An network.<br/>**Default**: 1.1.1.0 |
|
||||||
| **rougail.var2**<br/>[`network`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An network in CIDR format.<br/>**Validator**: network must be in CIDR format<br/>**Default**: 1.1.1.0/24 |
|
| **rougail.var2**<br/>[`network`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An network in CIDR format.<br/>**Default**: 1.1.1.0/24 |
|
||||||
| **rougail.var3**<br/>[`network_cidr`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An network in CIDR format with obsolete CIDR type.<br/>**Default**: 1.1.1.0/24 |
|
| **rougail.var3**<br/>[`network_cidr`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An network in CIDR format with obsolete CIDR type.<br/>**Default**: 1.1.1.0/24 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,9 +10,7 @@
|
||||||
│ [1;7m network [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: 1.1.1.0 │
|
│ [1;7m network [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: 1.1.1.0 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mrougail.var2[0m │ An network in CIDR format. │
|
│ [1mrougail.var2[0m │ An network in CIDR format. │
|
||||||
│ [1;7m network [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidator[0m: network must be in CIDR │
|
│ [1;7m network [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: 1.1.1.0/24 │
|
||||||
│ │ format │
|
|
||||||
│ │ [1mDefault[0m: 1.1.1.0/24 │
|
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mrougail.var3[0m │ An network in CIDR format with │
|
│ [1mrougail.var3[0m │ An network in CIDR format with │
|
||||||
│ [1;7m network_cidr [0m [1;7m standard [0m [1;7m mandatory [0m │ obsolete CIDR type. │
|
│ [1;7m network_cidr [0m [1;7m standard [0m [1;7m mandatory [0m │ obsolete CIDR type. │
|
||||||
|
|
|
||||||
|
|
@ -36,17 +36,5 @@ The fifth variable. +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||||
The sixth variable. +
|
The sixth variable. +
|
||||||
**Default**: value
|
**Default**: value
|
||||||
|
|
|
||||||
|
|
||||||
**rougail.var7** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The seventh variable. +
|
|
||||||
**Default**: 8080
|
|
||||||
|
|
|
||||||
|
|
||||||
**rougail.var8** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The height variable. +
|
|
||||||
**Default**: true
|
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -184,66 +184,6 @@
|
||||||
"descriptions": [
|
"descriptions": [
|
||||||
"The sixth variable."
|
"The sixth variable."
|
||||||
]
|
]
|
||||||
},
|
|
||||||
"rougail.var7": {
|
|
||||||
"type": "variable",
|
|
||||||
"default": {
|
|
||||||
"name": "Default",
|
|
||||||
"values": "8080"
|
|
||||||
},
|
|
||||||
"properties": [
|
|
||||||
{
|
|
||||||
"type": "type",
|
|
||||||
"name": "string"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "mode",
|
|
||||||
"name": "standard"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "property",
|
|
||||||
"name": "mandatory"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths": [
|
|
||||||
"rougail.var7"
|
|
||||||
],
|
|
||||||
"names": [
|
|
||||||
"var7"
|
|
||||||
],
|
|
||||||
"descriptions": [
|
|
||||||
"The seventh variable."
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"rougail.var8": {
|
|
||||||
"type": "variable",
|
|
||||||
"default": {
|
|
||||||
"name": "Default",
|
|
||||||
"values": "true"
|
|
||||||
},
|
|
||||||
"properties": [
|
|
||||||
{
|
|
||||||
"type": "type",
|
|
||||||
"name": "string"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "mode",
|
|
||||||
"name": "standard"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "property",
|
|
||||||
"name": "mandatory"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths": [
|
|
||||||
"rougail.var8"
|
|
||||||
],
|
|
||||||
"names": [
|
|
||||||
"var8"
|
|
||||||
],
|
|
||||||
"descriptions": [
|
|
||||||
"The height variable."
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,4 @@
|
||||||
| **rougail.var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The forth variable.<br/>**Default**: value |
|
| **rougail.var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The forth variable.<br/>**Default**: value |
|
||||||
| **rougail.var5**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Default**: value |
|
| **rougail.var5**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Default**: value |
|
||||||
| **rougail.var6**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.<br/>**Default**: value |
|
| **rougail.var6**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.<br/>**Default**: value |
|
||||||
| **rougail.var7**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The seventh variable.<br/>**Default**: 8080 |
|
|
||||||
| **rougail.var8**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The height variable.<br/>**Default**: true |
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -23,10 +23,4 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mrougail.var6[0m │ The sixth variable. │
|
│ [1mrougail.var6[0m │ The sixth variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: value │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: value │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
|
||||||
│ [1mrougail.var7[0m │ The seventh variable. │
|
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: 8080 │
|
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
|
||||||
│ [1mrougail.var8[0m │ The height variable. │
|
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: true │
|
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,6 @@ My_variable. +
|
||||||
**rougail.my_calculated_variable** +
|
**rougail.my_calculated_variable** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||||
My_calculated_variable. +
|
My_calculated_variable. +
|
||||||
**Default**: the value of the variable "rougail.my_variable" if it is defined.
|
**Default**: the value of the variable "rougail.my_variable".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"default": {
|
"default": {
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"values": [
|
"values": [
|
||||||
"the value of the variable \"rougail.my_variable\" if it is defined."
|
"the value of the variable \"rougail.my_variable\"."
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"properties": [
|
"properties": [
|
||||||
|
|
|
||||||
|
|
@ -3,5 +3,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **rougail.my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | My_variable.<br/>**Default**: val1 |
|
| **rougail.my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | My_variable.<br/>**Default**: val1 |
|
||||||
| **rougail.my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.<br/>**Default**: the value of the variable "rougail.my_variable" if it is defined. |
|
| **rougail.my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.<br/>**Default**: the value of the variable "rougail.my_variable". |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,5 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mrougail.my_calculated_variable[0m │ My_calculated_variable. │
|
│ [1mrougail.my_calculated_variable[0m │ My_calculated_variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ "rougail.my_variable" if it is │
|
│ [1;7munique [0m [1;7m multiple [0m │ "rougail.my_variable". │
|
||||||
│ │ defined. │
|
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,6 @@ My_variable. +
|
||||||
**rougail.my_calculated_variable** +
|
**rougail.my_calculated_variable** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||||
My_calculated_variable. +
|
My_calculated_variable. +
|
||||||
**Default**: the value of the variable "rougail.my_variable" if it is defined.
|
**Default**: the value of the variable "rougail.my_variable".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"default": {
|
"default": {
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"values": [
|
"values": [
|
||||||
"the value of the variable \"rougail.my_variable\" if it is defined."
|
"the value of the variable \"rougail.my_variable\"."
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"properties": [
|
"properties": [
|
||||||
|
|
|
||||||
|
|
@ -3,5 +3,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **rougail.my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | My_variable.<br/>**Default**: val1 |
|
| **rougail.my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | My_variable.<br/>**Default**: val1 |
|
||||||
| **rougail.my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.<br/>**Default**: the value of the variable "rougail.my_variable" if it is defined. |
|
| **rougail.my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.<br/>**Default**: the value of the variable "rougail.my_variable". |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,5 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mrougail.my_calculated_variable[0m │ My_calculated_variable. │
|
│ [1mrougail.my_calculated_variable[0m │ My_calculated_variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ "rougail.my_variable" if it is │
|
│ [1;7munique [0m [1;7m multiple [0m │ "rougail.my_variable". │
|
||||||
│ │ defined. │
|
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,6 @@ My_variable. +
|
||||||
**rougail.my_calculated_variable** +
|
**rougail.my_calculated_variable** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||||
My_calculated_variable. +
|
My_calculated_variable. +
|
||||||
**Default**: the value of the variable "rougail.my_variable" if it is defined.
|
**Default**: the value of the variable "rougail.my_variable".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
"default": {
|
"default": {
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"values": [
|
"values": [
|
||||||
"the value of the variable \"rougail.my_variable\" if it is defined."
|
"the value of the variable \"rougail.my_variable\"."
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"properties": [
|
"properties": [
|
||||||
|
|
|
||||||
|
|
@ -3,5 +3,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **rougail.my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | My_variable.<br/>**Default**: val1 |
|
| **rougail.my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | My_variable.<br/>**Default**: val1 |
|
||||||
| **rougail.my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.<br/>**Default**: the value of the variable "rougail.my_variable" if it is defined. |
|
| **rougail.my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.<br/>**Default**: the value of the variable "rougail.my_variable". |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,5 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mrougail.my_calculated_variable[0m │ My_calculated_variable. │
|
│ [1mrougail.my_calculated_variable[0m │ My_calculated_variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ "rougail.my_variable" if it is │
|
│ [1;7munique [0m [1;7m multiple [0m │ "rougail.my_variable". │
|
||||||
│ │ defined. │
|
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,6 @@ My_variable. +
|
||||||
**rougail.my_calculated_variable** +
|
**rougail.my_calculated_variable** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||||
My_calculated_variable. +
|
My_calculated_variable. +
|
||||||
**Default**: the value of the variable "rougail.my_variable" if it is defined.
|
**Default**: the value of the variable "rougail.my_variable".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -59,7 +59,7 @@
|
||||||
"type": "variable",
|
"type": "variable",
|
||||||
"default": {
|
"default": {
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"values": "the value of the variable \"rougail.my_variable\" if it is defined."
|
"values": "the value of the variable \"rougail.my_variable\"."
|
||||||
},
|
},
|
||||||
"properties": [
|
"properties": [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -3,5 +3,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **rougail.my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_variable.<br/>**Default**: <br/>- val1<br/>- val2 |
|
| **rougail.my_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_variable.<br/>**Default**: <br/>- val1<br/>- val2 |
|
||||||
| **rougail.my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.<br/>**Default**: the value of the variable "rougail.my_variable" if it is defined. |
|
| **rougail.my_calculated_variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | My_calculated_variable.<br/>**Default**: the value of the variable "rougail.my_variable". |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,5 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mrougail.my_calculated_variable[0m │ My_calculated_variable. │
|
│ [1mrougail.my_calculated_variable[0m │ My_calculated_variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ "rougail.my_variable" if it is │
|
│ [1;7munique [0m [1;7m multiple [0m │ "rougail.my_variable". │
|
||||||
│ │ defined. │
|
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -11,21 +11,15 @@ A condition. +
|
||||||
**Default**: false
|
**Default**: false
|
||||||
|
|
|
|
||||||
|
|
||||||
**rougail.var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` |
|
|
||||||
A first variable. +
|
|
||||||
**Hidden**: when the variable "rougail.unknown" is defined and has the value "true".
|
|
||||||
|
|
|
||||||
|
|
||||||
**rougail.var3** +
|
**rougail.var3** +
|
||||||
`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` `__hidden__` |
|
||||||
A second variable. +
|
A second variable. +
|
||||||
**Hidden**: when the variable "rougail.condition" is defined and has the value "true".
|
**Hidden**: when the variable "rougail.condition" has the value "true".
|
||||||
|
|
|
|
||||||
|
|
||||||
**rougail.var4** +
|
**rougail.var4** +
|
||||||
`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` `__hidden__` |
|
||||||
A forth variable. +
|
A forth variable. +
|
||||||
**Hidden**: when the variable "rougail.condition" is defined and has the value "true".
|
**Hidden**: when the variable "rougail.condition" has the value "true".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -47,33 +47,6 @@
|
||||||
"A condition."
|
"A condition."
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"rougail.var1": {
|
|
||||||
"type": "variable",
|
|
||||||
"properties": [
|
|
||||||
{
|
|
||||||
"type": "type",
|
|
||||||
"name": "string"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "mode",
|
|
||||||
"name": "standard"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "property",
|
|
||||||
"name": "hidden",
|
|
||||||
"annotation": "when the variable \"rougail.unknown\" is defined and has the value \"true\"."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"paths": [
|
|
||||||
"rougail.var1"
|
|
||||||
],
|
|
||||||
"names": [
|
|
||||||
"var1"
|
|
||||||
],
|
|
||||||
"descriptions": [
|
|
||||||
"A first variable."
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"rougail.var3": {
|
"rougail.var3": {
|
||||||
"type": "variable",
|
"type": "variable",
|
||||||
"properties": [
|
"properties": [
|
||||||
|
|
@ -88,7 +61,7 @@
|
||||||
{
|
{
|
||||||
"type": "property",
|
"type": "property",
|
||||||
"name": "hidden",
|
"name": "hidden",
|
||||||
"annotation": "when the variable \"rougail.condition\" is defined and has the value \"true\"."
|
"annotation": "when the variable \"rougail.condition\" has the value \"true\"."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"paths": [
|
"paths": [
|
||||||
|
|
@ -115,7 +88,7 @@
|
||||||
{
|
{
|
||||||
"type": "property",
|
"type": "property",
|
||||||
"name": "hidden",
|
"name": "hidden",
|
||||||
"annotation": "when the variable \"rougail.condition\" is defined and has the value \"true\"."
|
"annotation": "when the variable \"rougail.condition\" has the value \"true\"."
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"paths": [
|
"paths": [
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **rougail.condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: false |
|
| **rougail.condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: false |
|
||||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A first variable.<br/>**Hidden**: when the variable "rougail.unknown" is defined and has the value "true". |
|
| **rougail.var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.<br/>**Hidden**: when the variable "rougail.condition" has the value "true". |
|
||||||
| **rougail.var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A second variable.<br/>**Hidden**: when the variable "rougail.condition" is defined and has the value "true". |
|
| **rougail.var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.<br/>**Hidden**: when the variable "rougail.condition" has the value "true". |
|
||||||
| **rougail.var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.<br/>**Hidden**: when the variable "rougail.condition" is defined and has the value "true". |
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,18 +9,13 @@
|
||||||
│ [1mrougail.condition[0m │ A condition. │
|
│ [1mrougail.condition[0m │ A condition. │
|
||||||
│ [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 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mrougail.var1[0m │ A first variable. │
|
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;3;7m hidden [0m │ [1mHidden[0m: when the variable │
|
|
||||||
│ │ "rougail.unknown" is defined and has │
|
|
||||||
│ │ the value "true". │
|
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
|
||||||
│ [1mrougail.var3[0m │ A second variable. │
|
│ [1mrougail.var3[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 │
|
||||||
│ │ "rougail.condition" is defined and │
|
│ │ "rougail.condition" has the value │
|
||||||
│ │ has the value "true". │
|
│ │ "true". │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mrougail.var4[0m │ A forth variable. │
|
│ [1mrougail.var4[0m │ A forth 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 │
|
||||||
│ │ "rougail.condition" is defined and │
|
│ │ "rougail.condition" has the value │
|
||||||
│ │ has the value "true". │
|
│ │ "true". │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -41,6 +41,6 @@ A dynamic variable.
|
||||||
**rougail.var2** +
|
**rougail.var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||||
A variable calculated. +
|
A variable calculated. +
|
||||||
**Default**: the value of the variable "rougail.dynval1.var" if it is defined.
|
**Default**: the value of the variable "rougail.dynval1.var".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -111,7 +111,7 @@
|
||||||
"type": "variable",
|
"type": "variable",
|
||||||
"default": {
|
"default": {
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"values": "the value of the variable \"rougail.dynval1.var\" if it is defined."
|
"values": "the value of the variable \"rougail.dynval1.var\"."
|
||||||
},
|
},
|
||||||
"properties": [
|
"properties": [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -18,5 +18,5 @@ This family builds families dynamically.
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.<br/>**Default**: the value of the variable "rougail.dynval1.var" if it is defined. |
|
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.<br/>**Default**: the value of the variable "rougail.dynval1.var". |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,5 @@ This family builds families dynamically.
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mrougail.var2[0m │ A variable calculated. │
|
│ [1mrougail.var2[0m │ A variable calculated. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
||||||
│ │ "rougail.dynval1.var" if it is │
|
│ │ "rougail.dynval1.var". │
|
||||||
│ │ defined. │
|
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,6 @@ A dynamic variable.
|
||||||
**rougail.var2** +
|
**rougail.var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||||
A variable calculated. +
|
A variable calculated. +
|
||||||
**Default**: the value of the variable "rougail.dynval1.var" if it is defined.
|
**Default**: the value of the variable "rougail.dynval1.var".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -104,7 +104,7 @@
|
||||||
"type": "variable",
|
"type": "variable",
|
||||||
"default": {
|
"default": {
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"values": "the value of the variable \"rougail.dynval1.var\" if it is defined."
|
"values": "the value of the variable \"rougail.dynval1.var\"."
|
||||||
},
|
},
|
||||||
"properties": [
|
"properties": [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -18,5 +18,5 @@ This family builds families dynamically.
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.<br/>**Default**: the value of the variable "rougail.dynval1.var" if it is defined. |
|
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.<br/>**Default**: the value of the variable "rougail.dynval1.var". |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,5 @@ This family builds families dynamically.
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mrougail.var2[0m │ A variable calculated. │
|
│ [1mrougail.var2[0m │ A variable calculated. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
||||||
│ │ "rougail.dynval1.var" if it is │
|
│ │ "rougail.dynval1.var". │
|
||||||
│ │ defined. │
|
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
**rougail.var2** +
|
**rougail.var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||||
A variable calculated. +
|
A variable calculated. +
|
||||||
**Default**: the value of the variable "rougail.dynval1.var" if it is defined.
|
**Default**: the value of the variable "rougail.dynval1.var".
|
||||||
|
|
|
|
||||||
|
|
||||||
**rougail.var1** +
|
**rougail.var1** +
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"type": "variable",
|
"type": "variable",
|
||||||
"default": {
|
"default": {
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"values": "the value of the variable \"rougail.dynval1.var\" if it is defined."
|
"values": "the value of the variable \"rougail.dynval1.var\"."
|
||||||
},
|
},
|
||||||
"properties": [
|
"properties": [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.<br/>**Default**: the value of the variable "rougail.dynval1.var" if it is defined. |
|
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.<br/>**Default**: the value of the variable "rougail.dynval1.var". |
|
||||||
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 |
|
| **rougail.var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A suffix variable.<br/>**Examples**: <br/>- val1<br/>- val2 |
|
||||||
|
|
||||||
## rougail.dyn*val1* or rougail.dyn*val2*
|
## rougail.dyn*val1* or rougail.dyn*val2*
|
||||||
|
|
|
||||||
|
|
@ -8,8 +8,7 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mrougail.var2[0m │ A variable calculated. │
|
│ [1mrougail.var2[0m │ A variable calculated. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
||||||
│ │ "rougail.dynval1.var" if it is │
|
│ │ "rougail.dynval1.var". │
|
||||||
│ │ defined. │
|
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mrougail.var1[0m │ A suffix variable. │
|
│ [1mrougail.var1[0m │ A suffix variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m unique [0m [1;7m [0m │ [1mExamples[0m: │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m unique [0m [1;7m [0m │ [1mExamples[0m: │
|
||||||
|
|
|
||||||
|
|
@ -41,6 +41,6 @@ A dynamic variable.
|
||||||
**rougail.var2** +
|
**rougail.var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||||
A variable calculated. +
|
A variable calculated. +
|
||||||
**Default**: the value of the variable "rougail.dynval1.var" if it is defined.
|
**Default**: the value of the variable "rougail.dynval1.var".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -111,7 +111,7 @@
|
||||||
"type": "variable",
|
"type": "variable",
|
||||||
"default": {
|
"default": {
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"values": "the value of the variable \"rougail.dynval1.var\" if it is defined."
|
"values": "the value of the variable \"rougail.dynval1.var\"."
|
||||||
},
|
},
|
||||||
"properties": [
|
"properties": [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -18,5 +18,5 @@ This family builds families dynamically.
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.<br/>**Default**: the value of the variable "rougail.dynval1.var" if it is defined. |
|
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.<br/>**Default**: the value of the variable "rougail.dynval1.var". |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,5 @@ This family builds families dynamically.
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mrougail.var2[0m │ A variable calculated. │
|
│ [1mrougail.var2[0m │ A variable calculated. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
||||||
│ │ "rougail.dynval1.var" if it is │
|
│ │ "rougail.dynval1.var". │
|
||||||
│ │ defined. │
|
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -54,9 +54,7 @@ A variable inside a sub dynamic family. +
|
||||||
A variable. +
|
A variable. +
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* the value of the variable "rougail.my_dyn_family_val1.subdyn___val1__.var" if it
|
* the value of the variable "rougail.my_dyn_family_val1.subdyn___val1__.var"
|
||||||
is defined
|
* the value of the variable "rougail.my_dyn_family_val1.subdyn___val2__.var"
|
||||||
* the value of the variable "rougail.my_dyn_family_val1.subdyn___val2__.var" if it
|
|
||||||
is defined
|
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -151,8 +151,8 @@
|
||||||
"default": {
|
"default": {
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"values": [
|
"values": [
|
||||||
"the value of the variable \"rougail.my_dyn_family_val1.subdyn_val1.var\" if it is defined",
|
"the value of the variable \"rougail.my_dyn_family_val1.subdyn_val1.var\"",
|
||||||
"the value of the variable \"rougail.my_dyn_family_val1.subdyn_val2.var\" if it is defined"
|
"the value of the variable \"rougail.my_dyn_family_val1.subdyn_val2.var\""
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"properties": [
|
"properties": [
|
||||||
|
|
|
||||||
|
|
@ -26,5 +26,5 @@ This family builds families dynamically.
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A variable.<br/>**Default**: <br/>- the value of the variable "rougail.my_dyn_family_val1.subdyn_*val1*.var" if it is defined<br/>- the value of the variable "rougail.my_dyn_family_val1.subdyn_*val2*.var" if it is defined |
|
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A variable.<br/>**Default**: <br/>- the value of the variable "rougail.my_dyn_family_val1.subdyn_*val1*.var"<br/>- the value of the variable "rougail.my_dyn_family_val1.subdyn_*val2*.var" |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -55,8 +55,6 @@ This family builds families dynamically.
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m unique [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m unique [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7mmultiple [0m │ - the value of the variable │
|
│ [1;7mmultiple [0m │ - the value of the variable │
|
||||||
│ │ "rougail.my_dyn_family_val1.subdyn_[3m…[0m │
|
│ │ "rougail.my_dyn_family_val1.subdyn_[3m…[0m │
|
||||||
│ │ if it is defined │
|
|
||||||
│ │ - the value of the variable │
|
│ │ - the value of the variable │
|
||||||
│ │ "rougail.my_dyn_family_val1.subdyn_[3m…[0m │
|
│ │ "rougail.my_dyn_family_val1.subdyn_[3m…[0m │
|
||||||
│ │ if it is defined │
|
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,6 @@ A variable inside dynamic family. +
|
||||||
**rougail.var2** +
|
**rougail.var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
|
||||||
A variable. +
|
A variable. +
|
||||||
**Default**: the value of the variable "rougail.dyn_val1.var" if it is defined.
|
**Default**: the value of the variable "rougail.dyn_val1.var".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -116,7 +116,7 @@
|
||||||
"type": "variable",
|
"type": "variable",
|
||||||
"default": {
|
"default": {
|
||||||
"name": "Default",
|
"name": "Default",
|
||||||
"values": "the value of the variable \"rougail.dyn_val1.var\" if it is defined."
|
"values": "the value of the variable \"rougail.dyn_val1.var\"."
|
||||||
},
|
},
|
||||||
"properties": [
|
"properties": [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -18,5 +18,5 @@ This family builds families dynamically.
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.<br/>**Default**: the value of the variable "rougail.dyn_val1.var" if it is defined. |
|
| **rougail.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | A variable.<br/>**Default**: the value of the variable "rougail.dyn_val1.var". |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,5 @@ This family builds families dynamically.
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mrougail.var2[0m │ A variable. │
|
│ [1mrougail.var2[0m │ A variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m │ [1mDefault[0m: the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m │ [1mDefault[0m: the value of the variable │
|
||||||
│ │ "rougail.dyn_val1.var" if it is │
|
│ │ "rougail.dyn_val1.var". │
|
||||||
│ │ defined. │
|
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,4 @@ rougail:
|
||||||
var4: value
|
var4: value
|
||||||
var5: value
|
var5: value
|
||||||
var6: value
|
var6: value
|
||||||
var7: '8080'
|
|
||||||
var8: 'true'
|
|
||||||
```
|
```
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,6 @@
|
||||||
---
|
---
|
||||||
rougail:
|
rougail:
|
||||||
condition: false
|
condition: false
|
||||||
var1: example
|
|
||||||
var3: example
|
var3: example
|
||||||
var4: example
|
var4: example
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue