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