fix: better dynamic support
This commit is contained in:
parent
0f96fa0123
commit
aeff3e8b7c
175 changed files with 4264 additions and 540 deletions
|
|
@ -134,10 +134,13 @@ class Annotator(Walk):
|
|||
variable.choices,
|
||||
variable.version,
|
||||
)
|
||||
default = variable.default
|
||||
if default is None and variable.path in self.objectspace.default_multi:
|
||||
default = self.objectspace.default_multi[variable.path]
|
||||
self.calculation_to_information(
|
||||
variable.path,
|
||||
"default",
|
||||
variable.default,
|
||||
default,
|
||||
variable.version,
|
||||
)
|
||||
self.calculation_to_information(
|
||||
|
|
@ -146,7 +149,7 @@ class Annotator(Walk):
|
|||
variable.validators,
|
||||
variable.version,
|
||||
)
|
||||
if variable.path in self.objectspace.leaders and not variable.default:
|
||||
if variable.path in self.objectspace.leaders and not default:
|
||||
self.add_examples_values(variable)
|
||||
self.objectspace.informations.add(
|
||||
variable.path, "dictionaries", variable.xmlfiles
|
||||
|
|
@ -231,14 +234,16 @@ class Annotator(Walk):
|
|||
"value": self._calculation_to_information_jinja(values),
|
||||
}
|
||||
if isinstance(values, (VariableCalculation, VariablePropertyCalculation)):
|
||||
variable_path = self._get_path_from_variable(values, version, path)
|
||||
value = self._calculation_to_information_variable(
|
||||
values, prop, version, path
|
||||
variable_path, values, prop, version, path
|
||||
)
|
||||
if value is None:
|
||||
return
|
||||
return {
|
||||
"type": "variable",
|
||||
"value": value,
|
||||
"ori_path": variable_path,
|
||||
}
|
||||
if isinstance(values, InformationCalculation):
|
||||
return {
|
||||
|
|
@ -272,22 +277,20 @@ class Annotator(Walk):
|
|||
return True
|
||||
|
||||
def _calculation_to_information_variable(
|
||||
self, values, prop: str, version: str, path: str
|
||||
self, variable_path: str, values, prop: str, version: str, path: str
|
||||
) -> str:
|
||||
# is optional
|
||||
if isinstance(values, VariableCalculation) and values.optional:
|
||||
variable = self.objectspace.paths.get_with_dynamic(
|
||||
values.variable,
|
||||
path,
|
||||
values.version,
|
||||
values.namespace,
|
||||
values.xmlfiles,
|
||||
)[0]
|
||||
if not variable:
|
||||
return None
|
||||
variable = self.objectspace.paths.get_with_dynamic(
|
||||
variable_path,
|
||||
path,
|
||||
values.version,
|
||||
values.namespace,
|
||||
values.xmlfiles,
|
||||
)[0]
|
||||
if isinstance(values, VariableCalculation) and values.optional and not variable:
|
||||
return None
|
||||
if variable:
|
||||
variable_path = variable.path
|
||||
else:
|
||||
variable_path = self._get_path_from_variable(values, version, path)
|
||||
if prop in PROPERTY_ATTRIBUTE:
|
||||
# get comparative value
|
||||
if values.when_not is not undefined:
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
from warnings import warn
|
||||
from typing import Optional
|
||||
from itertools import chain
|
||||
from re import compile
|
||||
|
||||
from tiramisu import Calculation, undefined, groups
|
||||
from tiramisu.error import ConfigError, display_list
|
||||
|
|
@ -578,23 +579,39 @@ class RougailOutputDoc(Examples):
|
|||
return None
|
||||
true_msg = _('the value of the variable "{0}"')
|
||||
hidden_msg = _("the value of an undocumented variable")
|
||||
if "{{ identifier }}" in calculation["value"]:
|
||||
informations = self.dynamic_paths[calculation["value"]]
|
||||
# if "{{ identifier }}" in calculation["value"] and calculation["value"] in self.dynamic_paths:
|
||||
if "{{ identifier }}" in calculation["ori_path"]:
|
||||
if calculation["value"] == calculation['ori_path']:
|
||||
regexp = None
|
||||
else:
|
||||
regexp = compile("^" + calculation["ori_path"].replace("{{ identifier }}", "(.*)") + "$")
|
||||
informations = [self.dynamic_paths[calculation["value"]]]
|
||||
values = []
|
||||
all_is_undocumented = None
|
||||
for idx, path in enumerate(informations["paths"]):
|
||||
if self._is_inaccessible_user_data(self.conf.option(path)):
|
||||
msg = true_msg.format(get_display_path(informations, idx))
|
||||
all_is_undocumented = False
|
||||
else:
|
||||
if all_is_undocumented is None:
|
||||
all_is_undocumented = True
|
||||
msg = hidden_msg
|
||||
values.append(msg)
|
||||
for information in informations:
|
||||
for idx, path in enumerate(information["paths"]):
|
||||
if regexp and not regexp.search(path):
|
||||
continue
|
||||
if self._is_inaccessible_user_data(self.conf.option(path)):
|
||||
if all_is_undocumented is None:
|
||||
all_is_undocumented = True
|
||||
msg = hidden_msg
|
||||
else:
|
||||
if regexp:
|
||||
display_path = calculation['ori_path']
|
||||
for identifier in regexp.findall(path):
|
||||
display_path = display_path.replace(
|
||||
"{{ identifier }}", self.formater.italic(identifier), 1
|
||||
)
|
||||
else:
|
||||
display_path = get_display_path(information, idx)
|
||||
msg = true_msg.format(display_path)
|
||||
all_is_undocumented = False
|
||||
values.append(msg)
|
||||
if all_is_undocumented and len(values) > 1:
|
||||
values = _("the values of undocumented variables")
|
||||
else:
|
||||
values = true_msg.format(calculation["value"])
|
||||
values = true_msg.format(calculation["ori_path"])
|
||||
elif calculation["type"] == "identifier":
|
||||
if prop in PROPERTY_ATTRIBUTE:
|
||||
values = calculation["value"]
|
||||
|
|
|
|||
|
|
@ -1,16 +0,0 @@
|
|||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**condition** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` |
|
||||
A condition.
|
||||
|
|
||||
|
||||
**variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` |
|
||||
A variable. +
|
||||
**Disabled**: when the variable "condition" has the value "true".
|
||||
|====
|
||||
|
||||
|
|
@ -1,75 +0,0 @@
|
|||
{
|
||||
"condition": {
|
||||
"type": "variable",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"condition"
|
||||
],
|
||||
"names": [
|
||||
"condition"
|
||||
],
|
||||
"descriptions": [
|
||||
"A condition."
|
||||
]
|
||||
},
|
||||
"variable": {
|
||||
"type": "variable",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "disabled",
|
||||
"annotation": "when the variable \"condition\" has the value \"true\"."
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"variable"
|
||||
],
|
||||
"names": [
|
||||
"variable"
|
||||
],
|
||||
"descriptions": [
|
||||
"A variable."
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**condition** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A condition. +
|
||||
**Default**:
|
||||
|
||||
* val1
|
||||
* val2
|
||||
|
|
||||
|
||||
**variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` |
|
||||
A variable. +
|
||||
**Disabled**: when the variable "condition" has the value "true".
|
||||
|====
|
||||
|
||||
|
|
@ -1,79 +0,0 @@
|
|||
{
|
||||
"condition": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"val1",
|
||||
"val2"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"condition"
|
||||
],
|
||||
"names": [
|
||||
"condition"
|
||||
],
|
||||
"descriptions": [
|
||||
"A condition."
|
||||
]
|
||||
},
|
||||
"variable": {
|
||||
"type": "variable",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "disabled",
|
||||
"annotation": "when the variable \"condition\" has the value \"true\"."
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"variable"
|
||||
],
|
||||
"names": [
|
||||
"variable"
|
||||
],
|
||||
"descriptions": [
|
||||
"A variable."
|
||||
]
|
||||
}
|
||||
}
|
||||
26
tests/results/test/40_0leadership_leader_follower.adoc
Normal file
26
tests/results/test/40_0leadership_leader_follower.adoc
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
== a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**leadership.leader** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A leader. +
|
||||
**Default**:
|
||||
|
||||
* value1
|
||||
* value2
|
||||
|
|
||||
|
||||
**leadership.follower** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A follower. +
|
||||
**Default**: the value of the variable "leadership.leader".
|
||||
|====
|
||||
|
||||
|
|
@ -1,24 +1,31 @@
|
|||
{
|
||||
"rougail": {
|
||||
"type": "namespace",
|
||||
"leadership": {
|
||||
"type": "leadership",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail"
|
||||
"leadership"
|
||||
],
|
||||
"names": [
|
||||
"rougail"
|
||||
"leadership"
|
||||
],
|
||||
"description": "Rougail",
|
||||
"description": "a leadership",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
"name": "standard"
|
||||
}
|
||||
],
|
||||
"help": [
|
||||
"This family contains lists of variable blocks."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"rougail.condition": {
|
||||
"leadership.leader": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"value1",
|
||||
"value2"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
|
|
@ -26,7 +33,7 @@
|
|||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
|
|
@ -42,17 +49,18 @@
|
|||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.condition"
|
||||
"leadership.leader"
|
||||
],
|
||||
"names": [
|
||||
"condition"
|
||||
"leader"
|
||||
],
|
||||
"descriptions": [
|
||||
"A condition."
|
||||
"A leader."
|
||||
]
|
||||
},
|
||||
"rougail.variable": {
|
||||
"leadership.follower": {
|
||||
"type": "variable",
|
||||
"default": "the value of the variable \"leadership.leader\".",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
|
|
@ -60,34 +68,21 @@
|
|||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "disabled",
|
||||
"annotation": "when the variable \"rougail.condition\" has the value \"true\"."
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.variable"
|
||||
"leadership.follower"
|
||||
],
|
||||
"names": [
|
||||
"variable"
|
||||
"follower"
|
||||
],
|
||||
"descriptions": [
|
||||
"A variable."
|
||||
"A follower."
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -1,7 +1,11 @@
|
|||
# Variables for "Rougail"
|
||||
# a leadership
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A condition.<br/>**Default**: <br/>- val1<br/>- val2 |
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* `unique` `multiple` | A variable.<br/>**Disabled**: when the variable "rougail.condition" has the value "true". |
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **leadership.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||
| **leadership.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: the value of the variable "leadership.leader". |
|
||||
|
||||
|
|
@ -1,12 +1,23 @@
|
|||
|
||||
|
||||
[1;4;96ma leadership[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mcondition[0m │ A condition. │
|
||||
│ [1mleadership.leader[0m │ A leader. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - val1 │
|
||||
│ │ - val2 │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - value1 │
|
||||
│ │ - value2 │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mvariable[0m │ A variable. │
|
||||
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;3;7m [0m │ [1mDisabled[0m: when the variable │
|
||||
│ [1;3;7mdisabled [0m [1;7m unique [0m [1;7m multiple [0m │ "condition" has the value "true". │
|
||||
│ [1mleadership.follower[0m │ A follower. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ │ "leadership.leader". │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
== a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**leadership.leader** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A leader. +
|
||||
**Default**:
|
||||
|
||||
* value1
|
||||
* value2
|
||||
|
|
||||
|
||||
**leadership.follower** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` |
|
||||
A follower. +
|
||||
**Default**: the value of the variable "leadership.leader".
|
||||
|====
|
||||
|
||||
|
|
@ -1,27 +1,30 @@
|
|||
{
|
||||
"rougail": {
|
||||
"type": "namespace",
|
||||
"leadership": {
|
||||
"type": "leadership",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail"
|
||||
"leadership"
|
||||
],
|
||||
"names": [
|
||||
"rougail"
|
||||
"leadership"
|
||||
],
|
||||
"description": "Rougail",
|
||||
"description": "a leadership",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
"name": "standard"
|
||||
}
|
||||
],
|
||||
"help": [
|
||||
"This family contains lists of variable blocks."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"rougail.condition": {
|
||||
"leadership.leader": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"val1",
|
||||
"val2"
|
||||
"value1",
|
||||
"value2"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
|
|
@ -46,17 +49,20 @@
|
|||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.condition"
|
||||
"leadership.leader"
|
||||
],
|
||||
"names": [
|
||||
"condition"
|
||||
"leader"
|
||||
],
|
||||
"descriptions": [
|
||||
"A condition."
|
||||
"A leader."
|
||||
]
|
||||
},
|
||||
"rougail.variable": {
|
||||
"leadership.follower": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"the value of the variable \"leadership.leader\"."
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
|
|
@ -64,34 +70,25 @@
|
|||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "disabled",
|
||||
"annotation": "when the variable \"rougail.condition\" has the value \"true\"."
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.variable"
|
||||
"leadership.follower"
|
||||
],
|
||||
"names": [
|
||||
"variable"
|
||||
"follower"
|
||||
],
|
||||
"descriptions": [
|
||||
"A variable."
|
||||
"A follower."
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,11 @@
|
|||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A condition.<br/>**Default**: <br/>- val1<br/>- val2 |
|
||||
| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* `unique` `multiple` | A variable.<br/>**Disabled**: when the variable "condition" has the value "true". |
|
||||
# a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **leadership.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||
| **leadership.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A follower.<br/>**Default**: the value of the variable "leadership.leader". |
|
||||
|
||||
|
|
@ -1,11 +1,23 @@
|
|||
|
||||
|
||||
[1;4;96ma leadership[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mcondition[0m │ A condition. │
|
||||
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m unique [0m │ │
|
||||
│ [1;7mmultiple [0m │ │
|
||||
│ [1mleadership.leader[0m │ A leader. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - value1 │
|
||||
│ │ - value2 │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mvariable[0m │ A variable. │
|
||||
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;3;7m [0m │ [1mDisabled[0m: when the variable │
|
||||
│ [1;3;7mdisabled [0m [1;7m unique [0m [1;7m multiple [0m │ "condition" has the value "true". │
|
||||
│ [1mleadership.follower[0m │ A follower. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ [1;7mmultiple [0m │ "leadership.leader". │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
== leader
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**leader.leader** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
Leader. +
|
||||
**Default**:
|
||||
|
||||
* a
|
||||
* b
|
||||
|
|
||||
|
||||
**leader.follower** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
|
||||
Follower.
|
||||
|====
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` |
|
||||
Variable. +
|
||||
**Default**: the value of the variable "leader.follower".
|
||||
|====
|
||||
|
||||
|
|
@ -0,0 +1,106 @@
|
|||
{
|
||||
"leader": {
|
||||
"type": "leadership",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
}
|
||||
],
|
||||
"help": [
|
||||
"This family contains lists of variable blocks."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"leader.leader": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"a",
|
||||
"b"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"leader.leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
]
|
||||
},
|
||||
"leader.follower": {
|
||||
"type": "variable",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"leader.follower"
|
||||
],
|
||||
"names": [
|
||||
"follower"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"variable": {
|
||||
"type": "variable",
|
||||
"default": "the value of the variable \"leader.follower\".",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"variable"
|
||||
],
|
||||
"names": [
|
||||
"variable"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
# leader
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Leader.<br/>**Default**: <br/>- a<br/>- b |
|
||||
| **leader.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | Follower. |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | Variable.<br/>**Default**: the value of the variable "leader.follower". |
|
||||
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
|
||||
|
||||
[1;4;96mleader[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mleader.leader[0m │ Leader. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - a │
|
||||
│ │ - b │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mleader.follower[0m │ Follower. │
|
||||
│ [1;7m string [0m [1;7m standard [0m │ │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mvariable[0m │ Variable. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m unique [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ [1;7mmultiple [0m │ "leader.follower". │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
43
tests/results/test/40_9leadership-calculation-variable.adoc
Normal file
43
tests/results/test/40_9leadership-calculation-variable.adoc
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**calculate** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A calculated variable. +
|
||||
**Default**:
|
||||
|
||||
* value1
|
||||
* value2
|
||||
|====
|
||||
|
||||
== a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**leader.leader** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A leader. +
|
||||
**Default**: the value of the variable "calculate".
|
||||
|
|
||||
|
||||
**leader.follower1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A follower. +
|
||||
**Default**: val11
|
||||
|
|
||||
|
||||
**leader.follower2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
An other follower. +
|
||||
**Default**: val21
|
||||
|====
|
||||
|
||||
152
tests/results/test/40_9leadership-calculation-variable.json
Normal file
152
tests/results/test/40_9leadership-calculation-variable.json
Normal file
|
|
@ -0,0 +1,152 @@
|
|||
{
|
||||
"calculate": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"value1",
|
||||
"value2"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"calculate"
|
||||
],
|
||||
"names": [
|
||||
"calculate"
|
||||
],
|
||||
"descriptions": [
|
||||
"A calculated variable."
|
||||
]
|
||||
},
|
||||
"leader": {
|
||||
"type": "leadership",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
],
|
||||
"description": "a leadership",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
}
|
||||
],
|
||||
"help": [
|
||||
"This family contains lists of variable blocks."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"leader.leader": {
|
||||
"type": "variable",
|
||||
"default": "the value of the variable \"calculate\".",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"leader.leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
],
|
||||
"descriptions": [
|
||||
"A leader."
|
||||
]
|
||||
},
|
||||
"leader.follower1": {
|
||||
"type": "variable",
|
||||
"default": "val11",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"leader.follower1"
|
||||
],
|
||||
"names": [
|
||||
"follower1"
|
||||
],
|
||||
"descriptions": [
|
||||
"A follower."
|
||||
]
|
||||
},
|
||||
"leader.follower2": {
|
||||
"type": "variable",
|
||||
"default": "val21",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"leader.follower2"
|
||||
],
|
||||
"names": [
|
||||
"follower2"
|
||||
],
|
||||
"descriptions": [
|
||||
"An other follower."
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
16
tests/results/test/40_9leadership-calculation-variable.md
Normal file
16
tests/results/test/40_9leadership-calculation-variable.md
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **calculate**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A calculated variable.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||
|
||||
# a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: the value of the variable "calculate". |
|
||||
| **leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val11 |
|
||||
| **leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.<br/>**Default**: val21 |
|
||||
|
||||
32
tests/results/test/40_9leadership-calculation-variable.sh
Normal file
32
tests/results/test/40_9leadership-calculation-variable.sh
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mcalculate[0m │ A calculated variable. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - value1 │
|
||||
│ │ - value2 │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
||||
|
||||
[1;4;96ma leadership[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mleader.leader[0m │ A leader. │
|
||||
│ [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 │ "calculate". │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mleader.follower1[0m │ A follower. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: val11 │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mleader.follower2[0m │ An other follower. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: val21 │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
== a leadership
|
||||
|
||||
`basic`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**leadership_1.leader** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A leader. +
|
||||
**Default**:
|
||||
|
||||
* value1
|
||||
* value2
|
||||
|
|
||||
|
||||
**leadership_1.follower** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
A follower.
|
||||
|====
|
||||
|
||||
== a second leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**leadership_2.leader** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A leader. +
|
||||
**Default**: the value of the variable "leadership_1.follower".
|
||||
|
|
||||
|
||||
**leadership_2.follower** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A follower. +
|
||||
**Default**: val
|
||||
|====
|
||||
|
||||
|
|
@ -0,0 +1,174 @@
|
|||
{
|
||||
"leadership_1": {
|
||||
"type": "leadership",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"leadership_1"
|
||||
],
|
||||
"names": [
|
||||
"leadership_1"
|
||||
],
|
||||
"description": "a leadership",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
}
|
||||
],
|
||||
"help": [
|
||||
"This family contains lists of variable blocks."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"leadership_1.leader": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"value1",
|
||||
"value2"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"leadership_1.leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
],
|
||||
"descriptions": [
|
||||
"A leader."
|
||||
]
|
||||
},
|
||||
"leadership_1.follower": {
|
||||
"type": "variable",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"leadership_1.follower"
|
||||
],
|
||||
"names": [
|
||||
"follower"
|
||||
],
|
||||
"descriptions": [
|
||||
"A follower."
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"leadership_2": {
|
||||
"type": "leadership",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"leadership_2"
|
||||
],
|
||||
"names": [
|
||||
"leadership_2"
|
||||
],
|
||||
"description": "a second leadership",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
}
|
||||
],
|
||||
"help": [
|
||||
"This family contains lists of variable blocks."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"leadership_2.leader": {
|
||||
"type": "variable",
|
||||
"default": "the value of the variable \"leadership_1.follower\".",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"leadership_2.leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
],
|
||||
"descriptions": [
|
||||
"A leader."
|
||||
]
|
||||
},
|
||||
"leadership_2.follower": {
|
||||
"type": "variable",
|
||||
"default": "val",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"leadership_2.follower"
|
||||
],
|
||||
"names": [
|
||||
"follower"
|
||||
],
|
||||
"descriptions": [
|
||||
"A follower."
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
# a leadership
|
||||
|
||||
`basic`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **leadership_1.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||
| **leadership_1.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
||||
|
||||
# a second leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **leadership_2.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: the value of the variable "leadership_1.follower". |
|
||||
| **leadership_2.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val |
|
||||
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
|
||||
|
||||
[1;4;96ma leadership[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mleadership_1.leader[0m │ A leader. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - value1 │
|
||||
│ │ - value2 │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mleadership_1.follower[0m │ A follower. │
|
||||
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m │ │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
||||
|
||||
[1;4;96ma second leadership[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mleadership_2.leader[0m │ A leader. │
|
||||
│ [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 │ "leadership_1.follower". │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mleadership_2.follower[0m │ A follower. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: val │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
== a leadership
|
||||
|
||||
`basic`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**leadership_1.leader** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A leader. +
|
||||
**Default**:
|
||||
|
||||
* value1
|
||||
* value2
|
||||
|
|
||||
|
||||
**leadership_1.follower** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
A follower.
|
||||
|====
|
||||
|
||||
== a second leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**leadership_2.leader** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A leader. +
|
||||
**Default**:
|
||||
|
||||
* value1
|
||||
* value2
|
||||
|
|
||||
|
||||
**leadership_2.follower** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` |
|
||||
A follower. +
|
||||
**Default**: the value of the variable "leadership_1.leader".
|
||||
|====
|
||||
|
||||
|
|
@ -0,0 +1,181 @@
|
|||
{
|
||||
"leadership_1": {
|
||||
"type": "leadership",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"leadership_1"
|
||||
],
|
||||
"names": [
|
||||
"leadership_1"
|
||||
],
|
||||
"description": "a leadership",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
}
|
||||
],
|
||||
"help": [
|
||||
"This family contains lists of variable blocks."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"leadership_1.leader": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"value1",
|
||||
"value2"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"leadership_1.leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
],
|
||||
"descriptions": [
|
||||
"A leader."
|
||||
]
|
||||
},
|
||||
"leadership_1.follower": {
|
||||
"type": "variable",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"leadership_1.follower"
|
||||
],
|
||||
"names": [
|
||||
"follower"
|
||||
],
|
||||
"descriptions": [
|
||||
"A follower."
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"leadership_2": {
|
||||
"type": "leadership",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"leadership_2"
|
||||
],
|
||||
"names": [
|
||||
"leadership_2"
|
||||
],
|
||||
"description": "a second leadership",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
}
|
||||
],
|
||||
"help": [
|
||||
"This family contains lists of variable blocks."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"leadership_2.leader": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"value1",
|
||||
"value2"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"leadership_2.leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
],
|
||||
"descriptions": [
|
||||
"A leader."
|
||||
]
|
||||
},
|
||||
"leadership_2.follower": {
|
||||
"type": "variable",
|
||||
"default": "the value of the variable \"leadership_1.leader\".",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"leadership_2.follower"
|
||||
],
|
||||
"names": [
|
||||
"follower"
|
||||
],
|
||||
"descriptions": [
|
||||
"A follower."
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
# a leadership
|
||||
|
||||
`basic`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **leadership_1.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||
| **leadership_1.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
||||
|
||||
# a second leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **leadership_2.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||
| **leadership_2.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A follower.<br/>**Default**: the value of the variable "leadership_1.leader". |
|
||||
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
|
||||
|
||||
[1;4;96ma leadership[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mleadership_1.leader[0m │ A leader. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - value1 │
|
||||
│ │ - value2 │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mleadership_1.follower[0m │ A follower. │
|
||||
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m │ │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
||||
|
||||
[1;4;96ma second leadership[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mleadership_2.leader[0m │ A leader. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - value1 │
|
||||
│ │ - value2 │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mleadership_2.follower[0m │ A follower. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ [1;7mmultiple [0m │ "leadership_1.leader". │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
33
tests/results/test/60_0family_dynamic_upper_char.adoc
Normal file
33
tests/results/test/60_0family_dynamic_upper_char.adoc
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**var** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A suffix variable. +
|
||||
**Default**:
|
||||
|
||||
* Val1
|
||||
* VAL2
|
||||
|====
|
||||
|
||||
== A dynamic family
|
||||
|
||||
`basic`
|
||||
|
||||
This family builds families dynamically.
|
||||
|
||||
**Identifiers**: the value of the variable "var".
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**dyn__Val1__.var** +
|
||||
**dyn__VAL2__.var** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
A dynamic variable.
|
||||
|====
|
||||
|
||||
94
tests/results/test/60_0family_dynamic_upper_char.json
Normal file
94
tests/results/test/60_0family_dynamic_upper_char.json
Normal file
|
|
@ -0,0 +1,94 @@
|
|||
{
|
||||
"var": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"Val1",
|
||||
"VAL2"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"var"
|
||||
],
|
||||
"names": [
|
||||
"var"
|
||||
],
|
||||
"descriptions": [
|
||||
"A suffix variable."
|
||||
]
|
||||
},
|
||||
"dyn{{ identifier }}": {
|
||||
"type": "dynamic",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"dynVal1",
|
||||
"dynVAL2"
|
||||
],
|
||||
"names": [
|
||||
"dynval1",
|
||||
"dynval2"
|
||||
],
|
||||
"description": "A dynamic family",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
}
|
||||
],
|
||||
"identifiers": "the value of the variable \"var\".",
|
||||
"help": [
|
||||
"This family builds families dynamically."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"dyn{{ identifier }}.var": {
|
||||
"paths": [
|
||||
"dynVal1.var",
|
||||
"dynVAL2.var"
|
||||
],
|
||||
"names": [
|
||||
"var",
|
||||
"var"
|
||||
],
|
||||
"type": "variable",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
}
|
||||
],
|
||||
"descriptions": [
|
||||
"A dynamic variable."
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
16
tests/results/test/60_0family_dynamic_upper_char.md
Normal file
16
tests/results/test/60_0family_dynamic_upper_char.md
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- Val1<br/>- VAL2 |
|
||||
|
||||
# A dynamic family
|
||||
|
||||
`basic`
|
||||
|
||||
This family builds families dynamically.
|
||||
|
||||
**Identifiers**: the value of the variable "var".
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **dyn*Val1*.var**<br/>**dyn*VAL2*.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
|
||||
|
||||
29
tests/results/test/60_0family_dynamic_upper_char.sh
Normal file
29
tests/results/test/60_0family_dynamic_upper_char.sh
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mvar[0m │ A suffix variable. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - Val1 │
|
||||
│ │ - VAL2 │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
||||
|
||||
[1;4;96mA dynamic family[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
This family builds families dynamically.
|
||||
|
||||
|
||||
[1mIdentifiers[0m: the value of the variable [32m"var"[0m.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mdyn[0m[1;3mVal1[0m[1m.var[0m │ A dynamic variable. │
|
||||
│ [1mdyn[0m[1;3mVAL2[0m[1m.var[0m │ │
|
||||
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m │ │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
@ -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 values of undocumented variables.
|
||||
**Default**: the value of the variable "dynval1.var".
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@
|
|||
},
|
||||
"var2": {
|
||||
"type": "variable",
|
||||
"default": "the values of undocumented variables.",
|
||||
"default": "the value of the variable \"dynval1.var\".",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
|
|
|
|||
|
|
@ -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 values of undocumented variables. |
|
||||
| **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". |
|
||||
|
||||
|
|
|
|||
|
|
@ -31,6 +31,6 @@ This family builds families dynamically.
|
|||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mvar2[0m │ A variable calculated. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the values of undocumented │
|
||||
│ │ variables. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ │ "dynval1.var". │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -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 values of undocumented variables.
|
||||
**Default**: the value of the variable "dyn_val1.var".
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@
|
|||
},
|
||||
"var2": {
|
||||
"type": "variable",
|
||||
"default": "the values of undocumented variables.",
|
||||
"default": "the value of the variable \"dyn_val1.var\".",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
|
|
|
|||
|
|
@ -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 values of undocumented variables. |
|
||||
| **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". |
|
||||
|
||||
|
|
|
|||
|
|
@ -31,6 +31,6 @@ This family builds families dynamically.
|
|||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mvar2[0m │ A variable. │
|
||||
│ [1;7m string [0m [1;7m standard [0m │ [1mDefault[0m: the values of undocumented │
|
||||
│ │ variables. │
|
||||
│ [1;7m string [0m [1;7m standard [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ │ "dyn_val1.var". │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -1,17 +0,0 @@
|
|||
# Example with mandatory variables not filled in
|
||||
|
||||
```yaml
|
||||
---
|
||||
variable:
|
||||
- example
|
||||
```
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
condition:
|
||||
- val1
|
||||
- val2
|
||||
variable:
|
||||
- example
|
||||
```
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
leadership:
|
||||
- leader: value1
|
||||
follower: value1
|
||||
- leader: value2
|
||||
follower: value2
|
||||
```
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
leadership:
|
||||
- leader: value1
|
||||
follower:
|
||||
- value1
|
||||
- leader: value2
|
||||
follower:
|
||||
- value2
|
||||
```
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
leader:
|
||||
- leader: a
|
||||
follower: example
|
||||
- leader: b
|
||||
follower: example
|
||||
variable:
|
||||
-
|
||||
-
|
||||
```
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
calculate:
|
||||
- value1
|
||||
- value2
|
||||
leader:
|
||||
- leader: value1
|
||||
follower1: val11
|
||||
follower2: val21
|
||||
- leader: value2
|
||||
follower1: val11
|
||||
follower2: val21
|
||||
```
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
leadership_1:
|
||||
- leader: value1
|
||||
follower: example
|
||||
- leader: value2
|
||||
follower: example
|
||||
leadership_2:
|
||||
- leader:
|
||||
follower: val
|
||||
- leader:
|
||||
follower: val
|
||||
```
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
leadership_1:
|
||||
- leader: value1
|
||||
follower: example
|
||||
- leader: value2
|
||||
follower: example
|
||||
leadership_2:
|
||||
- leader: value1
|
||||
follower:
|
||||
- value1
|
||||
- value2
|
||||
- leader: value2
|
||||
follower:
|
||||
- value1
|
||||
- value2
|
||||
```
|
||||
|
|
@ -2,17 +2,20 @@
|
|||
|
||||
```yaml
|
||||
---
|
||||
condition:
|
||||
- example
|
||||
variable:
|
||||
- example
|
||||
dynval1:
|
||||
var: example
|
||||
dynval2:
|
||||
var: example
|
||||
```
|
||||
# Example with all variables modifiable
|
||||
|
||||
```yaml
|
||||
---
|
||||
condition:
|
||||
- example
|
||||
variable:
|
||||
- example
|
||||
var:
|
||||
- Val1
|
||||
- VAL2
|
||||
dynval1:
|
||||
var: example
|
||||
dynval2:
|
||||
var: example
|
||||
```
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
== Variables for "Rougail"
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**rougail.condition** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` |
|
||||
A condition.
|
||||
|
|
||||
|
||||
**rougail.variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` |
|
||||
A variable. +
|
||||
**Disabled**: when the variable "rougail.condition" has the value "true".
|
||||
|====
|
||||
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
== Variables for "Rougail"
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**rougail.condition** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A condition. +
|
||||
**Default**:
|
||||
|
||||
* val1
|
||||
* val2
|
||||
|
|
||||
|
||||
**rougail.variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `__disabled__` `unique` `multiple` |
|
||||
A variable. +
|
||||
**Disabled**: when the variable "rougail.condition" has the value "true".
|
||||
|====
|
||||
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
== Variables for "Rougail"
|
||||
|
||||
=== a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**rougail.leadership.leader** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A leader. +
|
||||
**Default**:
|
||||
|
||||
* value1
|
||||
* value2
|
||||
|
|
||||
|
||||
**rougail.leadership.follower** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A follower. +
|
||||
**Default**: the value of the variable "rougail.leadership.leader".
|
||||
|====
|
||||
|
||||
110
tests/results/test_namespace/40_0leadership_leader_follower.json
Normal file
110
tests/results/test_namespace/40_0leadership_leader_follower.json
Normal file
|
|
@ -0,0 +1,110 @@
|
|||
{
|
||||
"rougail": {
|
||||
"type": "namespace",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail"
|
||||
],
|
||||
"names": [
|
||||
"rougail"
|
||||
],
|
||||
"description": "Rougail",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
}
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"leadership": {
|
||||
"type": "leadership",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail.leadership"
|
||||
],
|
||||
"names": [
|
||||
"leadership"
|
||||
],
|
||||
"description": "a leadership",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
}
|
||||
],
|
||||
"help": [
|
||||
"This family contains lists of variable blocks."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"rougail.leadership.leader": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"value1",
|
||||
"value2"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.leadership.leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
],
|
||||
"descriptions": [
|
||||
"A leader."
|
||||
]
|
||||
},
|
||||
"rougail.leadership.follower": {
|
||||
"type": "variable",
|
||||
"default": "the value of the variable \"rougail.leadership.leader\".",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.leadership.follower"
|
||||
],
|
||||
"names": [
|
||||
"follower"
|
||||
],
|
||||
"descriptions": [
|
||||
"A follower."
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,7 +1,13 @@
|
|||
# Variables for "Rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A condition. |
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* `unique` `multiple` | A variable.<br/>**Disabled**: when the variable "rougail.condition" has the value "true". |
|
||||
## a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.leadership.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||
| **rougail.leadership.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: the value of the variable "rougail.leadership.leader". |
|
||||
|
||||
|
|
@ -3,16 +3,26 @@
|
|||
[1;4;96mVariables for [0m[1;4;96m"Rougail"[0m
|
||||
|
||||
|
||||
|
||||
|
||||
[1;4;92ma leadership[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mrougail.condition[0m │ A condition. │
|
||||
│ [1mrougail.leadership.leader[0m │ A leader. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - val1 │
|
||||
│ │ - val2 │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - value1 │
|
||||
│ │ - value2 │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mrougail.variable[0m │ A variable. │
|
||||
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;3;7m [0m │ [1mDisabled[0m: when the variable │
|
||||
│ [1;3;7mdisabled [0m [1;7m unique [0m [1;7m multiple [0m │ "rougail.condition" has the value │
|
||||
│ │ "true". │
|
||||
│ [1mrougail.leadership.follower[0m │ A follower. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ │ "rougail.leadership.leader". │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
== Variables for "Rougail"
|
||||
|
||||
=== a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**rougail.leadership.leader** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A leader. +
|
||||
**Default**:
|
||||
|
||||
* value1
|
||||
* value2
|
||||
|
|
||||
|
||||
**rougail.leadership.follower** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` |
|
||||
A follower. +
|
||||
**Default**: the value of the variable "rougail.leadership.leader".
|
||||
|====
|
||||
|
||||
|
|
@ -0,0 +1,116 @@
|
|||
{
|
||||
"rougail": {
|
||||
"type": "namespace",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail"
|
||||
],
|
||||
"names": [
|
||||
"rougail"
|
||||
],
|
||||
"description": "Rougail",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
}
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"leadership": {
|
||||
"type": "leadership",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail.leadership"
|
||||
],
|
||||
"names": [
|
||||
"leadership"
|
||||
],
|
||||
"description": "a leadership",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
}
|
||||
],
|
||||
"help": [
|
||||
"This family contains lists of variable blocks."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"rougail.leadership.leader": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"value1",
|
||||
"value2"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.leadership.leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
],
|
||||
"descriptions": [
|
||||
"A leader."
|
||||
]
|
||||
},
|
||||
"rougail.leadership.follower": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"the value of the variable \"rougail.leadership.leader\"."
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.leadership.follower"
|
||||
],
|
||||
"names": [
|
||||
"follower"
|
||||
],
|
||||
"descriptions": [
|
||||
"A follower."
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,13 @@
|
|||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **condition**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A condition. |
|
||||
| **variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` *`disabled`* `unique` `multiple` | A variable.<br/>**Disabled**: when the variable "condition" has the value "true". |
|
||||
# Variables for "Rougail"
|
||||
|
||||
## a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.leadership.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||
| **rougail.leadership.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A follower.<br/>**Default**: the value of the variable "rougail.leadership.leader". |
|
||||
|
||||
|
|
@ -3,15 +3,26 @@
|
|||
[1;4;96mVariables for [0m[1;4;96m"Rougail"[0m
|
||||
|
||||
|
||||
|
||||
|
||||
[1;4;92ma leadership[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mrougail.condition[0m │ A condition. │
|
||||
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m unique [0m │ │
|
||||
│ [1;7mmultiple [0m │ │
|
||||
│ [1mrougail.leadership.leader[0m │ A leader. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - value1 │
|
||||
│ │ - value2 │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mrougail.variable[0m │ A variable. │
|
||||
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;3;7m [0m │ [1mDisabled[0m: when the variable │
|
||||
│ [1;3;7mdisabled [0m [1;7m unique [0m [1;7m multiple [0m │ "rougail.condition" has the value │
|
||||
│ │ "true". │
|
||||
│ [1mrougail.leadership.follower[0m │ A follower. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ [1;7mmultiple [0m │ "rougail.leadership.leader". │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
== Variables for "Rougail"
|
||||
|
||||
=== rougail.leader
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**rougail.leader.leader** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
Leader. +
|
||||
**Default**:
|
||||
|
||||
* a
|
||||
* b
|
||||
|
|
||||
|
||||
**rougail.leader.follower** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
|
||||
Follower.
|
||||
|====
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**rougail.variable** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `unique` `multiple` |
|
||||
Variable. +
|
||||
**Default**: the value of the variable "rougail.leader.follower".
|
||||
|====
|
||||
|
||||
|
|
@ -0,0 +1,126 @@
|
|||
{
|
||||
"rougail": {
|
||||
"type": "namespace",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail"
|
||||
],
|
||||
"names": [
|
||||
"rougail"
|
||||
],
|
||||
"description": "Rougail",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
}
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"leader": {
|
||||
"type": "leadership",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail.leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
}
|
||||
],
|
||||
"help": [
|
||||
"This family contains lists of variable blocks."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"rougail.leader.leader": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"a",
|
||||
"b"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.leader.leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
]
|
||||
},
|
||||
"rougail.leader.follower": {
|
||||
"type": "variable",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.leader.follower"
|
||||
],
|
||||
"names": [
|
||||
"follower"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"rougail.variable": {
|
||||
"type": "variable",
|
||||
"default": "the value of the variable \"rougail.leader.follower\".",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.variable"
|
||||
],
|
||||
"names": [
|
||||
"variable"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
# Variables for "Rougail"
|
||||
|
||||
## rougail.leader
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | Leader.<br/>**Default**: <br/>- a<br/>- b |
|
||||
| **rougail.leader.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | Follower. |
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.variable**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | Variable.<br/>**Default**: the value of the variable "rougail.leader.follower". |
|
||||
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
|
||||
|
||||
[1;4;96mVariables for [0m[1;4;96m"Rougail"[0m
|
||||
|
||||
|
||||
|
||||
|
||||
[1;4;92mrougail.leader[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mrougail.leader.leader[0m │ Leader. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - a │
|
||||
│ │ - b │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mrougail.leader.follower[0m │ Follower. │
|
||||
│ [1;7m string [0m [1;7m standard [0m │ │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mrougail.variable[0m │ Variable. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m unique [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ [1;7mmultiple [0m │ "rougail.leader.follower". │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
== Variables for "Rougail"
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**rougail.calculate** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A calculated variable. +
|
||||
**Default**:
|
||||
|
||||
* value1
|
||||
* value2
|
||||
|====
|
||||
|
||||
=== a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**rougail.leader.leader** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A leader. +
|
||||
**Default**: the value of the variable "rougail.calculate".
|
||||
|
|
||||
|
||||
**rougail.leader.follower1** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A follower. +
|
||||
**Default**: val11
|
||||
|
|
||||
|
||||
**rougail.leader.follower2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
An other follower. +
|
||||
**Default**: val21
|
||||
|====
|
||||
|
||||
|
|
@ -0,0 +1,172 @@
|
|||
{
|
||||
"rougail": {
|
||||
"type": "namespace",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail"
|
||||
],
|
||||
"names": [
|
||||
"rougail"
|
||||
],
|
||||
"description": "Rougail",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
}
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"rougail.calculate": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"value1",
|
||||
"value2"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.calculate"
|
||||
],
|
||||
"names": [
|
||||
"calculate"
|
||||
],
|
||||
"descriptions": [
|
||||
"A calculated variable."
|
||||
]
|
||||
},
|
||||
"leader": {
|
||||
"type": "leadership",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail.leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
],
|
||||
"description": "a leadership",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
}
|
||||
],
|
||||
"help": [
|
||||
"This family contains lists of variable blocks."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"rougail.leader.leader": {
|
||||
"type": "variable",
|
||||
"default": "the value of the variable \"rougail.calculate\".",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.leader.leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
],
|
||||
"descriptions": [
|
||||
"A leader."
|
||||
]
|
||||
},
|
||||
"rougail.leader.follower1": {
|
||||
"type": "variable",
|
||||
"default": "val11",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.leader.follower1"
|
||||
],
|
||||
"names": [
|
||||
"follower1"
|
||||
],
|
||||
"descriptions": [
|
||||
"A follower."
|
||||
]
|
||||
},
|
||||
"rougail.leader.follower2": {
|
||||
"type": "variable",
|
||||
"default": "val21",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.leader.follower2"
|
||||
],
|
||||
"names": [
|
||||
"follower2"
|
||||
],
|
||||
"descriptions": [
|
||||
"An other follower."
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
# Variables for "Rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.calculate**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A calculated variable.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||
|
||||
## a leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.leader.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: the value of the variable "rougail.calculate". |
|
||||
| **rougail.leader.follower1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val11 |
|
||||
| **rougail.leader.follower2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An other follower.<br/>**Default**: val21 |
|
||||
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
|
||||
|
||||
[1;4;96mVariables for [0m[1;4;96m"Rougail"[0m
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mrougail.calculate[0m │ A calculated variable. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - value1 │
|
||||
│ │ - value2 │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
||||
|
||||
[1;4;92ma leadership[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mrougail.leader.leader[0m │ A leader. │
|
||||
│ [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.calculate". │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mrougail.leader.follower1[0m │ A follower. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: val11 │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mrougail.leader.follower2[0m │ An other follower. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: val21 │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
== Variables for "Rougail"
|
||||
|
||||
=== a leadership
|
||||
|
||||
`basic`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**rougail.leadership_1.leader** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A leader. +
|
||||
**Default**:
|
||||
|
||||
* value1
|
||||
* value2
|
||||
|
|
||||
|
||||
**rougail.leadership_1.follower** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
A follower.
|
||||
|====
|
||||
|
||||
=== a second leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**rougail.leadership_2.leader** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A leader. +
|
||||
**Default**: the value of the variable "rougail.leadership_1.follower".
|
||||
|
|
||||
|
||||
**rougail.leadership_2.follower** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A follower. +
|
||||
**Default**: val
|
||||
|====
|
||||
|
||||
|
|
@ -0,0 +1,194 @@
|
|||
{
|
||||
"rougail": {
|
||||
"type": "namespace",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail"
|
||||
],
|
||||
"names": [
|
||||
"rougail"
|
||||
],
|
||||
"description": "Rougail",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
}
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"leadership_1": {
|
||||
"type": "leadership",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail.leadership_1"
|
||||
],
|
||||
"names": [
|
||||
"leadership_1"
|
||||
],
|
||||
"description": "a leadership",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
}
|
||||
],
|
||||
"help": [
|
||||
"This family contains lists of variable blocks."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"rougail.leadership_1.leader": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"value1",
|
||||
"value2"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.leadership_1.leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
],
|
||||
"descriptions": [
|
||||
"A leader."
|
||||
]
|
||||
},
|
||||
"rougail.leadership_1.follower": {
|
||||
"type": "variable",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.leadership_1.follower"
|
||||
],
|
||||
"names": [
|
||||
"follower"
|
||||
],
|
||||
"descriptions": [
|
||||
"A follower."
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"leadership_2": {
|
||||
"type": "leadership",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail.leadership_2"
|
||||
],
|
||||
"names": [
|
||||
"leadership_2"
|
||||
],
|
||||
"description": "a second leadership",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
}
|
||||
],
|
||||
"help": [
|
||||
"This family contains lists of variable blocks."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"rougail.leadership_2.leader": {
|
||||
"type": "variable",
|
||||
"default": "the value of the variable \"rougail.leadership_1.follower\".",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.leadership_2.leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
],
|
||||
"descriptions": [
|
||||
"A leader."
|
||||
]
|
||||
},
|
||||
"rougail.leadership_2.follower": {
|
||||
"type": "variable",
|
||||
"default": "val",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.leadership_2.follower"
|
||||
],
|
||||
"names": [
|
||||
"follower"
|
||||
],
|
||||
"descriptions": [
|
||||
"A follower."
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
# Variables for "Rougail"
|
||||
|
||||
## a leadership
|
||||
|
||||
`basic`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.leadership_1.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||
| **rougail.leadership_1.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
||||
|
||||
## a second leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.leadership_2.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: the value of the variable "rougail.leadership_1.follower". |
|
||||
| **rougail.leadership_2.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A follower.<br/>**Default**: val |
|
||||
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
|
||||
|
||||
[1;4;96mVariables for [0m[1;4;96m"Rougail"[0m
|
||||
|
||||
|
||||
|
||||
|
||||
[1;4;92ma leadership[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mrougail.leadership_1.leader[0m │ A leader. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - value1 │
|
||||
│ │ - value2 │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mrougail.leadership_1.follower[0m │ A follower. │
|
||||
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m │ │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
||||
|
||||
[1;4;92ma second leadership[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mrougail.leadership_2.leader[0m │ A leader. │
|
||||
│ [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.leadership_1.follower". │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mrougail.leadership_2.follower[0m │ A follower. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: val │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
== Variables for "Rougail"
|
||||
|
||||
=== a leadership
|
||||
|
||||
`basic`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**rougail.leadership_1.leader** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A leader. +
|
||||
**Default**:
|
||||
|
||||
* value1
|
||||
* value2
|
||||
|
|
||||
|
||||
**rougail.leadership_1.follower** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
A follower.
|
||||
|====
|
||||
|
||||
=== a second leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**rougail.leadership_2.leader** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A leader. +
|
||||
**Default**:
|
||||
|
||||
* value1
|
||||
* value2
|
||||
|
|
||||
|
||||
**rougail.leadership_2.follower** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `multiple` |
|
||||
A follower. +
|
||||
**Default**: the value of the variable "rougail.leadership_1.leader".
|
||||
|====
|
||||
|
||||
|
|
@ -0,0 +1,201 @@
|
|||
{
|
||||
"rougail": {
|
||||
"type": "namespace",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail"
|
||||
],
|
||||
"names": [
|
||||
"rougail"
|
||||
],
|
||||
"description": "Rougail",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
}
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"leadership_1": {
|
||||
"type": "leadership",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail.leadership_1"
|
||||
],
|
||||
"names": [
|
||||
"leadership_1"
|
||||
],
|
||||
"description": "a leadership",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
}
|
||||
],
|
||||
"help": [
|
||||
"This family contains lists of variable blocks."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"rougail.leadership_1.leader": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"value1",
|
||||
"value2"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.leadership_1.leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
],
|
||||
"descriptions": [
|
||||
"A leader."
|
||||
]
|
||||
},
|
||||
"rougail.leadership_1.follower": {
|
||||
"type": "variable",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.leadership_1.follower"
|
||||
],
|
||||
"names": [
|
||||
"follower"
|
||||
],
|
||||
"descriptions": [
|
||||
"A follower."
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"leadership_2": {
|
||||
"type": "leadership",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail.leadership_2"
|
||||
],
|
||||
"names": [
|
||||
"leadership_2"
|
||||
],
|
||||
"description": "a second leadership",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
}
|
||||
],
|
||||
"help": [
|
||||
"This family contains lists of variable blocks."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"rougail.leadership_2.leader": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"value1",
|
||||
"value2"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.leadership_2.leader"
|
||||
],
|
||||
"names": [
|
||||
"leader"
|
||||
],
|
||||
"descriptions": [
|
||||
"A leader."
|
||||
]
|
||||
},
|
||||
"rougail.leadership_2.follower": {
|
||||
"type": "variable",
|
||||
"default": "the value of the variable \"rougail.leadership_1.leader\".",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.leadership_2.follower"
|
||||
],
|
||||
"names": [
|
||||
"follower"
|
||||
],
|
||||
"descriptions": [
|
||||
"A follower."
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
# Variables for "Rougail"
|
||||
|
||||
## a leadership
|
||||
|
||||
`basic`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.leadership_1.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||
| **rougail.leadership_1.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A follower. |
|
||||
|
||||
## a second leadership
|
||||
|
||||
`standard`
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.leadership_2.leader**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A leader.<br/>**Default**: <br/>- value1<br/>- value2 |
|
||||
| **rougail.leadership_2.follower**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `multiple` | A follower.<br/>**Default**: the value of the variable "rougail.leadership_1.leader". |
|
||||
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
|
||||
|
||||
[1;4;96mVariables for [0m[1;4;96m"Rougail"[0m
|
||||
|
||||
|
||||
|
||||
|
||||
[1;4;92ma leadership[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mrougail.leadership_1.leader[0m │ A leader. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - value1 │
|
||||
│ │ - value2 │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mrougail.leadership_1.follower[0m │ A follower. │
|
||||
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m │ │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
||||
|
||||
[1;4;92ma second leadership[0m
|
||||
|
||||
|
||||
[1;7m standard [0m
|
||||
|
||||
|
||||
This family contains lists of variable blocks.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mrougail.leadership_2.leader[0m │ A leader. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - value1 │
|
||||
│ │ - value2 │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [1mrougail.leadership_2.follower[0m │ A follower. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ [1;7mmultiple [0m │ "rougail.leadership_1.leader". │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
== Variables for "Rougail"
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**rougail.var** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||
A suffix variable. +
|
||||
**Default**:
|
||||
|
||||
* Val1
|
||||
* VAL2
|
||||
|====
|
||||
|
||||
=== A dynamic family
|
||||
|
||||
`basic`
|
||||
|
||||
This family builds families dynamically.
|
||||
|
||||
**Identifiers**: the value of the variable "rougail.var".
|
||||
|
||||
[cols="1a,1a"]
|
||||
|====
|
||||
| Variable | Description
|
||||
|
|
||||
|
||||
**rougail.dyn__Val1__.var** +
|
||||
**rougail.dyn__VAL2__.var** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||
A dynamic variable.
|
||||
|====
|
||||
|
||||
114
tests/results/test_namespace/60_0family_dynamic_upper_char.json
Normal file
114
tests/results/test_namespace/60_0family_dynamic_upper_char.json
Normal file
|
|
@ -0,0 +1,114 @@
|
|||
{
|
||||
"rougail": {
|
||||
"type": "namespace",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail"
|
||||
],
|
||||
"names": [
|
||||
"rougail"
|
||||
],
|
||||
"description": "Rougail",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
}
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"rougail.var": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"Val1",
|
||||
"VAL2"
|
||||
],
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "standard"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "unique"
|
||||
},
|
||||
{
|
||||
"type": "multiple",
|
||||
"name": "multiple"
|
||||
}
|
||||
],
|
||||
"paths": [
|
||||
"rougail.var"
|
||||
],
|
||||
"names": [
|
||||
"var"
|
||||
],
|
||||
"descriptions": [
|
||||
"A suffix variable."
|
||||
]
|
||||
},
|
||||
"dyn{{ identifier }}": {
|
||||
"type": "dynamic",
|
||||
"informations": {
|
||||
"paths": [
|
||||
"rougail.dynVal1",
|
||||
"rougail.dynVAL2"
|
||||
],
|
||||
"names": [
|
||||
"dynval1",
|
||||
"dynval2"
|
||||
],
|
||||
"description": "A dynamic family",
|
||||
"properties": [
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
}
|
||||
],
|
||||
"identifiers": "the value of the variable \"rougail.var\".",
|
||||
"help": [
|
||||
"This family builds families dynamically."
|
||||
]
|
||||
},
|
||||
"children": {
|
||||
"rougail.dyn{{ identifier }}.var": {
|
||||
"paths": [
|
||||
"rougail.dynVal1.var",
|
||||
"rougail.dynVAL2.var"
|
||||
],
|
||||
"names": [
|
||||
"var",
|
||||
"var"
|
||||
],
|
||||
"type": "variable",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
"name": "string"
|
||||
},
|
||||
{
|
||||
"type": "mode",
|
||||
"name": "basic"
|
||||
},
|
||||
{
|
||||
"type": "property",
|
||||
"name": "mandatory"
|
||||
}
|
||||
],
|
||||
"descriptions": [
|
||||
"A dynamic variable."
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
# Variables for "Rougail"
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A suffix variable.<br/>**Default**: <br/>- Val1<br/>- VAL2 |
|
||||
|
||||
## A dynamic family
|
||||
|
||||
`basic`
|
||||
|
||||
This family builds families dynamically.
|
||||
|
||||
**Identifiers**: the value of the variable "rougail.var".
|
||||
|
||||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **rougail.dyn*Val1*.var**<br/>**rougail.dyn*VAL2*.var**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A dynamic variable. |
|
||||
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
|
||||
|
||||
[1;4;96mVariables for [0m[1;4;96m"Rougail"[0m
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mrougail.var[0m │ A suffix variable. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||
│ [1;7munique [0m [1;7m multiple [0m │ - Val1 │
|
||||
│ │ - VAL2 │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
||||
|
||||
[1;4;92mA dynamic family[0m
|
||||
|
||||
|
||||
[1;7m basic [0m
|
||||
|
||||
|
||||
This family builds families dynamically.
|
||||
|
||||
|
||||
[1mIdentifiers[0m: the value of the variable [32m"rougail.var"[0m.
|
||||
|
||||
|
||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mrougail.dyn[0m[1;3mVal1[0m[1m.var[0m │ A dynamic variable. │
|
||||
│ [1mrougail.dyn[0m[1;3mVAL2[0m[1m.var[0m │ │
|
||||
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m │ │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
@ -17,9 +17,6 @@ A suffix 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.dyn__val1__.var"
|
||||
* the value of the variable "rougail.dyn__val2__.var"
|
||||
**Default**: the value of the variable "rougail.dynval1.var".
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -53,10 +53,7 @@
|
|||
},
|
||||
"rougail.var2": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"the value of the variable \"rougail.dynval1.var\"",
|
||||
"the value of the variable \"rougail.dynval2.var\""
|
||||
],
|
||||
"default": "the value of the variable \"rougail.dynval1.var\".",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
|
|
|
|||
|
|
@ -3,5 +3,5 @@
|
|||
| Variable | Description |
|
||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **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.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable calculated.<br/>**Default**: <br/>- the value of the variable "rougail.dyn*val1*.var"<br/>- the value of the variable "rougail.dyn*val2*.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". |
|
||||
|
||||
|
|
|
|||
|
|
@ -12,9 +12,6 @@
|
|||
│ │ - val2 │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [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.dyn[3mval1[0m.var" │
|
||||
│ │ - the value of the variable │
|
||||
│ │ "rougail.dyn[3mval2[0m.var" │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ │ "rougail.dynval1.var". │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -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 values of undocumented variables.
|
||||
**Default**: the value of the variable "rougail.dynval1.var".
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -106,7 +106,7 @@
|
|||
},
|
||||
"rougail.var2": {
|
||||
"type": "variable",
|
||||
"default": "the values of undocumented variables.",
|
||||
"default": "the value of the variable \"rougail.dynval1.var\".",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
|
|
|
|||
|
|
@ -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 values of undocumented variables. |
|
||||
| **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". |
|
||||
|
||||
|
|
|
|||
|
|
@ -36,6 +36,6 @@ This family builds families dynamically.
|
|||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mrougail.var2[0m │ A variable calculated. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the values of undocumented │
|
||||
│ │ variables. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ │ "rougail.dynval1.var". │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -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 an undocumented variable
|
||||
**Default**: the value of the variable "rougail.dynval1.var".
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -101,9 +101,7 @@
|
|||
},
|
||||
"rougail.var2": {
|
||||
"type": "variable",
|
||||
"default": [
|
||||
"the value of an undocumented variable"
|
||||
],
|
||||
"default": "the value of the variable \"rougail.dynval1.var\".",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
|
|
|
|||
|
|
@ -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 an undocumented variable |
|
||||
| **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". |
|
||||
|
||||
|
|
|
|||
|
|
@ -34,6 +34,6 @@ This family builds families dynamically.
|
|||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mrougail.var2[0m │ A variable calculated. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of an │
|
||||
│ │ undocumented variable │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ │ "rougail.dynval1.var". │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
**rougail.var2** +
|
||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
||||
A variable calculated. +
|
||||
**Default**: the values of undocumented variables.
|
||||
**Default**: the value of the variable "rougail.dynval1.var".
|
||||
|
|
||||
|
||||
**rougail.var1** +
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
"children": {
|
||||
"rougail.var2": {
|
||||
"type": "variable",
|
||||
"default": "the values of undocumented variables.",
|
||||
"default": "the value of the variable \"rougail.dynval1.var\".",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
|
|
|
|||
|
|
@ -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 values of undocumented variables. |
|
||||
| **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.dyn*val1* or rougail.dyn*val2*
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@
|
|||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mrougail.var2[0m │ A variable calculated. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the values of undocumented │
|
||||
│ │ variables. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ │ "rougail.dynval1.var". │
|
||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||
│ [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 values of undocumented variables.
|
||||
**Default**: the value of the variable "rougail.dynval1.var".
|
||||
|====
|
||||
|
||||
|
|
|
|||
|
|
@ -106,7 +106,7 @@
|
|||
},
|
||||
"rougail.var2": {
|
||||
"type": "variable",
|
||||
"default": "the values of undocumented variables.",
|
||||
"default": "the value of the variable \"rougail.dynval1.var\".",
|
||||
"properties": [
|
||||
{
|
||||
"type": "type",
|
||||
|
|
|
|||
|
|
@ -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 values of undocumented variables. |
|
||||
| **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". |
|
||||
|
||||
|
|
|
|||
|
|
@ -36,6 +36,6 @@ This family builds families dynamically.
|
|||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||
│ [1mrougail.var2[0m │ A variable calculated. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the values of undocumented │
|
||||
│ │ variables. │
|
||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: the value of the variable │
|
||||
│ │ "rougail.dynval1.var". │
|
||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue