feat: use blockquote for family description
This commit is contained in:
parent
4f475be53e
commit
3503b25869
5942 changed files with 31499 additions and 50733 deletions
|
|
@ -20,6 +20,7 @@ from typing import List
|
||||||
from html import escape
|
from html import escape
|
||||||
|
|
||||||
from ..utils import dump, CommonFormatter
|
from ..utils import dump, CommonFormatter
|
||||||
|
from ..i18n import _
|
||||||
|
|
||||||
|
|
||||||
class Formatter(CommonFormatter):
|
class Formatter(CommonFormatter):
|
||||||
|
|
@ -153,17 +154,22 @@ class Formatter(CommonFormatter):
|
||||||
def to_phrase(self, text: str) -> str:
|
def to_phrase(self, text: str) -> str:
|
||||||
return escape(text)
|
return escape(text)
|
||||||
|
|
||||||
def family_to_string(self, *args, **kwargs) -> List[str]:
|
def family_informations(self) -> str:
|
||||||
lst = super().family_to_string(*args, **kwargs)
|
info = self.bold(f"🛈 {_('Informations')}") # ℹ️
|
||||||
if self.name != 'github':
|
return self.family_informations_starts_line(info) + "\n" + self.family_informations_starts_line("") + "\n"
|
||||||
return lst
|
|
||||||
ret = lst.pop(0)
|
|
||||||
if lst:
|
|
||||||
content = "\n".join([l.strip() for l in lst]).strip()
|
|
||||||
ret += "\n\n| Informations |\n"
|
|
||||||
ret += "|:------------|\n"
|
|
||||||
ret += "| " + content.replace("\n", "<br>") + " |\n\n"
|
|
||||||
return [ret]
|
|
||||||
|
|
||||||
def after_family_properties(self) -> str:
|
def family_informations_starts_line(self, line: str) -> str:
|
||||||
return "<br/>"
|
return "> " + line
|
||||||
|
|
||||||
|
def family_informations_ends_line(self) -> str:
|
||||||
|
return "\\\n"
|
||||||
|
#
|
||||||
|
# def family_to_string(self, *args, **kwargs) -> List[str]:
|
||||||
|
# lst = super().family_to_string(*args, **kwargs)
|
||||||
|
# if self.name != 'github':
|
||||||
|
# return lst
|
||||||
|
# # remove the title
|
||||||
|
# ret = lst.pop(0)
|
||||||
|
# if lst:
|
||||||
|
# ret = "\n> ".join([l.strip() for l in lst]).strip() + "\n\n"
|
||||||
|
# return [ret]
|
||||||
|
|
|
||||||
|
|
@ -70,10 +70,10 @@ class Formatter(GithubFormatter):
|
||||||
def end_family_informations(self) -> str:
|
def end_family_informations(self) -> str:
|
||||||
return f"\n>>>\n"
|
return f"\n>>>\n"
|
||||||
|
|
||||||
def after_family_paths(self) -> str:
|
def family_informations_starts_line(self, line: str) -> str:
|
||||||
return "<br/>"
|
return line
|
||||||
|
|
||||||
def after_family_properties(self) -> str:
|
def family_informations_ends_line(self) -> str:
|
||||||
return "<br/>"
|
return "<br/>"
|
||||||
|
|
||||||
def table_header(self, lst):
|
def table_header(self, lst):
|
||||||
|
|
|
||||||
|
|
@ -310,12 +310,6 @@ class CommonFormatter:
|
||||||
ret_paths.append(self.bold(self.anchor(path, path)))
|
ret_paths.append(self.bold(self.anchor(path, path)))
|
||||||
return ret_paths
|
return ret_paths
|
||||||
|
|
||||||
def after_family_paths(self) -> str:
|
|
||||||
return ENTER
|
|
||||||
|
|
||||||
def after_family_properties(self) -> str:
|
|
||||||
return ENTER
|
|
||||||
|
|
||||||
def table_header(
|
def table_header(
|
||||||
self,
|
self,
|
||||||
lst: list,
|
lst: list,
|
||||||
|
|
@ -356,11 +350,12 @@ class CommonFormatter:
|
||||||
informations = value["informations"]
|
informations = value["informations"]
|
||||||
msg.append(self.namespace_to_title(informations, ori_level))
|
msg.append(self.namespace_to_title(informations, ori_level))
|
||||||
msg.append(self.family_informations())
|
msg.append(self.family_informations())
|
||||||
msg.extend(self.display_paths(informations, {}, None))
|
msg.append(self.family_informations_ends_line().join([self.family_informations_starts_line(p) for p in self.display_paths(informations, {}, None)]))
|
||||||
msg.append(self.after_family_paths())
|
msg.append(self.family_informations_ends_line())
|
||||||
msg.append(
|
msg.append(
|
||||||
self.property_to_string(informations, {}, {})[1] + ENTER
|
self.family_informations_starts_line(self.property_to_string(informations, {}, {})[1]) + self.family_informations_ends_line()
|
||||||
)
|
)
|
||||||
|
print(msg)
|
||||||
msg.append(self.end_family_informations())
|
msg.append(self.end_family_informations())
|
||||||
msg.extend(self.dict_to_dict(value["children"], level))
|
msg.extend(self.dict_to_dict(value["children"], level))
|
||||||
msg.append(self.end_namespace(ori_level))
|
msg.append(self.end_namespace(ori_level))
|
||||||
|
|
@ -394,12 +389,13 @@ class CommonFormatter:
|
||||||
|
|
||||||
def family_to_string(self, informations: dict, level: int) -> str:
|
def family_to_string(self, informations: dict, level: int) -> str:
|
||||||
"""manage other family type"""
|
"""manage other family type"""
|
||||||
|
ret = [self.title(self.get_description("family", informations, {}, None), level)]
|
||||||
msg = []
|
msg = []
|
||||||
fam_info = self.family_informations()
|
fam_info = self.family_informations()
|
||||||
if fam_info:
|
if fam_info:
|
||||||
msg.append(fam_info)
|
ret.append(fam_info)
|
||||||
msg.append(
|
msg.append(
|
||||||
self.join(self.display_paths(informations, {}, None)) # + self.after_family_paths()
|
self.join(self.display_paths(informations, {}, None))
|
||||||
)
|
)
|
||||||
helps = informations.get("help")
|
helps = informations.get("help")
|
||||||
if helps:
|
if helps:
|
||||||
|
|
@ -410,16 +406,20 @@ class CommonFormatter:
|
||||||
if property_str:
|
if property_str:
|
||||||
msg.append(property_str)
|
msg.append(property_str)
|
||||||
if calculated_properties:
|
if calculated_properties:
|
||||||
msg.append(
|
msg.append(self.join(calculated_properties)
|
||||||
self.join(calculated_properties)
|
|
||||||
)
|
)
|
||||||
if "identifier" in informations:
|
if "identifier" in informations:
|
||||||
msg.append(
|
msg.append(
|
||||||
self.section(_("Identifiers"), informations["identifier"])
|
self.section(_("Identifiers"), informations["identifier"], type_="family")
|
||||||
)
|
)
|
||||||
return [self.title(self.get_description("family", informations, {}, None), level),
|
ret.append(self.family_informations_ends_line().join([self.family_informations_starts_line(m) for m in msg]) + self.end_family_informations())
|
||||||
self.after_family_properties().join(msg) + self.end_family_informations(),
|
return ret
|
||||||
]
|
|
||||||
|
def family_informations_starts_line(self, line: str) -> str:
|
||||||
|
return line
|
||||||
|
|
||||||
|
def family_informations_ends_line(self) -> str:
|
||||||
|
return ENTER
|
||||||
|
|
||||||
def end_family(self, level: int) -> str:
|
def end_family(self, level: int) -> str:
|
||||||
return ""
|
return ""
|
||||||
|
|
@ -537,7 +537,7 @@ class CommonFormatter:
|
||||||
) -> list:
|
) -> list:
|
||||||
"""Collect string for the first column"""
|
"""Collect string for the first column"""
|
||||||
multi, properties = self.property_to_string(
|
multi, properties = self.property_to_string(
|
||||||
informations, calculated_properties, modified_attributes
|
informations, calculated_properties, modified_attributes,
|
||||||
)
|
)
|
||||||
first_col = [
|
first_col = [
|
||||||
self.join(self.display_paths(informations, modified_attributes, force_identifiers, is_variable=True)),
|
self.join(self.display_paths(informations, modified_attributes, force_identifiers, is_variable=True)),
|
||||||
|
|
@ -881,6 +881,7 @@ class CommonFormatter:
|
||||||
name: str,
|
name: str,
|
||||||
msg: str,
|
msg: str,
|
||||||
submessage: str = "",
|
submessage: str = "",
|
||||||
|
type_ = "variable",
|
||||||
) -> str:
|
) -> str:
|
||||||
"""Return something like Name: msg"""
|
"""Return something like Name: msg"""
|
||||||
submessage, msg = self.message_to_string(msg, submessage)
|
submessage, msg = self.message_to_string(msg, submessage)
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,7 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **version** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable.
|
||||||
**version** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
A variable.
|
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,7 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **empty** +
|
||||||
|
|
||||||
**empty** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||||
|
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,11 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A first variable. +
|
|
||||||
**Default**: no
|
**Default**: no
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**: the value of var1
|
**Default**: the value of var1
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,15 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A first variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* no
|
* no
|
||||||
* yes
|
* yes
|
||||||
* maybe
|
* maybe
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**: the value of _.var1
|
**Default**: the value of _.var1
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,9 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar1[0m │ A first variable. │
|
│ [1mvar1[0m │ A first variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - no │
|
│ [1;7munique [0m [1;7m multiple [0m │ • no │
|
||||||
│ │ - yes │
|
│ │ • yes │
|
||||||
│ │ - maybe │
|
│ │ • maybe │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ A second variable. │
|
│ [1mvar2[0m │ A second variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of _.var1 │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of _.var1 │
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**: depends on a calculation
|
**Default**: depends on a calculation
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,11 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` |
|
|
||||||
A first variable. +
|
|
||||||
**Validator**: the domain name can be an IP
|
**Validator**: the domain name can be an IP
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**: the value of the variable "var1"
|
**Default**: the value of the variable "var1"
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,10 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
|
||||||
**var1** +
|
| **var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
|
||||||
A first variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**: value of a variable!
|
**Default**: value of a variable!
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,24 +1,15 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
|
||||||
**var1** +
|
| **var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
|
||||||
A first variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**: value
|
**Default**: value
|
||||||
of
|
of
|
||||||
a
|
a
|
||||||
variable!
|
variable!
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A new variable.
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
A new variable.
|
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,11 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` |
|
|
||||||
A first variable. +
|
|
||||||
**Validator**: the domain name can be an IP
|
**Validator**: the domain name can be an IP
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A second variable. +
|
|
||||||
**Validator**: the domain name can be an IP +
|
**Validator**: the domain name can be an IP +
|
||||||
**Default**: the value of the variable "var1"
|
**Default**: the value of the variable "var1"
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,9 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable.
|
||||||
**var1** +
|
| **var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable.
|
||||||
A variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
A variable.
|
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **without_type** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
|
||||||
**without_type** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: non
|
**Default**: non
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,41 +1,23 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
**Default**: true
|
**Default**: true
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Default**: true
|
**Default**: true
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The third variable. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
|
||||||
The third variable. +
|
|
||||||
**Default**: true
|
**Default**: true
|
||||||
|
|
| **var4** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The forth variable. +
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
|
||||||
The forth variable. +
|
|
||||||
**Default**: false
|
**Default**: false
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Default**: false
|
**Default**: false
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Default**: false
|
**Default**: false
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` | A variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: true
|
**Default**: true
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,62 +1,44 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* a
|
* a
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* a
|
* a
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The third variable. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` |
|
|
||||||
The third variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* a
|
* a
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
* null
|
* null
|
||||||
|
|
| **var4** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The forth variable. +
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` |
|
|
||||||
The forth variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* null
|
* null
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* a **← (default)**
|
* a **← (default)**
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* 1 **← (default)**
|
* 1 **← (default)**
|
||||||
|
|
|
||||||
|
|
@ -3,38 +3,38 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar1[0m │ The first variable. │
|
│ [1mvar1[0m │ The first variable. │
|
||||||
│ [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
||||||
│ │ - a │
|
│ │ • a │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ The second variable. │
|
│ [1mvar2[0m │ The second variable. │
|
||||||
│ [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
||||||
│ │ - a │
|
│ │ • a │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar3[0m │ The third variable. │
|
│ [1mvar3[0m │ The third variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m standard [0m │ [1mChoices[0m: │
|
||||||
│ │ - a │
|
│ │ • a │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
│ │ - null │
|
│ │ • null │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar4[0m │ The forth variable. │
|
│ [1mvar4[0m │ The forth variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m standard [0m │ [1mChoices[0m: │
|
||||||
│ │ - null │
|
│ │ • null │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar5[0m │ The fifth variable. │
|
│ [1mvar5[0m │ The fifth variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
||||||
│ │ - a [1m← (default)[0m │
|
│ │ • a [1m← (default)[0m │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar6[0m │ The sixth variable. │
|
│ [1mvar6[0m │ The sixth variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
||||||
│ │ - 1 [1m← (default)[0m │
|
│ │ • 1 [1m← (default)[0m │
|
||||||
│ │ - 2 │
|
│ │ • 2 │
|
||||||
│ │ - 3 │
|
│ │ • 3 │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
|
||||||
**var** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Choices**: choices is 0 to 9 +
|
**Choices**: choices is 0 to 9 +
|
||||||
**Default**: 9
|
**Default**: 9
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,15 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* a
|
* a
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* a
|
* a
|
||||||
|
|
|
||||||
|
|
@ -3,15 +3,15 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar1[0m │ The first variable. │
|
│ [1mvar1[0m │ The first variable. │
|
||||||
│ [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
||||||
│ │ - a │
|
│ │ • a │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ The second variable. │
|
│ [1mvar2[0m │ The second variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
||||||
│ │ - a │
|
│ │ • a │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
│ │ [1mDefault[0m: the value of the variable │
|
│ │ [1mDefault[0m: the value of the variable │
|
||||||
│ │ "var1" │
|
│ │ "var1" │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,15 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* a
|
* a
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A first variable. +
|
|
||||||
**Choices**: the value of the variable "var1" +
|
**Choices**: the value of the variable "var1" +
|
||||||
**Default**: a
|
**Default**: a
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,9 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar1[0m │ A second variable. │
|
│ [1mvar1[0m │ A second variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [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 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • a │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ A first variable. │
|
│ [1mvar2[0m │ A first variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: the value of the variable │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: the value of the variable │
|
||||||
|
|
|
||||||
|
|
@ -1,28 +1,19 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* a
|
* a
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A first variable. +
|
|
||||||
**Choices**: the value of the variable "var1" +
|
**Choices**: the value of the variable "var1" +
|
||||||
**Default**: a
|
**Default**: a
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A third variable. +
|
|
||||||
**Choices**: the value of the variable "var1" +
|
**Choices**: the value of the variable "var1" +
|
||||||
**Default**: the value of the variable "var2"
|
**Default**: the value of the variable "var2"
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,9 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar1[0m │ A second variable. │
|
│ [1mvar1[0m │ A second variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [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 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • a │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ A first variable. │
|
│ [1mvar2[0m │ A first variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: the value of the variable │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: the value of the variable │
|
||||||
|
|
|
||||||
|
|
@ -1,40 +1,32 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* a
|
* a
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A first variable. +
|
|
||||||
**Choices**: the value of the variable "var1" +
|
**Choices**: the value of the variable "var1" +
|
||||||
**Default**: a
|
**Default**: a
|
||||||
|====
|
|====
|
||||||
|
|
||||||
== family
|
== family
|
||||||
|
|
||||||
|
====
|
||||||
|
**🛈 Informations**
|
||||||
|
|
||||||
**family**
|
**family** +
|
||||||
|
|
||||||
`standard`
|
`standard`
|
||||||
|
====
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **family.var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
|
||||||
**family.var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A third variable. +
|
|
||||||
**Choices**: the value of the variable "var1" +
|
**Choices**: the value of the variable "var1" +
|
||||||
**Default**: the value of the variable "var2"
|
**Default**: the value of the variable "var2"
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,10 @@
|
||||||
|
|
||||||
<details><summary>family</summary>
|
<details><summary>family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
> [!note] Informations
|
||||||
<br/>**<a id="family" name="family">family</a>**<br/>`standard`
|
> **<a id="family" name="family">family</a>**\
|
||||||
>>>
|
> `standard`
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **<a id="family.var3" name="family.var3">family.var3</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.<br/>**Choices**: the value of the variable "[`A second variable`](#var1)"<br/>**Default**: the value of the variable "[`A first variable`](#var2)" |
|
| **<a id="family.var3" name="family.var3">family.var3</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.<br/>**Choices**: the value of the variable "[`A second variable`](#var1)"<br/>**Default**: the value of the variable "[`A first variable`](#var2)" |
|
||||||
|
|
|
||||||
|
|
@ -5,11 +5,10 @@
|
||||||
|
|
||||||
# family
|
# family
|
||||||
|
|
||||||
|
> **🛈 Informations**
|
||||||
|
>
|
||||||
| Informations |
|
> **family**\
|
||||||
|:------------|
|
> `standard`
|
||||||
| **family**<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -3,24 +3,21 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar1[0m │ A second variable. │
|
│ [1mvar1[0m │ A second variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [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 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • a │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ A first variable. │
|
│ [1mvar2[0m │ A first variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: the value of the variable │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: the value of the variable │
|
||||||
│ │ "var1" │
|
│ │ "var1" │
|
||||||
│ │ [1mDefault[0m: a │
|
│ │ [1mDefault[0m: a │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
||||||
|
|
||||||
[1;4;96mfamily[0m
|
[1;4;96mfamily[0m
|
||||||
|
|
||||||
|
[32m▌ [0m[1;32m🛈 Informations[0m
|
||||||
[1mfamily[0m
|
[32m▌ [0m
|
||||||
|
[32m▌ [0m[1mfamily[0m
|
||||||
[1;7m standard [0m
|
[32m▌ [0m[1;7m standard [0m
|
||||||
|
|
||||||
|
|
||||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,10 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **custom1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` | The first variable.
|
||||||
**custom1** +
|
| **custom2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` | The seconf variable. +
|
||||||
The first variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**custom2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` |
|
|
||||||
The seconf variable. +
|
|
||||||
**Default**: value
|
**Default**: value
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | A domain name variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` |
|
|
||||||
A domain name variable. +
|
|
||||||
**Default**: my.domain.name
|
**Default**: my.domain.name
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | A domain name variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` |
|
|
||||||
A domain name variable. +
|
|
||||||
**Validator**: the domain name can be an IP +
|
**Validator**: the domain name can be an IP +
|
||||||
**Default**: my.domain.name
|
**Default**: my.domain.name
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
|
|
@ -1,41 +1,23 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
**Default**: 0.0
|
**Default**: 0.0
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Default**: 0.0
|
**Default**: 0.0
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The third variable. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
|
||||||
The third variable. +
|
|
||||||
**Default**: 0.0
|
**Default**: 0.0
|
||||||
|
|
| **var4** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The forth variable. +
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
|
||||||
The forth variable. +
|
|
||||||
**Default**: 10.1
|
**Default**: 10.1
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Default**: 10.1
|
**Default**: 10.1
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Default**: 10.1
|
**Default**: 10.1
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,41 +1,23 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
**Default**: 0
|
**Default**: 0
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Default**: 0
|
**Default**: 0
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The third variable. +
|
|
||||||
**Default**: 0
|
**Default**: 0
|
||||||
|
|
| **var4** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. +
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
This forth variable. +
|
|
||||||
**Default**: 10
|
**Default**: 10
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Default**: 10
|
**Default**: 10
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Default**: 10
|
**Default**: 10
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,12 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` |
|
|
||||||
An IP. +
|
|
||||||
**Validator**: reserved IP are allowed +
|
**Validator**: reserved IP are allowed +
|
||||||
**Default**: 1.1.1.1
|
**Default**: 1.1.1.1
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP in CIDR format. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` |
|
|
||||||
An IP in CIDR format. +
|
|
||||||
**Validators**:
|
**Validators**:
|
||||||
|
|
||||||
* IP must be in CIDR format
|
* IP must be in CIDR format
|
||||||
|
|
@ -20,11 +14,8 @@ An IP in CIDR format. +
|
||||||
|
|
||||||
**Default**: 1.1.1.1/24 +
|
**Default**: 1.1.1.1/24 +
|
||||||
**Example**: 192.168.0.128/25
|
**Example**: 192.168.0.128/25
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` | An IP in CIDR format with obsolete CIDR type. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` |
|
|
||||||
An IP in CIDR format with obsolete CIDR type. +
|
|
||||||
**Default**: 1.1.1.1/24
|
**Default**: 1.1.1.1/24
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,8 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ An IP in CIDR format. │
|
│ [1mvar2[0m │ An IP in CIDR format. │
|
||||||
│ [1;7m IP [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
│ [1;7m IP [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
||||||
│ │ - IP must be in CIDR format │
|
│ │ • IP must be in CIDR format │
|
||||||
│ │ - reserved IP are allowed │
|
│ │ • reserved IP are allowed │
|
||||||
│ │ [1mDefault[0m: 1.1.1.1/24 │
|
│ │ [1mDefault[0m: 1.1.1.1/24 │
|
||||||
│ │ [1mExample[0m: 192.168.0.128/25 │
|
│ │ [1mExample[0m: 192.168.0.128/25 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
|
|
|
||||||
|
|
@ -1,24 +1,15 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` |
|
|
||||||
An network. +
|
|
||||||
**Default**: 1.1.1.0
|
**Default**: 1.1.1.0
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network in CIDR format. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` |
|
|
||||||
An network in CIDR format. +
|
|
||||||
**Validator**: network must be in CIDR format +
|
**Validator**: network must be in CIDR format +
|
||||||
**Default**: 1.1.1.0/24
|
**Default**: 1.1.1.0/24
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` | An network in CIDR format with obsolete CIDR type. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` |
|
|
||||||
An network in CIDR format with obsolete CIDR type. +
|
|
||||||
**Default**: 1.1.1.0/24
|
**Default**: 1.1.1.0/24
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,41 +1,23 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
**Default**: 0
|
**Default**: 0
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Default**: 0
|
**Default**: 0
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The third variable. +
|
|
||||||
**Default**: 0
|
**Default**: 0
|
||||||
|
|
| **var4** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. +
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
This forth variable. +
|
|
||||||
**Default**: 10
|
**Default**: 10
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Default**: 10
|
**Default**: 10
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Default**: 10
|
**Default**: 10
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,15 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `basic` `mandatory` | A port variable. +
|
||||||
**variable1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `basic` `mandatory` |
|
|
||||||
A port variable. +
|
|
||||||
**Validators**:
|
**Validators**:
|
||||||
|
|
||||||
* well-known ports (1 to 1023) are allowed
|
* well-known ports (1 to 1023) are allowed
|
||||||
* registred ports (1024 to 49151) are allowed
|
* registred ports (1024 to 49151) are allowed
|
||||||
* private ports (greater than 49152) are allowed
|
* private ports (greater than 49152) are allowed
|
||||||
|
|
| **variable2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with default value. +
|
||||||
**variable2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` |
|
|
||||||
A port variable with default value. +
|
|
||||||
**Validators**:
|
**Validators**:
|
||||||
|
|
||||||
* well-known ports (1 to 1023) are allowed
|
* well-known ports (1 to 1023) are allowed
|
||||||
|
|
@ -23,11 +17,8 @@ A port variable with default value. +
|
||||||
* private ports (greater than 49152) are allowed
|
* private ports (greater than 49152) are allowed
|
||||||
|
|
||||||
**Default**: 8080
|
**Default**: 8080
|
||||||
|
|
| **variable3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with integer default value. +
|
||||||
**variable3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` |
|
|
||||||
A port variable with integer default value. +
|
|
||||||
**Validators**:
|
**Validators**:
|
||||||
|
|
||||||
* well-known ports (1 to 1023) are allowed
|
* well-known ports (1 to 1023) are allowed
|
||||||
|
|
|
||||||
|
|
@ -3,31 +3,31 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvariable1[0m │ A port variable. │
|
│ [1mvariable1[0m │ A port variable. │
|
||||||
│ [1;7m port [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
│ [1;7m port [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
||||||
│ │ - well-known ports (1 to 1023) are │
|
│ │ • well-known ports (1 to 1023) are │
|
||||||
│ │ allowed │
|
│ │ allowed │
|
||||||
│ │ - registred ports (1024 to 49151) │
|
│ │ • registred ports (1024 to 49151) │
|
||||||
│ │ are allowed │
|
|
||||||
│ │ - private ports (greater than 49152) │
|
|
||||||
│ │ are allowed │
|
│ │ are allowed │
|
||||||
|
│ │ • private ports (greater than │
|
||||||
|
│ │ 49152) are allowed │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvariable2[0m │ A port variable with default value. │
|
│ [1mvariable2[0m │ A port variable with default value. │
|
||||||
│ [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
│ [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
||||||
│ │ - well-known ports (1 to 1023) are │
|
│ │ • well-known ports (1 to 1023) are │
|
||||||
│ │ allowed │
|
│ │ allowed │
|
||||||
│ │ - registred ports (1024 to 49151) │
|
│ │ • registred ports (1024 to 49151) │
|
||||||
│ │ are allowed │
|
|
||||||
│ │ - private ports (greater than 49152) │
|
|
||||||
│ │ are allowed │
|
│ │ are allowed │
|
||||||
|
│ │ • private ports (greater than │
|
||||||
|
│ │ 49152) are allowed │
|
||||||
│ │ [1mDefault[0m: 8080 │
|
│ │ [1mDefault[0m: 8080 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvariable3[0m │ A port variable with integer default │
|
│ [1mvariable3[0m │ A port variable with integer default │
|
||||||
│ [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m │ value. │
|
│ [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m │ value. │
|
||||||
│ │ [1mValidators[0m: │
|
│ │ [1mValidators[0m: │
|
||||||
│ │ - well-known ports (1 to 1023) are │
|
│ │ • well-known ports (1 to 1023) are │
|
||||||
│ │ allowed │
|
│ │ allowed │
|
||||||
│ │ - registred ports (1024 to 49151) │
|
│ │ • registred ports (1024 to 49151) │
|
||||||
│ │ are allowed │
|
|
||||||
│ │ - private ports (greater than 49152) │
|
|
||||||
│ │ are allowed │
|
│ │ are allowed │
|
||||||
|
│ │ • private ports (greater than │
|
||||||
|
│ │ 49152) are allowed │
|
||||||
│ │ [1mDefault[0m: 8080 │
|
│ │ [1mDefault[0m: 8080 │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. +
|
||||||
**var** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` |
|
|
||||||
A first variable. +
|
|
||||||
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
|
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
|
||||||
**Default**: #a1a1a1 +
|
**Default**: #a1a1a1 +
|
||||||
**Examples**:
|
**Examples**:
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,6 @@
|
||||||
│ │ "^#(?:[0-9a-f]{3}){1,2}$" │
|
│ │ "^#(?:[0-9a-f]{3}){1,2}$" │
|
||||||
│ │ [1mDefault[0m: #a1a1a1 │
|
│ │ [1mDefault[0m: #a1a1a1 │
|
||||||
│ │ [1mExamples[0m: │
|
│ │ [1mExamples[0m: │
|
||||||
│ │ - #b1b1b1 │
|
│ │ • #b1b1b1 │
|
||||||
│ │ - #b2b2b2 │
|
│ │ • #b2b2b2 │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,16 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` |
|
|
||||||
A first variable. +
|
|
||||||
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
|
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
|
||||||
**Default**: #a1a1a1 +
|
**Default**: #a1a1a1 +
|
||||||
**Examples**:
|
**Examples**:
|
||||||
|
|
||||||
* '#b1b1b1'
|
* '#b1b1b1'
|
||||||
* '#b2b2b2'
|
* '#b2b2b2'
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` |
|
|
||||||
A second variable. +
|
|
||||||
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
|
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
|
||||||
**Default**: the value of the variable "var1" +
|
**Default**: the value of the variable "var1" +
|
||||||
**Examples**:
|
**Examples**:
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,8 @@
|
||||||
│ │ "^#(?:[0-9a-f]{3}){1,2}$" │
|
│ │ "^#(?:[0-9a-f]{3}){1,2}$" │
|
||||||
│ │ [1mDefault[0m: #a1a1a1 │
|
│ │ [1mDefault[0m: #a1a1a1 │
|
||||||
│ │ [1mExamples[0m: │
|
│ │ [1mExamples[0m: │
|
||||||
│ │ - #b1b1b1 │
|
│ │ • #b1b1b1 │
|
||||||
│ │ - #b2b2b2 │
|
│ │ • #b2b2b2 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ A second variable. │
|
│ [1mvar2[0m │ A second variable. │
|
||||||
│ [1;7m regexp [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidator[0m: text based with regular │
|
│ [1;7m regexp [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidator[0m: text based with regular │
|
||||||
|
|
@ -17,6 +17,6 @@
|
||||||
│ │ [1mDefault[0m: the value of the variable │
|
│ │ [1mDefault[0m: the value of the variable │
|
||||||
│ │ "var1" │
|
│ │ "var1" │
|
||||||
│ │ [1mExamples[0m: │
|
│ │ [1mExamples[0m: │
|
||||||
│ │ - #b2b1b1 │
|
│ │ • #b2b1b1 │
|
||||||
│ │ - #b3b2b2 │
|
│ │ • #b3b2b2 │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,10 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **secret1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable.
|
||||||
**secret1** +
|
| **secret2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. +
|
||||||
The first variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**secret2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Default**: value
|
**Default**: value
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,28 +1,19 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **secret1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable. +
|
||||||
**secret1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
**Validator**: minimum length for the secret is 10 characters
|
**Validator**: minimum length for the secret is 10 characters
|
||||||
|
|
| **secret2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. +
|
||||||
**secret2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Validators**:
|
**Validators**:
|
||||||
|
|
||||||
* maximum length for the secret is 10 characters
|
* maximum length for the secret is 10 characters
|
||||||
* 'forbidden characters: "$" and "^"'
|
* 'forbidden characters: "$" and "^"'
|
||||||
|
|
||||||
**Default**: value
|
**Default**: value
|
||||||
|
|
| **secret3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The third variable. +
|
||||||
**secret3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` |
|
|
||||||
The third variable. +
|
|
||||||
**Validators**:
|
**Validators**:
|
||||||
|
|
||||||
* maximum length for the secret is 10 characters
|
* maximum length for the secret is 10 characters
|
||||||
|
|
|
||||||
|
|
@ -7,15 +7,15 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1msecret2[0m │ The second variable. │
|
│ [1msecret2[0m │ The second variable. │
|
||||||
│ [1;7m secret [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
│ [1;7m secret [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
||||||
│ │ - maximum length for the secret is │
|
│ │ • maximum length for the secret is │
|
||||||
│ │ 10 characters │
|
│ │ 10 characters │
|
||||||
│ │ - forbidden characters: "$" and "^" │
|
│ │ • forbidden characters: "$" and "^" │
|
||||||
│ │ [1mDefault[0m: value │
|
│ │ [1mDefault[0m: value │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1msecret3[0m │ The third variable. │
|
│ [1msecret3[0m │ The third variable. │
|
||||||
│ [1;7m secret [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
│ [1;7m secret [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
||||||
│ │ - maximum length for the secret is │
|
│ │ • maximum length for the secret is │
|
||||||
│ │ 10 characters │
|
│ │ 10 characters │
|
||||||
│ │ - forbidden characters: "$" │
|
│ │ • forbidden characters: "$" │
|
||||||
│ │ [1mDefault[0m: value │
|
│ │ [1mDefault[0m: value │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,50 +1,26 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable.
|
||||||
**var1** +
|
| **var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable.
|
||||||
The first variable.
|
| **var3** +
|
||||||
|
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable.
|
||||||
|
| **var4** +
|
||||||
**var2** +
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The forth variable. +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The second variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The third variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The forth variable. +
|
|
||||||
**Default**: value
|
**Default**: value
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Default**: value
|
**Default**: value
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Default**: value
|
**Default**: value
|
||||||
|
|
| **var7** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The seventh variable. +
|
||||||
**var7** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The seventh variable. +
|
|
||||||
**Default**: 8080
|
**Default**: 8080
|
||||||
|
|
| **var8** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The height variable. +
|
||||||
**var8** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The height variable. +
|
|
||||||
**Default**: true
|
**Default**: true
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A choice. +
|
||||||
**var** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A choice. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* quote' **← (default)**
|
* quote' **← (default)**
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar[0m │ A choice. │
|
│ [1mvar[0m │ A choice. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
||||||
│ │ - quote' [1m← (default)[0m │
|
│ │ • quote' [1m← (default)[0m │
|
||||||
│ │ - quote" │
|
│ │ • quote" │
|
||||||
│ │ - quote"' │
|
│ │ • quote"' │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,15 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
Multi line
|
Multi line
|
||||||
|
|
||||||
Help
|
Help
|
||||||
|
|
||||||
With useful information.
|
With useful information.
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
Multi line
|
Multi line
|
||||||
Help
|
Help
|
||||||
With useful information.
|
With useful information.
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,11 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
Message with '.
|
Message with '.
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
Message with ".
|
Message with ".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,15 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first <variable>. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The first <variable>. +
|
|
||||||
Multi line
|
Multi line
|
||||||
|
|
||||||
<Help>
|
<Help>
|
||||||
|
|
||||||
With useful information.
|
With useful information.
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second <variable>. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The second <variable>. +
|
|
||||||
Multi line
|
Multi line
|
||||||
<Help>
|
<Help>
|
||||||
With useful information.
|
With useful information.
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: quote"
|
**Default**: quote"
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: quote'"
|
**Default**: quote'"
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: quote\"\'
|
**Default**: quote\"\'
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: quote'
|
**Default**: quote'
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: get information test_information
|
**Default**: get information test_information
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,50 +1,32 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
**Example**: test
|
**Example**: test
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Default**: value +
|
**Default**: value +
|
||||||
**Example**: test
|
**Example**: test
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The third variable. +
|
|
||||||
**Examples**:
|
**Examples**:
|
||||||
|
|
||||||
* test1
|
* test1
|
||||||
* test2
|
* test2
|
||||||
|
|
| **var4** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | The forth variable. +
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
|
|
||||||
The forth variable. +
|
|
||||||
**Examples**:
|
**Examples**:
|
||||||
|
|
||||||
* null
|
* null
|
||||||
* test1
|
* test1
|
||||||
* test2
|
* test2
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Default**: true +
|
**Default**: true +
|
||||||
**Example**: false
|
**Example**: false
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Examples**:
|
**Examples**:
|
||||||
|
|
||||||
* test1
|
* test1
|
||||||
|
|
|
||||||
|
|
@ -10,14 +10,14 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar3[0m │ The third variable. │
|
│ [1mvar3[0m │ The third variable. │
|
||||||
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mExamples[0m: │
|
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mExamples[0m: │
|
||||||
│ │ - test1 │
|
│ │ • test1 │
|
||||||
│ │ - test2 │
|
│ │ • test2 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar4[0m │ The forth variable. │
|
│ [1mvar4[0m │ The forth variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m │ [1mExamples[0m: │
|
│ [1;7m string [0m [1;7m standard [0m │ [1mExamples[0m: │
|
||||||
│ │ - null │
|
│ │ • null │
|
||||||
│ │ - test1 │
|
│ │ • test1 │
|
||||||
│ │ - test2 │
|
│ │ • test2 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar5[0m │ The fifth variable. │
|
│ [1mvar5[0m │ The fifth variable. │
|
||||||
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: true │
|
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: true │
|
||||||
|
|
@ -25,6 +25,6 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar6[0m │ The sixth variable. │
|
│ [1mvar6[0m │ The sixth variable. │
|
||||||
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m unique [0m │ [1mExamples[0m: │
|
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m unique [0m │ [1mExamples[0m: │
|
||||||
│ [1;7mmultiple [0m │ - test1 │
|
│ [1;7mmultiple [0m │ • test1 │
|
||||||
│ │ - test2 │
|
│ │ • test2 │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,20 +1,14 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` | A first variable. +
|
||||||
**variable1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` |
|
|
||||||
A first variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* val1
|
* val1
|
||||||
* val2
|
* val2
|
||||||
|
|
| **variable2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` | A second variable. +
|
||||||
**variable2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` |
|
|
||||||
A second variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* val1
|
* val1
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,11 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvariable1[0m │ A first variable. │
|
│ [1mvariable1[0m │ A first variable. │
|
||||||
│ [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m unique [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m unique [0m │ [1mChoices[0m: │
|
||||||
│ [1;7mmultiple [0m │ - val1 │
|
│ [1;7mmultiple [0m │ • val1 │
|
||||||
│ │ - val2 │
|
│ │ • val2 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvariable2[0m │ A second variable. │
|
│ [1mvariable2[0m │ A second variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m unique [0m [1;7m [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m unique [0m [1;7m [0m │ [1mChoices[0m: │
|
||||||
│ [1;7mmultiple [0m │ - val1 │
|
│ [1;7mmultiple [0m │ • val1 │
|
||||||
│ │ - val2 │
|
│ │ • val2 │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,23 +1,14 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **source_variable_1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The first source variable. +
|
||||||
**source_variable_1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The first source variable. +
|
|
||||||
**Default**: val1
|
**Default**: val1
|
||||||
|
|
| **source_variable_2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second source variable. +
|
||||||
**source_variable_2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The second source variable. +
|
|
||||||
**Default**: val2
|
**Default**: val2
|
||||||
|
|
| **my_variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
|
||||||
**my_variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* the value of the variable "source_variable_1"
|
* the value of the variable "source_variable_1"
|
||||||
|
|
|
||||||
|
|
@ -9,9 +9,9 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mmy_variable[0m │ A variable. │
|
│ [1mmy_variable[0m │ A variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
||||||
│ │ - the value of the variable │
|
│ │ • the value of the variable │
|
||||||
│ │ "source_variable_1" │
|
│ │ "source_variable_1" │
|
||||||
│ │ - the value of the variable │
|
│ │ • the value of the variable │
|
||||||
│ │ "source_variable_2" │
|
│ │ "source_variable_2" │
|
||||||
│ │ [1mDefault[0m: val1 │
|
│ │ [1mDefault[0m: val1 │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: concat all parameters
|
**Default**: concat all parameters
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
|
||||||
**var** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: returns the information
|
**Default**: returns the information
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,10 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
|
||||||
**var1** +
|
| **var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
|
||||||
A first variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**: depends on a calculation
|
**Default**: depends on a calculation
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,10 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **my_variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1
|
||||||
**my_variable** +
|
| **my_calculated_variable** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**:
|
||||||
**Default**: val1
|
|
||||||
|
|
|
||||||
|
|
||||||
**my_calculated_variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
**Default**:
|
|
||||||
|
|
||||||
* the value of the variable "my_variable" if it is defined
|
* the value of the variable "my_variable" if it is defined
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,6 @@
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mmy_calculated_variable[0m │ [1mDefault[0m: │
|
│ [1mmy_calculated_variable[0m │ [1mDefault[0m: │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ - the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ • the value of the variable │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable" if it is defined │
|
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable" if it is defined │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,10 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **my_variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1
|
||||||
**my_variable** +
|
| **my_calculated_variable** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**:
|
||||||
**Default**: val1
|
|
||||||
|
|
|
||||||
|
|
||||||
**my_calculated_variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
**Default**:
|
|
||||||
|
|
||||||
* the value of the variable "my_variable" if it is defined
|
* the value of the variable "my_variable" if it is defined
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,6 @@
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mmy_calculated_variable[0m │ [1mDefault[0m: │
|
│ [1mmy_calculated_variable[0m │ [1mDefault[0m: │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ - the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ • the value of the variable │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable" if it is defined │
|
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable" if it is defined │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,10 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **my_variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1
|
||||||
**my_variable** +
|
| **my_calculated_variable** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**:
|
||||||
**Default**: val1
|
|
||||||
|
|
|
||||||
|
|
||||||
**my_calculated_variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
**Default**:
|
|
||||||
|
|
||||||
* the value of the variable "my_variable" if it is defined
|
* the value of the variable "my_variable" if it is defined
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,6 @@
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m │ │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mmy_calculated_variable[0m │ [1mDefault[0m: │
|
│ [1mmy_calculated_variable[0m │ [1mDefault[0m: │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ - the value of the variable │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ • the value of the variable │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable" if it is defined │
|
│ [1;7munique [0m [1;7m multiple [0m │ "my_variable" if it is defined │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,7 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **my_calculated_variable** +
|
||||||
|
|
||||||
**my_calculated_variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
||||||
|
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,12 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **my_variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**:
|
||||||
**my_variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
**Default**:
|
|
||||||
|
|
||||||
* val1
|
* val1
|
||||||
* val2
|
* val2
|
||||||
|
|
| **my_calculated_variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**: the value of the variable "my_variable" if it is defined
|
||||||
**my_calculated_variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
**Default**: the value of the variable "my_variable" if it is defined
|
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,8 @@
|
||||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mmy_variable[0m │ [1mDefault[0m: │
|
│ [1mmy_variable[0m │ [1mDefault[0m: │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ - val1 │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ • val1 │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - val2 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • val2 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mmy_calculated_variable[0m │ [1mDefault[0m: the value of the variable │
|
│ [1mmy_calculated_variable[0m │ [1mDefault[0m: the value of the variable │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ "my_variable" if it is defined │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ "my_variable" if it is defined │
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,11 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | A first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
|
|
||||||
A first variable. +
|
|
||||||
**Default**: returns a value
|
**Default**: returns a value
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**: no
|
**Default**: no
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,10 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
|
||||||
**var1** +
|
| **var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
|
||||||
A first variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**: the value of the information "test_information" of the variable "var1"
|
**Default**: the value of the information "test_information" of the variable "var1"
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,10 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
|
||||||
**var1** +
|
| **var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
|
||||||
A first variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**: the value of the information "test_information" of the variable "var1"
|
**Default**: the value of the information "test_information" of the variable "var1"
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
|
||||||
**var** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Choices**: choice for 0 to 9 +
|
**Choices**: choice for 0 to 9 +
|
||||||
**Default**: 9
|
**Default**: 9
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
|
||||||
**var** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Choices**: choice for 0 to 9 +
|
**Choices**: choice for 0 to 9 +
|
||||||
**Default**: 9
|
**Default**: 9
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
|
|
@ -1,67 +1,43 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The first variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* true
|
* true
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The second variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* true
|
* true
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The third variable. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The third variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* true
|
* true
|
||||||
|
|
| **var4** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The forth variable. +
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The forth variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* false
|
* false
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* false
|
* false
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* false
|
* false
|
||||||
|
|
| **var7** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The seventh variable. +
|
||||||
**var7** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The seventh variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* true
|
* true
|
||||||
|
|
| **var8** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` | The eighth variable. +
|
||||||
**var8** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The eighth variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* true
|
* true
|
||||||
|
|
|
||||||
|
|
@ -3,33 +3,33 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar1[0m │ The first variable. │
|
│ [1mvar1[0m │ The first variable. │
|
||||||
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - true │
|
│ [1;7munique [0m [1;7m multiple [0m │ • true │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ The second variable. │
|
│ [1mvar2[0m │ The second variable. │
|
||||||
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - true │
|
│ [1;7munique [0m [1;7m multiple [0m │ • true │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar3[0m │ The third variable. │
|
│ [1mvar3[0m │ The third variable. │
|
||||||
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - true │
|
│ [1;7munique [0m [1;7m multiple [0m │ • true │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar4[0m │ The forth variable. │
|
│ [1mvar4[0m │ The forth variable. │
|
||||||
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - false │
|
│ [1;7munique [0m [1;7m multiple [0m │ • false │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar5[0m │ The fifth variable. │
|
│ [1mvar5[0m │ The fifth variable. │
|
||||||
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - false │
|
│ [1;7munique [0m [1;7m multiple [0m │ • false │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar6[0m │ The sixth variable. │
|
│ [1mvar6[0m │ The sixth variable. │
|
||||||
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - false │
|
│ [1;7munique [0m [1;7m multiple [0m │ • false │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar7[0m │ The seventh variable. │
|
│ [1mvar7[0m │ The seventh variable. │
|
||||||
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - true │
|
│ [1;7munique [0m [1;7m multiple [0m │ • true │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar8[0m │ The eighth variable. │
|
│ [1mvar8[0m │ The eighth variable. │
|
||||||
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - true │
|
│ [1;7munique [0m [1;7m multiple [0m │ • true │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,10 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **custom1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` | A first custom variable.
|
||||||
**custom1** +
|
| **custom2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` `unique` `multiple` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` | A second custom variable. +
|
||||||
A first custom variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**custom2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A second custom variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* value
|
* value
|
||||||
|
|
|
||||||
|
|
@ -7,5 +7,5 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mcustom2[0m │ A second custom variable. │
|
│ [1mcustom2[0m │ A second custom variable. │
|
||||||
│ [1;7m custom [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m custom [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - value │
|
│ [1;7munique [0m [1;7m multiple [0m │ • value │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,67 +1,43 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The first variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* 0.0
|
* 0.0
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The second variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* 0.0
|
* 0.0
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The third variable. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The third variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* 0.0
|
* 0.0
|
||||||
|
|
| **var4** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The forth variable. +
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The forth variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* 10.1
|
* 10.1
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* 10.1
|
* 10.1
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* 10.1
|
* 10.1
|
||||||
|
|
| **var7** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The seventh variable. +
|
||||||
**var7** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The seventh variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* 0.0
|
* 0.0
|
||||||
|
|
| **var8** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` | The eighth variable. +
|
||||||
**var8** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The eighth variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* 0.0
|
* 0.0
|
||||||
|
|
|
||||||
|
|
@ -3,33 +3,33 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar1[0m │ The first variable. │
|
│ [1mvar1[0m │ The first variable. │
|
||||||
│ [1;7m float [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m float [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - 0.0 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • 0.0 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ The second variable. │
|
│ [1mvar2[0m │ The second variable. │
|
||||||
│ [1;7m float [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m float [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - 0.0 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • 0.0 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar3[0m │ The third variable. │
|
│ [1mvar3[0m │ The third variable. │
|
||||||
│ [1;7m float [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m float [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - 0.0 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • 0.0 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar4[0m │ The forth variable. │
|
│ [1mvar4[0m │ The forth variable. │
|
||||||
│ [1;7m float [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m float [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - 10.1 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • 10.1 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar5[0m │ The fifth variable. │
|
│ [1mvar5[0m │ The fifth variable. │
|
||||||
│ [1;7m float [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m float [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - 10.1 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • 10.1 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar6[0m │ The sixth variable. │
|
│ [1mvar6[0m │ The sixth variable. │
|
||||||
│ [1;7m float [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m float [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - 10.1 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • 10.1 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar7[0m │ The seventh variable. │
|
│ [1mvar7[0m │ The seventh variable. │
|
||||||
│ [1;7m float [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m float [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - 0.0 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • 0.0 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar8[0m │ The eighth variable. │
|
│ [1mvar8[0m │ The eighth variable. │
|
||||||
│ [1;7m float [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m float [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - 0.0 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • 0.0 │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,67 +1,43 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The first variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* 0
|
* 0
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The second variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* 0
|
* 0
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The third variable. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The third variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* 0
|
* 0
|
||||||
|
|
| **var4** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The forth variable. +
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The forth variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* 10
|
* 10
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* 10
|
* 10
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* 10
|
* 10
|
||||||
|
|
| **var7** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The seventh variable. +
|
||||||
**var7** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The seventh variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* 0
|
* 0
|
||||||
|
|
| **var8** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` | The eighth variable. +
|
||||||
**var8** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The eighth variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* 0
|
* 0
|
||||||
|
|
|
||||||
|
|
@ -3,33 +3,33 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar1[0m │ The first variable. │
|
│ [1mvar1[0m │ The first variable. │
|
||||||
│ [1;7m integer [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m integer [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - 0 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • 0 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ The second variable. │
|
│ [1mvar2[0m │ The second variable. │
|
||||||
│ [1;7m integer [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m integer [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - 0 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • 0 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar3[0m │ The third variable. │
|
│ [1mvar3[0m │ The third variable. │
|
||||||
│ [1;7m integer [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m integer [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - 0 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • 0 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar4[0m │ The forth variable. │
|
│ [1mvar4[0m │ The forth variable. │
|
||||||
│ [1;7m integer [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m integer [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - 10 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • 10 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar5[0m │ The fifth variable. │
|
│ [1mvar5[0m │ The fifth variable. │
|
||||||
│ [1;7m integer [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m integer [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - 10 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • 10 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar6[0m │ The sixth variable. │
|
│ [1mvar6[0m │ The sixth variable. │
|
||||||
│ [1;7m integer [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m integer [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - 10 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • 10 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar7[0m │ The seventh variable. │
|
│ [1mvar7[0m │ The seventh variable. │
|
||||||
│ [1;7m integer [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m integer [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - 0 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • 0 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar8[0m │ The eighth variable. │
|
│ [1mvar8[0m │ The eighth variable. │
|
||||||
│ [1;7m integer [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m integer [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - 0 │
|
│ [1;7munique [0m [1;7m multiple [0m │ • 0 │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,7 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` `unique` `multiple` | The first variable.
|
||||||
**var** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `basic` `mandatory` `unique` `multiple` |
|
|
||||||
The first variable.
|
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The second variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The second variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* value
|
* value
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,6 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar1[0m │ The second variable. │
|
│ [1mvar1[0m │ The second variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - value │
|
│ [1;7munique [0m [1;7m multiple [0m │ • value │
|
||||||
│ │ - null │
|
│ │ • null │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,58 +1,34 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The first variable.
|
||||||
**var1** +
|
| **var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The second variable.
|
||||||
The first variable.
|
| **var3** +
|
||||||
|
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The third variable.
|
||||||
|
| **var4** +
|
||||||
**var2** +
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The forth variable. +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` |
|
|
||||||
The second variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` |
|
|
||||||
The third variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The forth variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* value
|
* value
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* value
|
* value
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* value
|
* value
|
||||||
|
|
| **var7** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The seventh variable. +
|
||||||
**var7** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The seventh variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* value
|
* value
|
||||||
|
|
| **var8** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The eighth variable. +
|
||||||
**var8** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The eighth variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* value
|
* value
|
||||||
|
|
|
||||||
|
|
@ -15,21 +15,21 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar4[0m │ The forth variable. │
|
│ [1mvar4[0m │ The forth variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - value │
|
│ [1;7munique [0m [1;7m multiple [0m │ • value │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar5[0m │ The fifth variable. │
|
│ [1mvar5[0m │ The fifth variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - value │
|
│ [1;7munique [0m [1;7m multiple [0m │ • value │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar6[0m │ The sixth variable. │
|
│ [1mvar6[0m │ The sixth variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - value │
|
│ [1;7munique [0m [1;7m multiple [0m │ • value │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar7[0m │ The seventh variable. │
|
│ [1mvar7[0m │ The seventh variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - value │
|
│ [1;7munique [0m [1;7m multiple [0m │ • value │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar8[0m │ The eighth variable. │
|
│ [1mvar8[0m │ The eighth variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - value │
|
│ [1;7munique [0m [1;7m multiple [0m │ • value │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,16 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The variable. +
|
|
||||||
**Validator**: needs exactly 3 values +
|
**Validator**: needs exactly 3 values +
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* val1
|
* val1
|
||||||
* val2
|
* val2
|
||||||
* val3
|
* val3
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | The variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
The variable. +
|
|
||||||
**Validators**:
|
**Validators**:
|
||||||
|
|
||||||
* needs a minimum of 1 values
|
* needs a minimum of 1 values
|
||||||
|
|
|
||||||
|
|
@ -4,15 +4,15 @@
|
||||||
│ [1mvar1[0m │ The variable. │
|
│ [1mvar1[0m │ The variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mValidator[0m: needs exactly 3 values │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mValidator[0m: needs exactly 3 values │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ [1mDefault[0m: │
|
│ [1;7munique [0m [1;7m multiple [0m │ [1mDefault[0m: │
|
||||||
│ │ - val1 │
|
│ │ • val1 │
|
||||||
│ │ - val2 │
|
│ │ • val2 │
|
||||||
│ │ - val3 │
|
│ │ • val3 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ The variable. │
|
│ [1mvar2[0m │ The variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mValidators[0m: │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mValidators[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - needs a minimum of 1 values │
|
│ [1;7munique [0m [1;7m multiple [0m │ • needs a minimum of 1 values │
|
||||||
│ │ - needs a maximum of 4 values │
|
│ │ • needs a maximum of 4 values │
|
||||||
│ │ [1mDefault[0m: │
|
│ │ [1mDefault[0m: │
|
||||||
│ │ - val4 │
|
│ │ • val4 │
|
||||||
│ │ - val5 │
|
│ │ • val5 │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* quote"
|
* quote"
|
||||||
|
|
|
||||||
|
|
@ -3,5 +3,5 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvariable[0m │ A variable. │
|
│ [1mvariable[0m │ A variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - quote" │
|
│ [1;7munique [0m [1;7m multiple [0m │ • quote" │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* quote'"
|
* quote'"
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue