fix: better doc for calculation with unknown variable
This commit is contained in:
parent
213c25c8f6
commit
777346d070
88 changed files with 419 additions and 89 deletions
|
|
@ -175,6 +175,8 @@ class Annotator(Walk):
|
|||
prop_value,
|
||||
variable.version,
|
||||
)
|
||||
if isinstance(prop_value, Calculation):
|
||||
prop_value.default_values = False
|
||||
|
||||
def calculation_to_information(
|
||||
self,
|
||||
|
|
@ -237,6 +239,7 @@ class Annotator(Walk):
|
|||
"type": "variable",
|
||||
"value": value,
|
||||
"ori_path": variable_path,
|
||||
"optional": values.optional,
|
||||
}
|
||||
if isinstance(values, InformationCalculation):
|
||||
return {
|
||||
|
|
|
|||
|
|
@ -670,14 +670,20 @@ class RougailOutputDoc(Examples):
|
|||
if variable and self._is_inaccessible_user_data(variable):
|
||||
msg = _("depends on an undocumented variable")
|
||||
elif condition == "when_not":
|
||||
msg = _('when the variable "{0}" hasn\'t the value "{1}"')
|
||||
if not calculation["optional"]:
|
||||
msg = _('when the variable "{0}" hasn\'t the value "{1}"')
|
||||
else:
|
||||
msg = _('when the variable "{0}" is defined and hasn\'t the value "{1}"')
|
||||
else:
|
||||
msg = _('when the variable "{0}" has the value "{1}"')
|
||||
if not calculation["optional"]:
|
||||
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):
|
||||
value = dump(value)
|
||||
values = msg.format(variable_path, value)
|
||||
else:
|
||||
if calculation.get("optional", False):
|
||||
if calculation["optional"]:
|
||||
path = calculation["value"]
|
||||
if "{{ identifier }}" in path:
|
||||
if path not in self.dynamic_paths:
|
||||
|
|
@ -687,7 +693,11 @@ class RougailOutputDoc(Examples):
|
|||
self.conf.forcepermissive.option(path).get()
|
||||
except AttributeError:
|
||||
return None
|
||||
true_msg = _('the value of the variable "{0}"')
|
||||
if not calculation["optional"]:
|
||||
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")
|
||||
# if "{{ identifier }}" in calculation["value"] and calculation["value"] in self.dynamic_paths:
|
||||
if "{{ identifier }}" in calculation["ori_path"]:
|
||||
|
|
|
|||
|
|
@ -21,6 +21,12 @@ My var3. +
|
|||
**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** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `mandatory` |
|
||||
My var5. +
|
||||
|
|
@ -48,7 +54,7 @@ My var8. +
|
|||
**Choices**: the a.unknown.variable values.
|
||||
|====
|
||||
|
||||
== my var6
|
||||
== my var9
|
||||
|
||||
|
||||
|
||||
|
|
@ -66,3 +72,32 @@ This family builds families dynamically.
|
|||
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,8 +54,32 @@ var8:
|
|||
description: the a.unknown.variable values
|
||||
|
||||
"var_{{ identifier }}":
|
||||
description: my var6
|
||||
description: my var9
|
||||
dynamic:
|
||||
variable: a.unknown.variable
|
||||
var:
|
||||
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
|
||||
|
|
|
|||
|
|
@ -34,5 +34,17 @@ The fifth variable. +
|
|||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
The sixth variable. +
|
||||
**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,5 +166,65 @@
|
|||
"descriptions": [
|
||||
"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,4 +6,6 @@
|
|||
| **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 |
|
||||
| **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,4 +18,10 @@
|
|||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mvar6[0m │ The sixth variable. │
|
||||
│ [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** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
My_calculated_variable. +
|
||||
**Default**: the value of the variable "my_variable".
|
||||
**Default**: the value of the variable "my_variable" if it is defined.
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
"default": {
|
||||
"name": "Default",
|
||||
"values": [
|
||||
"the value of the variable \"my_variable\"."
|
||||
"the value of the variable \"my_variable\" if it is defined."
|
||||
]
|
||||
},
|
||||
"properties": [
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **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". |
|
||||
| **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. |
|
||||
|
||||
|
|
|
|||
|
|
@ -6,5 +6,5 @@
|
|||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [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;7munique [0m [1;7m multiple [0m │ "my_variable". │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable" if it is defined. │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -12,6 +12,6 @@ My_variable. +
|
|||
**my_calculated_variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
My_calculated_variable. +
|
||||
**Default**: the value of the variable "my_variable".
|
||||
**Default**: the value of the variable "my_variable" if it is defined.
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
"default": {
|
||||
"name": "Default",
|
||||
"values": [
|
||||
"the value of the variable \"my_variable\"."
|
||||
"the value of the variable \"my_variable\" if it is defined."
|
||||
]
|
||||
},
|
||||
"properties": [
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **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". |
|
||||
| **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. |
|
||||
|
||||
|
|
|
|||
|
|
@ -6,5 +6,5 @@
|
|||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [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;7munique [0m [1;7m multiple [0m │ "my_variable". │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable" if it is defined. │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -12,6 +12,6 @@ My_variable. +
|
|||
**my_calculated_variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
My_calculated_variable. +
|
||||
**Default**: the value of the variable "my_variable".
|
||||
**Default**: the value of the variable "my_variable" if it is defined.
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
"default": {
|
||||
"name": "Default",
|
||||
"values": [
|
||||
"the value of the variable \"my_variable\"."
|
||||
"the value of the variable \"my_variable\" if it is defined."
|
||||
]
|
||||
},
|
||||
"properties": [
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **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". |
|
||||
| **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. |
|
||||
|
||||
|
|
|
|||
|
|
@ -6,5 +6,5 @@
|
|||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [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;7munique [0m [1;7m multiple [0m │ "my_variable". │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable" if it is defined. │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -15,6 +15,6 @@ My_variable. +
|
|||
**my_calculated_variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
My_calculated_variable. +
|
||||
**Default**: the value of the variable "my_variable".
|
||||
**Default**: the value of the variable "my_variable" if it is defined.
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@
|
|||
"type": "variable",
|
||||
"default": {
|
||||
"name": "Default",
|
||||
"values": "the value of the variable \"my_variable\"."
|
||||
"values": "the value of the variable \"my_variable\" if it is defined."
|
||||
},
|
||||
"properties": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
| 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_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". |
|
||||
| **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. |
|
||||
|
||||
|
|
|
|||
|
|
@ -8,5 +8,5 @@
|
|||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [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;7munique [0m [1;7m multiple [0m │ "my_variable". │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable" if it is defined. │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -9,15 +9,21 @@ A condition. +
|
|||
**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** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` |
|
||||
A second variable. +
|
||||
**Hidden**: when the variable "condition" has the value "true".
|
||||
**Hidden**: when the variable "condition" is defined and has the value "true".
|
||||
|
|
||||
|
||||
**var4** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` |
|
||||
A forth variable. +
|
||||
**Hidden**: when the variable "condition" has the value "true".
|
||||
**Hidden**: when the variable "condition" is defined and has the value "true".
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,33 @@
|
|||
"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": {
|
||||
"type": "variable",
|
||||
"properties": [
|
||||
|
|
@ -43,7 +70,7 @@
|
|||
{
|
||||
"type": "property",
|
||||
"name": "hidden",
|
||||
"annotation": "when the variable \"condition\" has the value \"true\"."
|
||||
"annotation": "when the variable \"condition\" is defined and has the value \"true\"."
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
|
|
@ -70,7 +97,7 @@
|
|||
{
|
||||
"type": "property",
|
||||
"name": "hidden",
|
||||
"annotation": "when the variable \"condition\" has the value \"true\"."
|
||||
"annotation": "when the variable \"condition\" is defined and has the value \"true\"."
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: false |
|
||||
| **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". |
|
||||
| **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". |
|
||||
| **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" is defined and has the value "true". |
|
||||
| **var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` *`hidden`* | A forth variable.<br/>**Hidden**: when the variable "condition" is defined and has the value "true". |
|
||||
|
||||
|
|
|
|||
|
|
@ -4,11 +4,17 @@
|
|||
│ [1mcondition[0m │ A condition. │
|
||||
│ [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. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;3;7m hidden [0m │ [1mHidden[0m: when the variable │
|
||||
│ │ "condition" has the value "true". │
|
||||
│ │ "condition" is defined and has the │
|
||||
│ │ value "true". │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mvar4[0m │ A forth variable. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;3;7m hidden [0m │ [1mHidden[0m: when the variable │
|
||||
│ │ "condition" has the value "true". │
|
||||
│ │ "condition" is defined and has the │
|
||||
│ │ value "true". │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -39,6 +39,6 @@ A dynamic variable.
|
|||
**var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A variable calculated. +
|
||||
**Default**: the value of the variable "dynval1.var".
|
||||
**Default**: the value of the variable "dynval1.var" if it is defined.
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@
|
|||
"type": "variable",
|
||||
"default": {
|
||||
"name": "Default",
|
||||
"values": "the value of the variable \"dynval1.var\"."
|
||||
"values": "the value of the variable \"dynval1.var\" if it is defined."
|
||||
},
|
||||
"properties": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -16,5 +16,5 @@ This family builds families dynamically.
|
|||
|
||||
| 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". |
|
||||
| **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. |
|
||||
|
||||
|
|
|
|||
|
|
@ -32,5 +32,5 @@ This family builds families dynamically.
|
|||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mvar2[0m │ A variable calculated. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ │ "dynval1.var". │
|
||||
│ │ "dynval1.var" if it is defined. │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -40,6 +40,6 @@ A variable inside dynamic family. +
|
|||
**var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
|
||||
A variable. +
|
||||
**Default**: the value of the variable "dyn_val1.var".
|
||||
**Default**: the value of the variable "dyn_val1.var" if it is defined.
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@
|
|||
"type": "variable",
|
||||
"default": {
|
||||
"name": "Default",
|
||||
"values": "the value of the variable \"dyn_val1.var\"."
|
||||
"values": "the value of the variable \"dyn_val1.var\" if it is defined."
|
||||
},
|
||||
"properties": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -16,5 +16,5 @@ This family builds families dynamically.
|
|||
|
||||
| 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". |
|
||||
| **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. |
|
||||
|
||||
|
|
|
|||
|
|
@ -32,5 +32,5 @@ This family builds families dynamically.
|
|||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mvar2[0m │ A variable. │
|
||||
│ [1;7m string [0m [1;7m standard [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ │ "dyn_val1.var". │
|
||||
│ │ "dyn_val1.var" if it is defined. │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -16,4 +16,6 @@ var3: example
|
|||
var4: value
|
||||
var5: value
|
||||
var6: value
|
||||
var7: '8080'
|
||||
var8: 'true'
|
||||
```
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
```yaml
|
||||
---
|
||||
condition: false
|
||||
var1: example
|
||||
var3: example
|
||||
var4: example
|
||||
```
|
||||
|
|
|
|||
|
|
@ -36,5 +36,17 @@ The fifth variable. +
|
|||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
The sixth variable. +
|
||||
**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,6 +184,66 @@
|
|||
"descriptions": [
|
||||
"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,4 +8,6 @@
|
|||
| **rougail.var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The forth variable.<br/>**Default**: value |
|
||||
| **rougail.var5**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Default**: value |
|
||||
| **rougail.var6**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.<br/>**Default**: value |
|
||||
| **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,4 +23,10 @@
|
|||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mrougail.var6[0m │ The sixth variable. │
|
||||
│ [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** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
My_calculated_variable. +
|
||||
**Default**: the value of the variable "rougail.my_variable".
|
||||
**Default**: the value of the variable "rougail.my_variable" if it is defined.
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@
|
|||
"default": {
|
||||
"name": "Default",
|
||||
"values": [
|
||||
"the value of the variable \"rougail.my_variable\"."
|
||||
"the value of the variable \"rougail.my_variable\" if it is defined."
|
||||
]
|
||||
},
|
||||
"properties": [
|
||||
|
|
|
|||
|
|
@ -3,5 +3,5 @@
|
|||
| 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_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". |
|
||||
| **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. |
|
||||
|
||||
|
|
|
|||
|
|
@ -11,5 +11,6 @@
|
|||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [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;7munique [0m [1;7m multiple [0m │ "rougail.my_variable". │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ "rougail.my_variable" if it is │
|
||||
│ │ defined. │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -14,6 +14,6 @@ My_variable. +
|
|||
**rougail.my_calculated_variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
My_calculated_variable. +
|
||||
**Default**: the value of the variable "rougail.my_variable".
|
||||
**Default**: the value of the variable "rougail.my_variable" if it is defined.
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@
|
|||
"default": {
|
||||
"name": "Default",
|
||||
"values": [
|
||||
"the value of the variable \"rougail.my_variable\"."
|
||||
"the value of the variable \"rougail.my_variable\" if it is defined."
|
||||
]
|
||||
},
|
||||
"properties": [
|
||||
|
|
|
|||
|
|
@ -3,5 +3,5 @@
|
|||
| 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_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". |
|
||||
| **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. |
|
||||
|
||||
|
|
|
|||
|
|
@ -11,5 +11,6 @@
|
|||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [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;7munique [0m [1;7m multiple [0m │ "rougail.my_variable". │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ "rougail.my_variable" if it is │
|
||||
│ │ defined. │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -14,6 +14,6 @@ My_variable. +
|
|||
**rougail.my_calculated_variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
My_calculated_variable. +
|
||||
**Default**: the value of the variable "rougail.my_variable".
|
||||
**Default**: the value of the variable "rougail.my_variable" if it is defined.
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@
|
|||
"default": {
|
||||
"name": "Default",
|
||||
"values": [
|
||||
"the value of the variable \"rougail.my_variable\"."
|
||||
"the value of the variable \"rougail.my_variable\" if it is defined."
|
||||
]
|
||||
},
|
||||
"properties": [
|
||||
|
|
|
|||
|
|
@ -3,5 +3,5 @@
|
|||
| 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_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". |
|
||||
| **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. |
|
||||
|
||||
|
|
|
|||
|
|
@ -11,5 +11,6 @@
|
|||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [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;7munique [0m [1;7m multiple [0m │ "rougail.my_variable". │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ "rougail.my_variable" if it is │
|
||||
│ │ defined. │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -17,6 +17,6 @@ My_variable. +
|
|||
**rougail.my_calculated_variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
My_calculated_variable. +
|
||||
**Default**: the value of the variable "rougail.my_variable".
|
||||
**Default**: the value of the variable "rougail.my_variable" if it is defined.
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@
|
|||
"type": "variable",
|
||||
"default": {
|
||||
"name": "Default",
|
||||
"values": "the value of the variable \"rougail.my_variable\"."
|
||||
"values": "the value of the variable \"rougail.my_variable\" if it is defined."
|
||||
},
|
||||
"properties": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,5 +3,5 @@
|
|||
| 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_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". |
|
||||
| **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. |
|
||||
|
||||
|
|
|
|||
|
|
@ -13,5 +13,6 @@
|
|||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [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;7munique [0m [1;7m multiple [0m │ "rougail.my_variable". │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ "rougail.my_variable" if it is │
|
||||
│ │ defined. │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -11,15 +11,21 @@ A condition. +
|
|||
**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** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` |
|
||||
A second variable. +
|
||||
**Hidden**: when the variable "rougail.condition" has the value "true".
|
||||
**Hidden**: when the variable "rougail.condition" is defined and has the value "true".
|
||||
|
|
||||
|
||||
**rougail.var4** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `__hidden__` |
|
||||
A forth variable. +
|
||||
**Hidden**: when the variable "rougail.condition" has the value "true".
|
||||
**Hidden**: when the variable "rougail.condition" is defined and has the value "true".
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -47,6 +47,33 @@
|
|||
"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": {
|
||||
"type": "variable",
|
||||
"properties": [
|
||||
|
|
@ -61,7 +88,7 @@
|
|||
{
|
||||
"type": "property",
|
||||
"name": "hidden",
|
||||
"annotation": "when the variable \"rougail.condition\" has the value \"true\"."
|
||||
"annotation": "when the variable \"rougail.condition\" is defined and has the value \"true\"."
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
|
|
@ -88,7 +115,7 @@
|
|||
{
|
||||
"type": "property",
|
||||
"name": "hidden",
|
||||
"annotation": "when the variable \"rougail.condition\" has the value \"true\"."
|
||||
"annotation": "when the variable \"rougail.condition\" is defined and has the value \"true\"."
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.condition**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A condition.<br/>**Default**: false |
|
||||
| **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.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.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" 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" is defined and has the value "true". |
|
||||
|
||||
|
|
|
|||
|
|
@ -9,13 +9,18 @@
|
|||
│ [1mrougail.condition[0m │ A condition. │
|
||||
│ [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. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;3;7m hidden [0m │ [1mHidden[0m: when the variable │
|
||||
│ │ "rougail.condition" has the value │
|
||||
│ │ "true". │
|
||||
│ │ "rougail.condition" is defined and │
|
||||
│ │ has the value "true". │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mrougail.var4[0m │ A forth variable. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;3;7m hidden [0m │ [1mHidden[0m: when the variable │
|
||||
│ │ "rougail.condition" has the value │
|
||||
│ │ "true". │
|
||||
│ │ "rougail.condition" is defined and │
|
||||
│ │ has the value "true". │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -41,6 +41,6 @@ A dynamic variable.
|
|||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A variable calculated. +
|
||||
**Default**: the value of the variable "rougail.dynval1.var".
|
||||
**Default**: the value of the variable "rougail.dynval1.var" if it is defined.
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -111,7 +111,7 @@
|
|||
"type": "variable",
|
||||
"default": {
|
||||
"name": "Default",
|
||||
"values": "the value of the variable \"rougail.dynval1.var\"."
|
||||
"values": "the value of the variable \"rougail.dynval1.var\" if it is defined."
|
||||
},
|
||||
"properties": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -18,5 +18,5 @@ This family builds families dynamically.
|
|||
|
||||
| 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". |
|
||||
| **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. |
|
||||
|
||||
|
|
|
|||
|
|
@ -37,5 +37,6 @@ This family builds families dynamically.
|
|||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [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 │
|
||||
│ │ "rougail.dynval1.var". │
|
||||
│ │ "rougail.dynval1.var" if it is │
|
||||
│ │ defined. │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -37,6 +37,6 @@ A dynamic variable.
|
|||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A variable calculated. +
|
||||
**Default**: the value of the variable "rougail.dynval1.var".
|
||||
**Default**: the value of the variable "rougail.dynval1.var" if it is defined.
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -104,7 +104,7 @@
|
|||
"type": "variable",
|
||||
"default": {
|
||||
"name": "Default",
|
||||
"values": "the value of the variable \"rougail.dynval1.var\"."
|
||||
"values": "the value of the variable \"rougail.dynval1.var\" if it is defined."
|
||||
},
|
||||
"properties": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -18,5 +18,5 @@ This family builds families dynamically.
|
|||
|
||||
| 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". |
|
||||
| **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. |
|
||||
|
||||
|
|
|
|||
|
|
@ -35,5 +35,6 @@ This family builds families dynamically.
|
|||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [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 │
|
||||
│ │ "rougail.dynval1.var". │
|
||||
│ │ "rougail.dynval1.var" if it is │
|
||||
│ │ defined. │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A variable calculated. +
|
||||
**Default**: the value of the variable "rougail.dynval1.var".
|
||||
**Default**: the value of the variable "rougail.dynval1.var" if it is defined.
|
||||
|
|
||||
|
||||
**rougail.var1** +
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
"type": "variable",
|
||||
"default": {
|
||||
"name": "Default",
|
||||
"values": "the value of the variable \"rougail.dynval1.var\"."
|
||||
"values": "the value of the variable \"rougail.dynval1.var\" if it is defined."
|
||||
},
|
||||
"properties": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
| 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". |
|
||||
| **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.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*
|
||||
|
|
|
|||
|
|
@ -8,7 +8,8 @@
|
|||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [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 │
|
||||
│ │ "rougail.dynval1.var". │
|
||||
│ │ "rougail.dynval1.var" if it is │
|
||||
│ │ defined. │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mrougail.var1[0m │ A suffix variable. │
|
||||
│ [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** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A variable calculated. +
|
||||
**Default**: the value of the variable "rougail.dynval1.var".
|
||||
**Default**: the value of the variable "rougail.dynval1.var" if it is defined.
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -111,7 +111,7 @@
|
|||
"type": "variable",
|
||||
"default": {
|
||||
"name": "Default",
|
||||
"values": "the value of the variable \"rougail.dynval1.var\"."
|
||||
"values": "the value of the variable \"rougail.dynval1.var\" if it is defined."
|
||||
},
|
||||
"properties": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -18,5 +18,5 @@ This family builds families dynamically.
|
|||
|
||||
| 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". |
|
||||
| **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. |
|
||||
|
||||
|
|
|
|||
|
|
@ -37,5 +37,6 @@ This family builds families dynamically.
|
|||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [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 │
|
||||
│ │ "rougail.dynval1.var". │
|
||||
│ │ "rougail.dynval1.var" if it is │
|
||||
│ │ defined. │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -54,7 +54,9 @@ A variable inside a sub dynamic family. +
|
|||
A variable. +
|
||||
**Default**:
|
||||
|
||||
* 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"
|
||||
* 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___val2__.var" if it
|
||||
is defined
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -151,8 +151,8 @@
|
|||
"default": {
|
||||
"name": "Default",
|
||||
"values": [
|
||||
"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\""
|
||||
"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_val2.var\" if it is defined"
|
||||
]
|
||||
},
|
||||
"properties": [
|
||||
|
|
|
|||
|
|
@ -26,5 +26,5 @@ This family builds families dynamically.
|
|||
|
||||
| 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"<br/>- the value of the variable "rougail.my_dyn_family_val1.subdyn_*val2*.var" |
|
||||
| **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 |
|
||||
|
||||
|
|
|
|||
|
|
@ -55,6 +55,8 @@ This family builds families dynamically.
|
|||
│ [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 │
|
||||
│ │ "rougail.my_dyn_family_val1.subdyn_[3m…[0m │
|
||||
│ │ if it is defined │
|
||||
│ │ - the value of the variable │
|
||||
│ │ "rougail.my_dyn_family_val1.subdyn_[3m…[0m │
|
||||
│ │ if it is defined │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -42,6 +42,6 @@ A variable inside dynamic family. +
|
|||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
|
||||
A variable. +
|
||||
**Default**: the value of the variable "rougail.dyn_val1.var".
|
||||
**Default**: the value of the variable "rougail.dyn_val1.var" if it is defined.
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -116,7 +116,7 @@
|
|||
"type": "variable",
|
||||
"default": {
|
||||
"name": "Default",
|
||||
"values": "the value of the variable \"rougail.dyn_val1.var\"."
|
||||
"values": "the value of the variable \"rougail.dyn_val1.var\" if it is defined."
|
||||
},
|
||||
"properties": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -18,5 +18,5 @@ This family builds families dynamically.
|
|||
|
||||
| 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". |
|
||||
| **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. |
|
||||
|
||||
|
|
|
|||
|
|
@ -37,5 +37,6 @@ This family builds families dynamically.
|
|||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mrougail.var2[0m │ A variable. │
|
||||
│ [1;7m string [0m [1;7m standard [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ │ "rougail.dyn_val1.var". │
|
||||
│ │ "rougail.dyn_val1.var" if it is │
|
||||
│ │ defined. │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -18,4 +18,6 @@ rougail:
|
|||
var4: value
|
||||
var5: value
|
||||
var6: value
|
||||
var7: '8080'
|
||||
var8: 'true'
|
||||
```
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@
|
|||
---
|
||||
rougail:
|
||||
condition: false
|
||||
var1: example
|
||||
var3: example
|
||||
var4: example
|
||||
```
|
||||
|
|
|
|||
Loading…
Reference in a new issue