feat: use blockquote for family description
This commit is contained in:
parent
4f475be53e
commit
d0915ff83d
6956 changed files with 33658 additions and 52787 deletions
|
|
@ -18,6 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
from typing import List
|
from typing import List
|
||||||
from ..utils import CommonFormatter, dump
|
from ..utils import CommonFormatter, dump
|
||||||
|
from ..i18n import _
|
||||||
|
|
||||||
|
|
||||||
class Formatter(CommonFormatter):
|
class Formatter(CommonFormatter):
|
||||||
|
|
@ -52,7 +53,7 @@ class Formatter(CommonFormatter):
|
||||||
string += line
|
string += line
|
||||||
|
|
||||||
previous = line
|
previous = line
|
||||||
return "\n" + string
|
return string
|
||||||
|
|
||||||
def bold(
|
def bold(
|
||||||
self,
|
self,
|
||||||
|
|
@ -92,7 +93,9 @@ class Formatter(CommonFormatter):
|
||||||
def list(
|
def list(
|
||||||
self,
|
self,
|
||||||
choices: list,
|
choices: list,
|
||||||
|
*,
|
||||||
inside_table: bool=True,
|
inside_table: bool=True,
|
||||||
|
type_: str="variable",
|
||||||
) -> str:
|
) -> str:
|
||||||
"""Display a liste of element"""
|
"""Display a liste of element"""
|
||||||
prefix = "\n\n* "
|
prefix = "\n\n* "
|
||||||
|
|
@ -144,3 +147,13 @@ class Formatter(CommonFormatter):
|
||||||
) -> str:
|
) -> str:
|
||||||
"""verify if a text is a list"""
|
"""verify if a text is a list"""
|
||||||
return txt.strip().startswith("* ")
|
return txt.strip().startswith("* ")
|
||||||
|
|
||||||
|
def family_informations(self) -> str:
|
||||||
|
info = self.bold(f"🛈 {_('Informations')}")
|
||||||
|
return f"====\n{info}\n\n"
|
||||||
|
|
||||||
|
def end_family_informations(self) -> str:
|
||||||
|
return f"\n====\n"
|
||||||
|
|
||||||
|
def family_informations_ends_line(self) -> str:
|
||||||
|
return " +\n"
|
||||||
|
|
|
||||||
|
|
@ -19,11 +19,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
from typing import List
|
from typing import List
|
||||||
|
|
||||||
from ..i18n import _
|
from ..i18n import _
|
||||||
from ..utils import dump, CommonFormatter, ENTER
|
from ..utils import dump, CommonFormatter
|
||||||
|
|
||||||
|
|
||||||
class Formatter(CommonFormatter):
|
class Formatter(CommonFormatter):
|
||||||
"""The markdown (for github) formatter"""
|
"""The console formatter"""
|
||||||
|
|
||||||
name = "console"
|
name = "console"
|
||||||
level = 10
|
level = 10
|
||||||
|
|
@ -72,7 +72,7 @@ class Formatter(CommonFormatter):
|
||||||
) -> str:
|
) -> str:
|
||||||
"""Display family name as a title"""
|
"""Display family name as a title"""
|
||||||
space = " " * (2 * (level - 1))
|
space = " " * (2 * (level - 1))
|
||||||
return f"{ENTER}{space}[title{level}]{title}[/title{level}]{ENTER}"
|
return f"{space}[title{level}]{title}[/title{level}]\n"
|
||||||
|
|
||||||
def join(
|
def join(
|
||||||
self,
|
self,
|
||||||
|
|
@ -119,10 +119,15 @@ class Formatter(CommonFormatter):
|
||||||
def list(
|
def list(
|
||||||
self,
|
self,
|
||||||
choices: list,
|
choices: list,
|
||||||
|
*,
|
||||||
inside_table: bool=True,
|
inside_table: bool=True,
|
||||||
|
type_: str="variable",
|
||||||
) -> str:
|
) -> str:
|
||||||
"""Display a liste of element"""
|
"""Display a liste of element"""
|
||||||
char = f"{self.enter_table}- "
|
if type_ == "variable":
|
||||||
|
char = f"{self.enter_table} • "
|
||||||
|
else:
|
||||||
|
char = f"\n{self.family_informations_starts_line()} • "
|
||||||
ret = ""
|
ret = ""
|
||||||
for choice in choices:
|
for choice in choices:
|
||||||
if not isinstance(choice, str):
|
if not isinstance(choice, str):
|
||||||
|
|
@ -179,3 +184,17 @@ class Formatter(CommonFormatter):
|
||||||
for data in datas:
|
for data in datas:
|
||||||
table.add_row(str(data[0]), data[1])
|
table.add_row(str(data[0]), data[1])
|
||||||
return table
|
return table
|
||||||
|
|
||||||
|
def family_informations(self) -> str:
|
||||||
|
info = "[blue]" + self.bold(f"🛈 {_('Informations')}") + "[/blue]"
|
||||||
|
starts_line = self.family_informations_starts_line()
|
||||||
|
return starts_line + info + "\n" + starts_line
|
||||||
|
|
||||||
|
def family_informations_starts_line(self) -> str:
|
||||||
|
return "[blue]▌ [/blue]"
|
||||||
|
|
||||||
|
def family_informations_ends_line(self) -> str:
|
||||||
|
return "\n"
|
||||||
|
|
||||||
|
def end_family_informations(self) -> str:
|
||||||
|
return "\n"
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,7 @@ from typing import List
|
||||||
from html import escape
|
from html import escape
|
||||||
|
|
||||||
from ..utils import dump, CommonFormatter
|
from ..utils import dump, CommonFormatter
|
||||||
|
from ..i18n import _
|
||||||
|
|
||||||
|
|
||||||
class Formatter(CommonFormatter):
|
class Formatter(CommonFormatter):
|
||||||
|
|
@ -89,13 +90,18 @@ class Formatter(CommonFormatter):
|
||||||
def list(
|
def list(
|
||||||
self,
|
self,
|
||||||
choices: list,
|
choices: list,
|
||||||
|
*,
|
||||||
inside_table: bool=True,
|
inside_table: bool=True,
|
||||||
|
type_: str="variable",
|
||||||
):
|
):
|
||||||
"""Display a liste of element"""
|
"""Display a liste of element"""
|
||||||
if inside_table:
|
if type_ == 'variable':
|
||||||
char = f"{self.enter_table}- "
|
if inside_table:
|
||||||
|
char = f"{self.enter_table}• "
|
||||||
|
else:
|
||||||
|
char = "\n- "
|
||||||
else:
|
else:
|
||||||
char = "\n- "
|
char = f"\n{self.family_informations_starts_line()}- "
|
||||||
ret = ""
|
ret = ""
|
||||||
for choice in choices:
|
for choice in choices:
|
||||||
if not isinstance(choice, str):
|
if not isinstance(choice, str):
|
||||||
|
|
@ -153,17 +159,23 @@ class Formatter(CommonFormatter):
|
||||||
def to_phrase(self, text: str) -> str:
|
def to_phrase(self, text: str) -> str:
|
||||||
return escape(text)
|
return escape(text)
|
||||||
|
|
||||||
def family_to_string(self, *args, **kwargs) -> List[str]:
|
def family_informations(self) -> str:
|
||||||
lst = super().family_to_string(*args, **kwargs)
|
info = self.bold(f"🛈 {_('Informations')}") # ℹ️
|
||||||
if self.name != 'github':
|
starts_line = self.family_informations_starts_line()
|
||||||
return lst
|
return starts_line + info + "\n" + starts_line + "\n"
|
||||||
ret = lst.pop(0)
|
|
||||||
if lst:
|
|
||||||
content = "\n".join([l.strip() for l in lst]).strip()
|
|
||||||
ret += "\n\n| Informations |\n"
|
|
||||||
ret += "|:------------|\n"
|
|
||||||
ret += "| " + content.replace("\n", "<br>") + " |\n\n"
|
|
||||||
return [ret]
|
|
||||||
|
|
||||||
def after_family_properties(self) -> str:
|
def family_informations_starts_line(self) -> str:
|
||||||
return "<br/>"
|
return "> "
|
||||||
|
|
||||||
|
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]
|
||||||
|
|
|
||||||
|
|
@ -27,13 +27,6 @@ class Formatter(GithubFormatter):
|
||||||
name = "gitlab"
|
name = "gitlab"
|
||||||
level = 51
|
level = 51
|
||||||
|
|
||||||
def namespace_to_title(self, informations: dict, level: int) -> str:
|
|
||||||
"""manage namespace family"""
|
|
||||||
return self.title(
|
|
||||||
self.get_description("family", informations, {}, None),
|
|
||||||
level,
|
|
||||||
)
|
|
||||||
|
|
||||||
def title(self, title: str, level: int) -> str:
|
def title(self, title: str, level: int) -> str:
|
||||||
# self.max_line_variable = 0
|
# self.max_line_variable = 0
|
||||||
return "<details><summary>" + title + "</summary>\n\n"
|
return "<details><summary>" + title + "</summary>\n\n"
|
||||||
|
|
@ -65,16 +58,7 @@ class Formatter(GithubFormatter):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def family_informations(self) -> str:
|
def family_informations(self) -> str:
|
||||||
return f">>> [!note] {_('Informations')}\n"
|
return f"> [!note] 🛈 {_('Informations')}\n"
|
||||||
|
|
||||||
def end_family_informations(self) -> str:
|
|
||||||
return f"\n>>>\n"
|
|
||||||
|
|
||||||
def after_family_paths(self) -> str:
|
|
||||||
return "<br/>"
|
|
||||||
|
|
||||||
def after_family_properties(self) -> str:
|
|
||||||
return "<br/>"
|
|
||||||
|
|
||||||
def table_header(self, lst):
|
def table_header(self, lst):
|
||||||
"""Manage the header of a table"""
|
"""Manage the header of a table"""
|
||||||
|
|
|
||||||
|
|
@ -92,7 +92,9 @@ class Formatter(CommonFormatter):
|
||||||
def list(
|
def list(
|
||||||
self,
|
self,
|
||||||
choices: list,
|
choices: list,
|
||||||
|
*,
|
||||||
inside_table: bool=True,
|
inside_table: bool=True,
|
||||||
|
type_: str="variable",
|
||||||
) -> str:
|
) -> str:
|
||||||
"""Display a liste of element"""
|
"""Display a liste of element"""
|
||||||
prefix = "<ul>"
|
prefix = "<ul>"
|
||||||
|
|
|
||||||
|
|
@ -244,7 +244,9 @@ class CommonFormatter:
|
||||||
def list(
|
def list(
|
||||||
self,
|
self,
|
||||||
choices: list,
|
choices: list,
|
||||||
|
*,
|
||||||
inside_table: bool=True,
|
inside_table: bool=True,
|
||||||
|
type_: str="variable",
|
||||||
) -> str:
|
) -> str:
|
||||||
"""Display a liste of element"""
|
"""Display a liste of element"""
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|
@ -310,12 +312,6 @@ class CommonFormatter:
|
||||||
ret_paths.append(self.bold(self.anchor(path, path)))
|
ret_paths.append(self.bold(self.anchor(path, path)))
|
||||||
return ret_paths
|
return ret_paths
|
||||||
|
|
||||||
def after_family_paths(self) -> str:
|
|
||||||
return ENTER
|
|
||||||
|
|
||||||
def after_family_properties(self) -> str:
|
|
||||||
return ENTER
|
|
||||||
|
|
||||||
def table_header(
|
def table_header(
|
||||||
self,
|
self,
|
||||||
lst: list,
|
lst: list,
|
||||||
|
|
@ -351,26 +347,30 @@ class CommonFormatter:
|
||||||
if self.with_family:
|
if self.with_family:
|
||||||
if value["type"] == "namespace":
|
if value["type"] == "namespace":
|
||||||
if ori_level is None:
|
if ori_level is None:
|
||||||
ori_level = level
|
# ori_level = level
|
||||||
level += 1
|
# level += 1
|
||||||
informations = value["informations"]
|
namespace = True
|
||||||
msg.append(self.namespace_to_title(informations, ori_level))
|
# informations = value["informations"]
|
||||||
msg.append(self.family_informations())
|
# msg.append(self.namespace_to_title(informations, ori_level))
|
||||||
msg.extend(self.display_paths(informations, {}, None))
|
# msg.append(self.family_informations())
|
||||||
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(
|
# properties = self.property_to_string(informations, {}, {})[1]
|
||||||
self.property_to_string(informations, {}, {})[1] + ENTER
|
# if properties:
|
||||||
)
|
# msg.append(self.family_informations_ends_line())
|
||||||
msg.append(self.end_family_informations())
|
# msg.append(
|
||||||
msg.extend(self.dict_to_dict(value["children"], level))
|
# self.family_informations_starts_line(self.property_to_string(informations, {}, {})[1])
|
||||||
msg.append(self.end_namespace(ori_level))
|
# )
|
||||||
|
# msg.append(self.end_family_informations())
|
||||||
|
# msg.extend(self.dict_to_dict(value["children"], level))
|
||||||
|
# msg.append(self.end_family(ori_level))
|
||||||
else:
|
else:
|
||||||
if table_datas:
|
namespace = False
|
||||||
msg.append(self.table(table_datas))
|
if table_datas:
|
||||||
table_datas = []
|
msg.append(self.table(table_datas))
|
||||||
msg.extend(self.family_to_string(value["informations"], level))
|
table_datas = []
|
||||||
msg.extend(self.dict_to_dict(value["children"], level + 1))
|
msg.extend(self.family_to_string(value["informations"], level, namespace))
|
||||||
msg.append(self.end_family(level))
|
msg.extend(self.dict_to_dict(value["children"], level + 1))
|
||||||
|
msg.append(self.end_family(level))
|
||||||
else:
|
else:
|
||||||
self.dict_to_dict(
|
self.dict_to_dict(
|
||||||
value["children"], level + 1, ori_table_datas=table_datas
|
value["children"], level + 1, ori_table_datas=table_datas
|
||||||
|
|
@ -383,24 +383,20 @@ class CommonFormatter:
|
||||||
def namespace_to_title(self, informations: dict, level: int) -> str:
|
def namespace_to_title(self, informations: dict, level: int) -> str:
|
||||||
"""manage namespace family"""
|
"""manage namespace family"""
|
||||||
return self.title(
|
return self.title(
|
||||||
_('Variables for "{0}"').format(
|
self.get_description("family", informations, {}, None),
|
||||||
self.get_description("family", informations, {}, None)
|
|
||||||
),
|
|
||||||
level,
|
level,
|
||||||
)
|
)
|
||||||
|
|
||||||
def end_namespace(self, level: int) -> str:
|
def family_to_string(self, informations: dict, level: int, namespace: bool) -> str:
|
||||||
return self.end_family(level)
|
|
||||||
|
|
||||||
def family_to_string(self, informations: dict, level: int) -> str:
|
|
||||||
"""manage other family type"""
|
"""manage other family type"""
|
||||||
msg = []
|
if namespace:
|
||||||
|
ret = [self.namespace_to_title(informations, level)]
|
||||||
|
else:
|
||||||
|
ret = [self.title(self.get_description("family", informations, {}, None), level)]
|
||||||
fam_info = self.family_informations()
|
fam_info = self.family_informations()
|
||||||
if fam_info:
|
if fam_info:
|
||||||
msg.append(fam_info)
|
ret.append(fam_info)
|
||||||
msg.append(
|
msg = self.display_paths(informations, {}, None)
|
||||||
self.join(self.display_paths(informations, {}, None)) # + self.after_family_paths()
|
|
||||||
)
|
|
||||||
helps = informations.get("help")
|
helps = informations.get("help")
|
||||||
if helps:
|
if helps:
|
||||||
for help_ in helps:
|
for help_ in helps:
|
||||||
|
|
@ -410,16 +406,21 @@ class CommonFormatter:
|
||||||
if property_str:
|
if property_str:
|
||||||
msg.append(property_str)
|
msg.append(property_str)
|
||||||
if calculated_properties:
|
if calculated_properties:
|
||||||
msg.append(
|
msg.append(self.join(calculated_properties)
|
||||||
self.join(calculated_properties)
|
|
||||||
)
|
)
|
||||||
if "identifier" in informations:
|
if "identifier" in informations:
|
||||||
msg.append(
|
msg.append(
|
||||||
self.section(_("Identifiers"), informations["identifier"])
|
self.section(_("Identifiers"), informations["identifier"], type_="family")
|
||||||
)
|
)
|
||||||
return [self.title(self.get_description("family", informations, {}, None), level),
|
starts_line = self.family_informations_starts_line()
|
||||||
self.after_family_properties().join(msg) + self.end_family_informations(),
|
ret.append(self.family_informations_ends_line().join([starts_line + m for m in msg]) + self.end_family_informations())
|
||||||
]
|
return ret
|
||||||
|
|
||||||
|
def family_informations_starts_line(self) -> str:
|
||||||
|
return ""
|
||||||
|
|
||||||
|
def family_informations_ends_line(self) -> str:
|
||||||
|
return ENTER
|
||||||
|
|
||||||
def end_family(self, level: int) -> str:
|
def end_family(self, level: int) -> str:
|
||||||
return ""
|
return ""
|
||||||
|
|
@ -537,7 +538,7 @@ class CommonFormatter:
|
||||||
) -> list:
|
) -> list:
|
||||||
"""Collect string for the first column"""
|
"""Collect string for the first column"""
|
||||||
multi, properties = self.property_to_string(
|
multi, properties = self.property_to_string(
|
||||||
informations, calculated_properties, modified_attributes
|
informations, calculated_properties, modified_attributes,
|
||||||
)
|
)
|
||||||
first_col = [
|
first_col = [
|
||||||
self.join(self.display_paths(informations, modified_attributes, force_identifiers, is_variable=True)),
|
self.join(self.display_paths(informations, modified_attributes, force_identifiers, is_variable=True)),
|
||||||
|
|
@ -881,6 +882,7 @@ class CommonFormatter:
|
||||||
name: str,
|
name: str,
|
||||||
msg: str,
|
msg: str,
|
||||||
submessage: str = "",
|
submessage: str = "",
|
||||||
|
type_ = "variable",
|
||||||
) -> str:
|
) -> str:
|
||||||
"""Return something like Name: msg"""
|
"""Return something like Name: msg"""
|
||||||
submessage, msg = self.message_to_string(msg, submessage)
|
submessage, msg = self.message_to_string(msg, submessage)
|
||||||
|
|
@ -888,7 +890,7 @@ class CommonFormatter:
|
||||||
if len(msg) == 1:
|
if len(msg) == 1:
|
||||||
submessage, elt = self.message_to_string(msg[0], submessage)
|
submessage, elt = self.message_to_string(msg[0], submessage)
|
||||||
if isinstance(elt, list):
|
if isinstance(elt, list):
|
||||||
submessage += self.list(elt)
|
submessage += self.list(elt, type_=type_)
|
||||||
else:
|
else:
|
||||||
submessage += elt
|
submessage += elt
|
||||||
else:
|
else:
|
||||||
|
|
@ -896,7 +898,7 @@ class CommonFormatter:
|
||||||
for p in msg:
|
for p in msg:
|
||||||
submessage, elt = self.message_to_string(p, submessage)
|
submessage, elt = self.message_to_string(p, submessage)
|
||||||
lst.append(elt)
|
lst.append(elt)
|
||||||
submessage += self.list(lst)
|
submessage += self.list(lst, type_=type_)
|
||||||
msg = ""
|
msg = ""
|
||||||
if not isinstance(msg, str):
|
if not isinstance(msg, str):
|
||||||
submessage += dump(msg)
|
submessage += dump(msg)
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,7 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **version** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable.
|
||||||
**version** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
A variable.
|
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,7 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **empty** +
|
||||||
|
|
||||||
**empty** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
||||||
|
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,11 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A first variable. +
|
|
||||||
**Default**: no
|
**Default**: no
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**: the value of var1
|
**Default**: the value of var1
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,15 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A first variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* no
|
* no
|
||||||
* yes
|
* yes
|
||||||
* maybe
|
* maybe
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**: the value of _.var1
|
**Default**: the value of _.var1
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------|
|
||||||
| **<a id="var1" name="var1">var1</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A first variable.<br/>**Default**: <br/>- no<br/>- yes<br/>- maybe |
|
| **<a id="var1" name="var1">var1</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A first variable.<br/>**Default**: <br/>• no<br/>• yes<br/>• maybe |
|
||||||
| **<a id="var2" name="var2">var2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: the value of _.var1 |
|
| **<a id="var2" name="var2">var2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: the value of _.var1 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A first variable.<br/>**Default**: <br/>- no<br/>- yes<br/>- maybe |
|
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A first variable.<br/>**Default**: <br/>• no<br/>• yes<br/>• maybe |
|
||||||
| **var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: the value of _.var1 |
|
| **var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: the value of _.var1 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,9 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar1[0m │ A first variable. │
|
│ [1mvar1[0m │ A first variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - no │
|
│ [1;7munique [0m [1;7m multiple [0m │ • no │
|
||||||
│ │ - yes │
|
│ │ • yes │
|
||||||
│ │ - maybe │
|
│ │ • maybe │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ A second variable. │
|
│ [1mvar2[0m │ A second variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of _.var1 │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: the value of _.var1 │
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**: depends on a calculation
|
**Default**: depends on a calculation
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,11 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` |
|
|
||||||
A first variable. +
|
|
||||||
**Validator**: the domain name can be an IP
|
**Validator**: the domain name can be an IP
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**: the value of the variable "var1"
|
**Default**: the value of the variable "var1"
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,10 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
|
||||||
**var1** +
|
| **var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
|
||||||
A first variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**: value of a variable!
|
**Default**: value of a variable!
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,24 +1,15 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
|
||||||
**var1** +
|
| **var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
|
||||||
A first variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**: value
|
**Default**: value
|
||||||
of
|
of
|
||||||
a
|
a
|
||||||
variable!
|
variable!
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A new variable.
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
A new variable.
|
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,11 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` | A first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `basic` `mandatory` `unique` `multiple` |
|
|
||||||
A first variable. +
|
|
||||||
**Validator**: the domain name can be an IP
|
**Validator**: the domain name can be an IP
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` | A second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A second variable. +
|
|
||||||
**Validator**: the domain name can be an IP +
|
**Validator**: the domain name can be an IP +
|
||||||
**Default**: the value of the variable "var1"
|
**Default**: the value of the variable "var1"
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,9 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable.
|
||||||
**var1** +
|
| **var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A variable.
|
||||||
A variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
A variable.
|
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **without_type** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
|
||||||
**without_type** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: non
|
**Default**: non
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,41 +1,23 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
**Default**: true
|
**Default**: true
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Default**: true
|
**Default**: true
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The third variable. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
|
||||||
The third variable. +
|
|
||||||
**Default**: true
|
**Default**: true
|
||||||
|
|
| **var4** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The forth variable. +
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
|
||||||
The forth variable. +
|
|
||||||
**Default**: false
|
**Default**: false
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Default**: false
|
**Default**: false
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Default**: false
|
**Default**: false
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` | A variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: true
|
**Default**: true
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,62 +1,44 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* a
|
* a
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* a
|
* a
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The third variable. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` |
|
|
||||||
The third variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* a
|
* a
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
* null
|
* null
|
||||||
|
|
| **var4** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` | The forth variable. +
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` |
|
|
||||||
The forth variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* null
|
* null
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* a **← (default)**
|
* a **← (default)**
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* 1 **← (default)**
|
* 1 **← (default)**
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|
|
||||||
| **<a id="var1" name="var1">var1</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Choices**: <br/>- a<br/>- b<br/>- c |
|
| **<a id="var1" name="var1">var1</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Choices**: <br/>• a<br/>• b<br/>• c |
|
||||||
| **<a id="var2" name="var2">var2</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable.<br/>**Choices**: <br/>- a<br/>- b<br/>- c |
|
| **<a id="var2" name="var2">var2</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable.<br/>**Choices**: <br/>• a<br/>• b<br/>• c |
|
||||||
| **<a id="var3" name="var3">var3</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The third variable.<br/>**Choices**: <br/>- a<br/>- b<br/>- c<br/>- null |
|
| **<a id="var3" name="var3">var3</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The third variable.<br/>**Choices**: <br/>• a<br/>• b<br/>• c<br/>• null |
|
||||||
| **<a id="var4" name="var4">var4</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The forth variable.<br/>**Choices**: <br/>- null<br/>- b<br/>- c |
|
| **<a id="var4" name="var4">var4</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The forth variable.<br/>**Choices**: <br/>• null<br/>• b<br/>• c |
|
||||||
| **<a id="var5" name="var5">var5</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Choices**: <br/>- a **← (default)**<br/>- b<br/>- c |
|
| **<a id="var5" name="var5">var5</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Choices**: <br/>• a **← (default)**<br/>• b<br/>• c |
|
||||||
| **<a id="var6" name="var6">var6</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.<br/>**Choices**: <br/>- 1 **← (default)**<br/>- 2<br/>- 3 |
|
| **<a id="var6" name="var6">var6</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.<br/>**Choices**: <br/>• 1 **← (default)**<br/>• 2<br/>• 3 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **var1**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Choices**: <br/>- a<br/>- b<br/>- c |
|
| **var1**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Choices**: <br/>• a<br/>• b<br/>• c |
|
||||||
| **var2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable.<br/>**Choices**: <br/>- a<br/>- b<br/>- c |
|
| **var2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The second variable.<br/>**Choices**: <br/>• a<br/>• b<br/>• c |
|
||||||
| **var3**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The third variable.<br/>**Choices**: <br/>- a<br/>- b<br/>- c<br/>- null |
|
| **var3**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The third variable.<br/>**Choices**: <br/>• a<br/>• b<br/>• c<br/>• null |
|
||||||
| **var4**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The forth variable.<br/>**Choices**: <br/>- null<br/>- b<br/>- c |
|
| **var4**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The forth variable.<br/>**Choices**: <br/>• null<br/>• b<br/>• c |
|
||||||
| **var5**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Choices**: <br/>- a **← (default)**<br/>- b<br/>- c |
|
| **var5**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Choices**: <br/>• a **← (default)**<br/>• b<br/>• c |
|
||||||
| **var6**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.<br/>**Choices**: <br/>- 1 **← (default)**<br/>- 2<br/>- 3 |
|
| **var6**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The sixth variable.<br/>**Choices**: <br/>• 1 **← (default)**<br/>• 2<br/>• 3 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,38 +3,38 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar1[0m │ The first variable. │
|
│ [1mvar1[0m │ The first variable. │
|
||||||
│ [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
||||||
│ │ - a │
|
│ │ • a │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ The second variable. │
|
│ [1mvar2[0m │ The second variable. │
|
||||||
│ [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
||||||
│ │ - a │
|
│ │ • a │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar3[0m │ The third variable. │
|
│ [1mvar3[0m │ The third variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m standard [0m │ [1mChoices[0m: │
|
||||||
│ │ - a │
|
│ │ • a │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
│ │ - null │
|
│ │ • null │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar4[0m │ The forth variable. │
|
│ [1mvar4[0m │ The forth variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m standard [0m │ [1mChoices[0m: │
|
||||||
│ │ - null │
|
│ │ • null │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar5[0m │ The fifth variable. │
|
│ [1mvar5[0m │ The fifth variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
||||||
│ │ - a [1m← (default)[0m │
|
│ │ • a [1m← (default)[0m │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar6[0m │ The sixth variable. │
|
│ [1mvar6[0m │ The sixth variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
||||||
│ │ - 1 [1m← (default)[0m │
|
│ │ • 1 [1m← (default)[0m │
|
||||||
│ │ - 2 │
|
│ │ • 2 │
|
||||||
│ │ - 3 │
|
│ │ • 3 │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
|
||||||
**var** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Choices**: choices is 0 to 9 +
|
**Choices**: choices is 0 to 9 +
|
||||||
**Default**: 9
|
**Default**: 9
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,15 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* a
|
* a
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* a
|
* a
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **<a id="var1" name="var1">var1</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Choices**: <br/>- a<br/>- b<br/>- c |
|
| **<a id="var1" name="var1">var1</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Choices**: <br/>• a<br/>• b<br/>• c |
|
||||||
| **<a id="var2" name="var2">var2</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Choices**: <br/>- a<br/>- b<br/>- c<br/>**Default**: the value of the variable "[`The first variable`](#var1)" |
|
| **<a id="var2" name="var2">var2</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Choices**: <br/>• a<br/>• b<br/>• c<br/>**Default**: the value of the variable "[`The first variable`](#var1)" |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **var1**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Choices**: <br/>- a<br/>- b<br/>- c |
|
| **var1**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Choices**: <br/>• a<br/>• b<br/>• c |
|
||||||
| **var2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Choices**: <br/>- a<br/>- b<br/>- c<br/>**Default**: the value of the variable "var1" |
|
| **var2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Choices**: <br/>• a<br/>• b<br/>• c<br/>**Default**: the value of the variable "var1" |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,15 +3,15 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar1[0m │ The first variable. │
|
│ [1mvar1[0m │ The first variable. │
|
||||||
│ [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
||||||
│ │ - a │
|
│ │ • a │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ The second variable. │
|
│ [1mvar2[0m │ The second variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
||||||
│ │ - a │
|
│ │ • a │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
│ │ [1mDefault[0m: the value of the variable │
|
│ │ [1mDefault[0m: the value of the variable │
|
||||||
│ │ "var1" │
|
│ │ "var1" │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,15 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* a
|
* a
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A first variable. +
|
|
||||||
**Choices**: the value of the variable "var1" +
|
**Choices**: the value of the variable "var1" +
|
||||||
**Default**: a
|
**Default**: a
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
|
||||||
| **<a id="var1" name="var1">var1</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: <br/>- a<br/>- b<br/>- c |
|
| **<a id="var1" name="var1">var1</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: <br/>• a<br/>• b<br/>• c |
|
||||||
| **<a id="var2" name="var2">var2</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Choices**: the value of the variable "[`A second variable`](#var1)"<br/>**Default**: a |
|
| **<a id="var2" name="var2">var2</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Choices**: the value of the variable "[`A second variable`](#var1)"<br/>**Default**: a |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: <br/>- a<br/>- b<br/>- c |
|
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: <br/>• a<br/>• b<br/>• c |
|
||||||
| **var2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Choices**: the value of the variable "var1"<br/>**Default**: a |
|
| **var2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Choices**: the value of the variable "var1"<br/>**Default**: a |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,9 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar1[0m │ A second variable. │
|
│ [1mvar1[0m │ A second variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - a │
|
│ [1;7munique [0m [1;7m multiple [0m │ • a │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ A first variable. │
|
│ [1mvar2[0m │ A first variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: the value of the variable │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: the value of the variable │
|
||||||
|
|
|
||||||
|
|
@ -1,28 +1,19 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* a
|
* a
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A first variable. +
|
|
||||||
**Choices**: the value of the variable "var1" +
|
**Choices**: the value of the variable "var1" +
|
||||||
**Default**: a
|
**Default**: a
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A third variable. +
|
|
||||||
**Choices**: the value of the variable "var1" +
|
**Choices**: the value of the variable "var1" +
|
||||||
**Default**: the value of the variable "var2"
|
**Default**: the value of the variable "var2"
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **<a id="var1" name="var1">var1</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: <br/>- a<br/>- b<br/>- c |
|
| **<a id="var1" name="var1">var1</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: <br/>• a<br/>• b<br/>• c |
|
||||||
| **<a id="var2" name="var2">var2</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Choices**: the value of the variable "[`A second variable`](#var1)"<br/>**Default**: a |
|
| **<a id="var2" name="var2">var2</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Choices**: the value of the variable "[`A second variable`](#var1)"<br/>**Default**: a |
|
||||||
| **<a id="var3" name="var3">var3</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.<br/>**Choices**: the value of the variable "[`A second variable`](#var1)"<br/>**Default**: the value of the variable "[`A first variable`](#var2)" |
|
| **<a id="var3" name="var3">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)" |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: <br/>- a<br/>- b<br/>- c |
|
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: <br/>• a<br/>• b<br/>• c |
|
||||||
| **var2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Choices**: the value of the variable "var1"<br/>**Default**: a |
|
| **var2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Choices**: the value of the variable "var1"<br/>**Default**: a |
|
||||||
| **var3**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.<br/>**Choices**: the value of the variable "var1"<br/>**Default**: the value of the variable "var2" |
|
| **var3**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.<br/>**Choices**: the value of the variable "var1"<br/>**Default**: the value of the variable "var2" |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,9 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar1[0m │ A second variable. │
|
│ [1mvar1[0m │ A second variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - a │
|
│ [1;7munique [0m [1;7m multiple [0m │ • a │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ A first variable. │
|
│ [1mvar2[0m │ A first variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: the value of the variable │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: the value of the variable │
|
||||||
|
|
|
||||||
|
|
@ -1,40 +1,32 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | A second variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**:
|
**Default**:
|
||||||
|
|
||||||
* a
|
* a
|
||||||
* b
|
* b
|
||||||
* c
|
* c
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A first variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A first variable. +
|
|
||||||
**Choices**: the value of the variable "var1" +
|
**Choices**: the value of the variable "var1" +
|
||||||
**Default**: a
|
**Default**: a
|
||||||
|====
|
|====
|
||||||
|
|
||||||
== family
|
== family
|
||||||
|
|
||||||
|
====
|
||||||
|
**🛈 Informations**
|
||||||
|
|
||||||
**family**
|
**family** +
|
||||||
|
|
||||||
`standard`
|
`standard`
|
||||||
|
====
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **family.var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A third variable. +
|
||||||
**family.var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A third variable. +
|
|
||||||
**Choices**: the value of the variable "var1" +
|
**Choices**: the value of the variable "var1" +
|
||||||
**Default**: the value of the variable "var2"
|
**Default**: the value of the variable "var2"
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,14 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
|
||||||
| **<a id="var1" name="var1">var1</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: <br/>- a<br/>- b<br/>- c |
|
| **<a id="var1" name="var1">var1</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: <br/>• a<br/>• b<br/>• c |
|
||||||
| **<a id="var2" name="var2">var2</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Choices**: the value of the variable "[`A second variable`](#var1)"<br/>**Default**: a |
|
| **<a id="var2" name="var2">var2</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Choices**: the value of the variable "[`A second variable`](#var1)"<br/>**Default**: a |
|
||||||
|
|
||||||
<details><summary>family</summary>
|
<details><summary>family</summary>
|
||||||
|
|
||||||
>>> [!note] Informations
|
> [!note] 🛈 Informations
|
||||||
<br/>**<a id="family" name="family">family</a>**<br/>`standard`
|
> **<a id="family" name="family">family</a>**\
|
||||||
>>>
|
> `standard`
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **<a id="family.var3" name="family.var3">family.var3</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.<br/>**Choices**: the value of the variable "[`A second variable`](#var1)"<br/>**Default**: the value of the variable "[`A first variable`](#var2)" |
|
| **<a id="family.var3" name="family.var3">family.var3</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.<br/>**Choices**: the value of the variable "[`A second variable`](#var1)"<br/>**Default**: the value of the variable "[`A first variable`](#var2)" |
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,14 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: <br/>- a<br/>- b<br/>- c |
|
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` `unique` `multiple` | A second variable.<br/>**Default**: <br/>• a<br/>• b<br/>• c |
|
||||||
| **var2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Choices**: the value of the variable "var1"<br/>**Default**: a |
|
| **var2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Choices**: the value of the variable "var1"<br/>**Default**: a |
|
||||||
|
|
||||||
# family
|
# family
|
||||||
|
|
||||||
|
> **🛈 Informations**
|
||||||
|
>
|
||||||
| Informations |
|
> **family**\
|
||||||
|:------------|
|
> `standard`
|
||||||
| **family**<br/>`standard` |
|
|
||||||
|
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
|
|
||||||
|
|
@ -3,24 +3,21 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar1[0m │ A second variable. │
|
│ [1mvar1[0m │ A second variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
│ [1;7m string [0m [1;7m standard [0m [1;7m mandatory [0m [1;7m [0m │ [1mDefault[0m: │
|
||||||
│ [1;7munique [0m [1;7m multiple [0m │ - a │
|
│ [1;7munique [0m [1;7m multiple [0m │ • a │
|
||||||
│ │ - b │
|
│ │ • b │
|
||||||
│ │ - c │
|
│ │ • c │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ A first variable. │
|
│ [1mvar2[0m │ A first variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: the value of the variable │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: the value of the variable │
|
||||||
│ │ "var1" │
|
│ │ "var1" │
|
||||||
│ │ [1mDefault[0m: a │
|
│ │ [1mDefault[0m: a │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
||||||
|
|
||||||
[1;4;96mfamily[0m
|
[1;4;96mfamily[0m
|
||||||
|
|
||||||
|
[34m▌ [0m[1;34m🛈 Informations[0m
|
||||||
[1mfamily[0m
|
[34m▌ [0m
|
||||||
|
[34m▌ [0m[1mfamily[0m
|
||||||
[1;7m standard [0m
|
[34m▌ [0m[1;7m standard [0m
|
||||||
|
|
||||||
|
|
||||||
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
||||||
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
┃[1m [0m[1mVariable [0m[1m [0m┃[1m [0m[1mDescription [0m[1m [0m┃
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,10 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **custom1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` | The first variable.
|
||||||
**custom1** +
|
| **custom2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` | The seconf variable. +
|
||||||
The first variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**custom2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[custom]` `standard` `mandatory` |
|
|
||||||
The seconf variable. +
|
|
||||||
**Default**: value
|
**Default**: value
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | A domain name variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` |
|
|
||||||
A domain name variable. +
|
|
||||||
**Default**: my.domain.name
|
**Default**: my.domain.name
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` | A domain name variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[domainname]` `standard` `mandatory` |
|
|
||||||
A domain name variable. +
|
|
||||||
**Validator**: the domain name can be an IP +
|
**Validator**: the domain name can be an IP +
|
||||||
**Default**: my.domain.name
|
**Default**: my.domain.name
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
|
|
@ -1,41 +1,23 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
**Default**: 0.0
|
**Default**: 0.0
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Default**: 0.0
|
**Default**: 0.0
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The third variable. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
|
||||||
The third variable. +
|
|
||||||
**Default**: 0.0
|
**Default**: 0.0
|
||||||
|
|
| **var4** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The forth variable. +
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
|
||||||
The forth variable. +
|
|
||||||
**Default**: 10.1
|
**Default**: 10.1
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Default**: 10.1
|
**Default**: 10.1
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[float]` `standard` `mandatory` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Default**: 10.1
|
**Default**: 10.1
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,41 +1,23 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
**Default**: 0
|
**Default**: 0
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Default**: 0
|
**Default**: 0
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The third variable. +
|
|
||||||
**Default**: 0
|
**Default**: 0
|
||||||
|
|
| **var4** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. +
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
This forth variable. +
|
|
||||||
**Default**: 10
|
**Default**: 10
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Default**: 10
|
**Default**: 10
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Default**: 10
|
**Default**: 10
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,12 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` |
|
|
||||||
An IP. +
|
|
||||||
**Validator**: reserved IP are allowed +
|
**Validator**: reserved IP are allowed +
|
||||||
**Default**: 1.1.1.1
|
**Default**: 1.1.1.1
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` | An IP in CIDR format. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[IP]` `standard` `mandatory` |
|
|
||||||
An IP in CIDR format. +
|
|
||||||
**Validators**:
|
**Validators**:
|
||||||
|
|
||||||
* IP must be in CIDR format
|
* IP must be in CIDR format
|
||||||
|
|
@ -20,11 +14,8 @@ An IP in CIDR format. +
|
||||||
|
|
||||||
**Default**: 1.1.1.1/24 +
|
**Default**: 1.1.1.1/24 +
|
||||||
**Example**: 192.168.0.128/25
|
**Example**: 192.168.0.128/25
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` | An IP in CIDR format with obsolete CIDR type. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[cidr]` `standard` `mandatory` |
|
|
||||||
An IP in CIDR format with obsolete CIDR type. +
|
|
||||||
**Default**: 1.1.1.1/24
|
**Default**: 1.1.1.1/24
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|---------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|---------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **<a id="var1" name="var1">var1</a>**<br/>[`IP`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An IP.<br/>**Validator**: reserved IP are allowed<br/>**Default**: 1.1.1.1 |
|
| **<a id="var1" name="var1">var1</a>**<br/>[`IP`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An IP.<br/>**Validator**: reserved IP are allowed<br/>**Default**: 1.1.1.1 |
|
||||||
| **<a id="var2" name="var2">var2</a>**<br/>[`IP`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An IP in CIDR format.<br/>**Validators**: <br/>- IP must be in CIDR format<br/>- reserved IP are allowed<br/>**Default**: 1.1.1.1/24<br/>**Example**: 192.168.0.128/25 |
|
| **<a id="var2" name="var2">var2</a>**<br/>[`IP`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An IP in CIDR format.<br/>**Validators**: <br/>• IP must be in CIDR format<br/>• reserved IP are allowed<br/>**Default**: 1.1.1.1/24<br/>**Example**: 192.168.0.128/25 |
|
||||||
| **<a id="var3" name="var3">var3</a>**<br/>[`cidr`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An IP in CIDR format with obsolete CIDR type.<br/>**Default**: 1.1.1.1/24 |
|
| **<a id="var3" name="var3">var3</a>**<br/>[`cidr`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An IP in CIDR format with obsolete CIDR type.<br/>**Default**: 1.1.1.1/24 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **var1**<br/>[`IP`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An IP.<br/>**Validator**: reserved IP are allowed<br/>**Default**: 1.1.1.1 |
|
| **var1**<br/>[`IP`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An IP.<br/>**Validator**: reserved IP are allowed<br/>**Default**: 1.1.1.1 |
|
||||||
| **var2**<br/>[`IP`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An IP in CIDR format.<br/>**Validators**: <br/>- IP must be in CIDR format<br/>- reserved IP are allowed<br/>**Default**: 1.1.1.1/24<br/>**Example**: 192.168.0.128/25 |
|
| **var2**<br/>[`IP`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An IP in CIDR format.<br/>**Validators**: <br/>• IP must be in CIDR format<br/>• reserved IP are allowed<br/>**Default**: 1.1.1.1/24<br/>**Example**: 192.168.0.128/25 |
|
||||||
| **var3**<br/>[`cidr`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An IP in CIDR format with obsolete CIDR type.<br/>**Default**: 1.1.1.1/24 |
|
| **var3**<br/>[`cidr`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | An IP in CIDR format with obsolete CIDR type.<br/>**Default**: 1.1.1.1/24 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,8 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ An IP in CIDR format. │
|
│ [1mvar2[0m │ An IP in CIDR format. │
|
||||||
│ [1;7m IP [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
│ [1;7m IP [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
||||||
│ │ - IP must be in CIDR format │
|
│ │ • IP must be in CIDR format │
|
||||||
│ │ - reserved IP are allowed │
|
│ │ • reserved IP are allowed │
|
||||||
│ │ [1mDefault[0m: 1.1.1.1/24 │
|
│ │ [1mDefault[0m: 1.1.1.1/24 │
|
||||||
│ │ [1mExample[0m: 192.168.0.128/25 │
|
│ │ [1mExample[0m: 192.168.0.128/25 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
|
|
|
||||||
|
|
@ -1,24 +1,15 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` |
|
|
||||||
An network. +
|
|
||||||
**Default**: 1.1.1.0
|
**Default**: 1.1.1.0
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` | An network in CIDR format. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network]` `standard` `mandatory` |
|
|
||||||
An network in CIDR format. +
|
|
||||||
**Validator**: network must be in CIDR format +
|
**Validator**: network must be in CIDR format +
|
||||||
**Default**: 1.1.1.0/24
|
**Default**: 1.1.1.0/24
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` | An network in CIDR format with obsolete CIDR type. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[network_cidr]` `standard` `mandatory` |
|
|
||||||
An network in CIDR format with obsolete CIDR type. +
|
|
||||||
**Default**: 1.1.1.0/24
|
**Default**: 1.1.1.0/24
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,41 +1,23 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
**Default**: 0
|
**Default**: 0
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Default**: 0
|
**Default**: 0
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The third variable. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The third variable. +
|
|
||||||
**Default**: 0
|
**Default**: 0
|
||||||
|
|
| **var4** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | This forth variable. +
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
This forth variable. +
|
|
||||||
**Default**: 10
|
**Default**: 10
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Default**: 10
|
**Default**: 10
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[integer]` `standard` `mandatory` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Default**: 10
|
**Default**: 10
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,15 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `basic` `mandatory` | A port variable. +
|
||||||
**variable1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `basic` `mandatory` |
|
|
||||||
A port variable. +
|
|
||||||
**Validators**:
|
**Validators**:
|
||||||
|
|
||||||
* well-known ports (1 to 1023) are allowed
|
* well-known ports (1 to 1023) are allowed
|
||||||
* registred ports (1024 to 49151) are allowed
|
* registred ports (1024 to 49151) are allowed
|
||||||
* private ports (greater than 49152) are allowed
|
* private ports (greater than 49152) are allowed
|
||||||
|
|
| **variable2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with default value. +
|
||||||
**variable2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` |
|
|
||||||
A port variable with default value. +
|
|
||||||
**Validators**:
|
**Validators**:
|
||||||
|
|
||||||
* well-known ports (1 to 1023) are allowed
|
* well-known ports (1 to 1023) are allowed
|
||||||
|
|
@ -23,11 +17,8 @@ A port variable with default value. +
|
||||||
* private ports (greater than 49152) are allowed
|
* private ports (greater than 49152) are allowed
|
||||||
|
|
||||||
**Default**: 8080
|
**Default**: 8080
|
||||||
|
|
| **variable3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` | A port variable with integer default value. +
|
||||||
**variable3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[port]` `standard` `mandatory` |
|
|
||||||
A port variable with integer default value. +
|
|
||||||
**Validators**:
|
**Validators**:
|
||||||
|
|
||||||
* well-known ports (1 to 1023) are allowed
|
* well-known ports (1 to 1023) are allowed
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **<a id="variable1" name="variable1">variable1</a>**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A port variable.<br/>**Validators**: <br/>- well-known ports (1 to 1023) are allowed<br/>- registred ports (1024 to 49151) are allowed<br/>- private ports (greater than 49152) are allowed |
|
| **<a id="variable1" name="variable1">variable1</a>**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A port variable.<br/>**Validators**: <br/>• well-known ports (1 to 1023) are allowed<br/>• registred ports (1024 to 49151) are allowed<br/>• private ports (greater than 49152) are allowed |
|
||||||
| **<a id="variable2" name="variable2">variable2</a>**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with default value.<br/>**Validators**: <br/>- well-known ports (1 to 1023) are allowed<br/>- registred ports (1024 to 49151) are allowed<br/>- private ports (greater than 49152) are allowed<br/>**Default**: 8080 |
|
| **<a id="variable2" name="variable2">variable2</a>**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with default value.<br/>**Validators**: <br/>• well-known ports (1 to 1023) are allowed<br/>• registred ports (1024 to 49151) are allowed<br/>• private ports (greater than 49152) are allowed<br/>**Default**: 8080 |
|
||||||
| **<a id="variable3" name="variable3">variable3</a>**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with integer default value.<br/>**Validators**: <br/>- well-known ports (1 to 1023) are allowed<br/>- registred ports (1024 to 49151) are allowed<br/>- private ports (greater than 49152) are allowed<br/>**Default**: 8080 |
|
| **<a id="variable3" name="variable3">variable3</a>**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with integer default value.<br/>**Validators**: <br/>• well-known ports (1 to 1023) are allowed<br/>• registred ports (1024 to 49151) are allowed<br/>• private ports (greater than 49152) are allowed<br/>**Default**: 8080 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **variable1**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A port variable.<br/>**Validators**: <br/>- well-known ports (1 to 1023) are allowed<br/>- registred ports (1024 to 49151) are allowed<br/>- private ports (greater than 49152) are allowed |
|
| **variable1**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A port variable.<br/>**Validators**: <br/>• well-known ports (1 to 1023) are allowed<br/>• registred ports (1024 to 49151) are allowed<br/>• private ports (greater than 49152) are allowed |
|
||||||
| **variable2**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with default value.<br/>**Validators**: <br/>- well-known ports (1 to 1023) are allowed<br/>- registred ports (1024 to 49151) are allowed<br/>- private ports (greater than 49152) are allowed<br/>**Default**: 8080 |
|
| **variable2**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with default value.<br/>**Validators**: <br/>• well-known ports (1 to 1023) are allowed<br/>• registred ports (1024 to 49151) are allowed<br/>• private ports (greater than 49152) are allowed<br/>**Default**: 8080 |
|
||||||
| **variable3**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with integer default value.<br/>**Validators**: <br/>- well-known ports (1 to 1023) are allowed<br/>- registred ports (1024 to 49151) are allowed<br/>- private ports (greater than 49152) are allowed<br/>**Default**: 8080 |
|
| **variable3**<br/>[`port`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A port variable with integer default value.<br/>**Validators**: <br/>• well-known ports (1 to 1023) are allowed<br/>• registred ports (1024 to 49151) are allowed<br/>• private ports (greater than 49152) are allowed<br/>**Default**: 8080 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,31 +3,31 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvariable1[0m │ A port variable. │
|
│ [1mvariable1[0m │ A port variable. │
|
||||||
│ [1;7m port [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
│ [1;7m port [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
||||||
│ │ - well-known ports (1 to 1023) are │
|
│ │ • well-known ports (1 to 1023) are │
|
||||||
│ │ allowed │
|
│ │ allowed │
|
||||||
│ │ - registred ports (1024 to 49151) │
|
│ │ • registred ports (1024 to 49151) │
|
||||||
│ │ are allowed │
|
|
||||||
│ │ - private ports (greater than 49152) │
|
|
||||||
│ │ are allowed │
|
│ │ are allowed │
|
||||||
|
│ │ • private ports (greater than │
|
||||||
|
│ │ 49152) are allowed │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvariable2[0m │ A port variable with default value. │
|
│ [1mvariable2[0m │ A port variable with default value. │
|
||||||
│ [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
│ [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
||||||
│ │ - well-known ports (1 to 1023) are │
|
│ │ • well-known ports (1 to 1023) are │
|
||||||
│ │ allowed │
|
│ │ allowed │
|
||||||
│ │ - registred ports (1024 to 49151) │
|
│ │ • registred ports (1024 to 49151) │
|
||||||
│ │ are allowed │
|
|
||||||
│ │ - private ports (greater than 49152) │
|
|
||||||
│ │ are allowed │
|
│ │ are allowed │
|
||||||
|
│ │ • private ports (greater than │
|
||||||
|
│ │ 49152) are allowed │
|
||||||
│ │ [1mDefault[0m: 8080 │
|
│ │ [1mDefault[0m: 8080 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvariable3[0m │ A port variable with integer default │
|
│ [1mvariable3[0m │ A port variable with integer default │
|
||||||
│ [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m │ value. │
|
│ [1;7m port [0m [1;7m standard [0m [1;7m mandatory [0m │ value. │
|
||||||
│ │ [1mValidators[0m: │
|
│ │ [1mValidators[0m: │
|
||||||
│ │ - well-known ports (1 to 1023) are │
|
│ │ • well-known ports (1 to 1023) are │
|
||||||
│ │ allowed │
|
│ │ allowed │
|
||||||
│ │ - registred ports (1024 to 49151) │
|
│ │ • registred ports (1024 to 49151) │
|
||||||
│ │ are allowed │
|
|
||||||
│ │ - private ports (greater than 49152) │
|
|
||||||
│ │ are allowed │
|
│ │ are allowed │
|
||||||
|
│ │ • private ports (greater than │
|
||||||
|
│ │ 49152) are allowed │
|
||||||
│ │ [1mDefault[0m: 8080 │
|
│ │ [1mDefault[0m: 8080 │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. +
|
||||||
**var** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` |
|
|
||||||
A first variable. +
|
|
||||||
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
|
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
|
||||||
**Default**: #a1a1a1 +
|
**Default**: #a1a1a1 +
|
||||||
**Examples**:
|
**Examples**:
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|--------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|--------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **<a id="var" name="var">var</a>**<br/>[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"<br/>**Default**: #a1a1a1<br/>**Examples**: <br/>- #b1b1b1<br/>- #b2b2b2 |
|
| **<a id="var" name="var">var</a>**<br/>[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"<br/>**Default**: #a1a1a1<br/>**Examples**: <br/>• #b1b1b1<br/>• #b2b2b2 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **var**<br/>[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"<br/>**Default**: #a1a1a1<br/>**Examples**: <br/>- #b1b1b1<br/>- #b2b2b2 |
|
| **var**<br/>[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"<br/>**Default**: #a1a1a1<br/>**Examples**: <br/>• #b1b1b1<br/>• #b2b2b2 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,6 @@
|
||||||
│ │ "^#(?:[0-9a-f]{3}){1,2}$" │
|
│ │ "^#(?:[0-9a-f]{3}){1,2}$" │
|
||||||
│ │ [1mDefault[0m: #a1a1a1 │
|
│ │ [1mDefault[0m: #a1a1a1 │
|
||||||
│ │ [1mExamples[0m: │
|
│ │ [1mExamples[0m: │
|
||||||
│ │ - #b1b1b1 │
|
│ │ • #b1b1b1 │
|
||||||
│ │ - #b2b2b2 │
|
│ │ • #b2b2b2 │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,16 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` |
|
|
||||||
A first variable. +
|
|
||||||
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
|
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
|
||||||
**Default**: #a1a1a1 +
|
**Default**: #a1a1a1 +
|
||||||
**Examples**:
|
**Examples**:
|
||||||
|
|
||||||
* '#b1b1b1'
|
* '#b1b1b1'
|
||||||
* '#b2b2b2'
|
* '#b2b2b2'
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` | A second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[regexp]` `standard` `mandatory` |
|
|
||||||
A second variable. +
|
|
||||||
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
|
**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$" +
|
||||||
**Default**: the value of the variable "var1" +
|
**Default**: the value of the variable "var1" +
|
||||||
**Examples**:
|
**Examples**:
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **<a id="var1" name="var1">var1</a>**<br/>[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"<br/>**Default**: #a1a1a1<br/>**Examples**: <br/>- #b1b1b1<br/>- #b2b2b2 |
|
| **<a id="var1" name="var1">var1</a>**<br/>[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"<br/>**Default**: #a1a1a1<br/>**Examples**: <br/>• #b1b1b1<br/>• #b2b2b2 |
|
||||||
| **<a id="var2" name="var2">var2</a>**<br/>[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"<br/>**Default**: the value of the variable "[`A first variable`](#var1)"<br/>**Examples**: <br/>- #b2b1b1<br/>- #b3b2b2 |
|
| **<a id="var2" name="var2">var2</a>**<br/>[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"<br/>**Default**: the value of the variable "[`A first variable`](#var1)"<br/>**Examples**: <br/>• #b2b1b1<br/>• #b3b2b2 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **var1**<br/>[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"<br/>**Default**: #a1a1a1<br/>**Examples**: <br/>- #b1b1b1<br/>- #b2b2b2 |
|
| **var1**<br/>[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A first variable.<br/>**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"<br/>**Default**: #a1a1a1<br/>**Examples**: <br/>• #b1b1b1<br/>• #b2b2b2 |
|
||||||
| **var2**<br/>[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"<br/>**Default**: the value of the variable "var1"<br/>**Examples**: <br/>- #b2b1b1<br/>- #b3b2b2 |
|
| **var2**<br/>[`regexp`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Validator**: text based with regular expressions "^#(?:[0-9a-f]{3}){1,2}$"<br/>**Default**: the value of the variable "var1"<br/>**Examples**: <br/>• #b2b1b1<br/>• #b3b2b2 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,8 @@
|
||||||
│ │ "^#(?:[0-9a-f]{3}){1,2}$" │
|
│ │ "^#(?:[0-9a-f]{3}){1,2}$" │
|
||||||
│ │ [1mDefault[0m: #a1a1a1 │
|
│ │ [1mDefault[0m: #a1a1a1 │
|
||||||
│ │ [1mExamples[0m: │
|
│ │ [1mExamples[0m: │
|
||||||
│ │ - #b1b1b1 │
|
│ │ • #b1b1b1 │
|
||||||
│ │ - #b2b2b2 │
|
│ │ • #b2b2b2 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar2[0m │ A second variable. │
|
│ [1mvar2[0m │ A second variable. │
|
||||||
│ [1;7m regexp [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidator[0m: text based with regular │
|
│ [1;7m regexp [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidator[0m: text based with regular │
|
||||||
|
|
@ -17,6 +17,6 @@
|
||||||
│ │ [1mDefault[0m: the value of the variable │
|
│ │ [1mDefault[0m: the value of the variable │
|
||||||
│ │ "var1" │
|
│ │ "var1" │
|
||||||
│ │ [1mExamples[0m: │
|
│ │ [1mExamples[0m: │
|
||||||
│ │ - #b2b1b1 │
|
│ │ • #b2b1b1 │
|
||||||
│ │ - #b3b2b2 │
|
│ │ • #b3b2b2 │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,10 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **secret1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable.
|
||||||
**secret1** +
|
| **secret2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. +
|
||||||
The first variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**secret2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Default**: value
|
**Default**: value
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,28 +1,19 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **secret1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` | The first variable. +
|
||||||
**secret1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `basic` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
**Validator**: minimum length for the secret is 10 characters
|
**Validator**: minimum length for the secret is 10 characters
|
||||||
|
|
| **secret2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The second variable. +
|
||||||
**secret2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Validators**:
|
**Validators**:
|
||||||
|
|
||||||
* maximum length for the secret is 10 characters
|
* maximum length for the secret is 10 characters
|
||||||
* 'forbidden characters: "$" and "^"'
|
* 'forbidden characters: "$" and "^"'
|
||||||
|
|
||||||
**Default**: value
|
**Default**: value
|
||||||
|
|
| **secret3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` | The third variable. +
|
||||||
**secret3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[secret]` `standard` `mandatory` |
|
|
||||||
The third variable. +
|
|
||||||
**Validators**:
|
**Validators**:
|
||||||
|
|
||||||
* maximum length for the secret is 10 characters
|
* maximum length for the secret is 10 characters
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|--------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **<a id="secret1" name="secret1">secret1</a>**<br/>[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Validator**: minimum length for the secret is 10 characters |
|
| **<a id="secret1" name="secret1">secret1</a>**<br/>[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Validator**: minimum length for the secret is 10 characters |
|
||||||
| **<a id="secret2" name="secret2">secret2</a>**<br/>[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Validators**: <br/>- maximum length for the secret is 10 characters<br/>- forbidden characters: "$" and "^"<br/>**Default**: value |
|
| **<a id="secret2" name="secret2">secret2</a>**<br/>[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Validators**: <br/>• maximum length for the secret is 10 characters<br/>• forbidden characters: "$" and "^"<br/>**Default**: value |
|
||||||
| **<a id="secret3" name="secret3">secret3</a>**<br/>[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The third variable.<br/>**Validators**: <br/>- maximum length for the secret is 10 characters<br/>- forbidden characters: "$"<br/>**Default**: value |
|
| **<a id="secret3" name="secret3">secret3</a>**<br/>[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The third variable.<br/>**Validators**: <br/>• maximum length for the secret is 10 characters<br/>• forbidden characters: "$"<br/>**Default**: value |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **secret1**<br/>[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Validator**: minimum length for the secret is 10 characters |
|
| **secret1**<br/>[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Validator**: minimum length for the secret is 10 characters |
|
||||||
| **secret2**<br/>[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Validators**: <br/>- maximum length for the secret is 10 characters<br/>- forbidden characters: "$" and "^"<br/>**Default**: value |
|
| **secret2**<br/>[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Validators**: <br/>• maximum length for the secret is 10 characters<br/>• forbidden characters: "$" and "^"<br/>**Default**: value |
|
||||||
| **secret3**<br/>[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The third variable.<br/>**Validators**: <br/>- maximum length for the secret is 10 characters<br/>- forbidden characters: "$"<br/>**Default**: value |
|
| **secret3**<br/>[`secret`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The third variable.<br/>**Validators**: <br/>• maximum length for the secret is 10 characters<br/>• forbidden characters: "$"<br/>**Default**: value |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,15 +7,15 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1msecret2[0m │ The second variable. │
|
│ [1msecret2[0m │ The second variable. │
|
||||||
│ [1;7m secret [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
│ [1;7m secret [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
||||||
│ │ - maximum length for the secret is │
|
│ │ • maximum length for the secret is │
|
||||||
│ │ 10 characters │
|
│ │ 10 characters │
|
||||||
│ │ - forbidden characters: "$" and "^" │
|
│ │ • forbidden characters: "$" and "^" │
|
||||||
│ │ [1mDefault[0m: value │
|
│ │ [1mDefault[0m: value │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1msecret3[0m │ The third variable. │
|
│ [1msecret3[0m │ The third variable. │
|
||||||
│ [1;7m secret [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
│ [1;7m secret [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mValidators[0m: │
|
||||||
│ │ - maximum length for the secret is │
|
│ │ • maximum length for the secret is │
|
||||||
│ │ 10 characters │
|
│ │ 10 characters │
|
||||||
│ │ - forbidden characters: "$" │
|
│ │ • forbidden characters: "$" │
|
||||||
│ │ [1mDefault[0m: value │
|
│ │ [1mDefault[0m: value │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,50 +1,26 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable.
|
||||||
**var1** +
|
| **var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable.
|
||||||
The first variable.
|
| **var3** +
|
||||||
|
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable.
|
||||||
|
| **var4** +
|
||||||
**var2** +
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The forth variable. +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The second variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The third variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The forth variable. +
|
|
||||||
**Default**: value
|
**Default**: value
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Default**: value
|
**Default**: value
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Default**: value
|
**Default**: value
|
||||||
|
|
| **var7** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The seventh variable. +
|
||||||
**var7** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The seventh variable. +
|
|
||||||
**Default**: 8080
|
**Default**: 8080
|
||||||
|
|
| **var8** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The height variable. +
|
||||||
**var8** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The height variable. +
|
|
||||||
**Default**: true
|
**Default**: true
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A choice. +
|
||||||
**var** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A choice. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* quote' **← (default)**
|
* quote' **← (default)**
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|--------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|
|
|--------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|
|
||||||
| **<a id="var" name="var">var</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A choice.<br/>**Choices**: <br/>- quote' **← (default)**<br/>- quote"<br/>- quote"' |
|
| **<a id="var" name="var">var</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A choice.<br/>**Choices**: <br/>• quote' **← (default)**<br/>• quote"<br/>• quote"' |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **var**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A choice.<br/>**Choices**: <br/>- quote' **← (default)**<br/>- quote"<br/>- quote"' |
|
| **var**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A choice.<br/>**Choices**: <br/>• quote' **← (default)**<br/>• quote"<br/>• quote"' |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvar[0m │ A choice. │
|
│ [1mvar[0m │ A choice. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
||||||
│ │ - quote' [1m← (default)[0m │
|
│ │ • quote' [1m← (default)[0m │
|
||||||
│ │ - quote" │
|
│ │ • quote" │
|
||||||
│ │ - quote"' │
|
│ │ • quote"' │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,15 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
Multi line
|
Multi line
|
||||||
|
|
||||||
Help
|
Help
|
||||||
|
|
||||||
With useful information.
|
With useful information.
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
Multi line
|
Multi line
|
||||||
Help
|
Help
|
||||||
With useful information.
|
With useful information.
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,11 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
Message with '.
|
Message with '.
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
Message with ".
|
Message with ".
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,15 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first <variable>. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The first <variable>. +
|
|
||||||
Multi line
|
Multi line
|
||||||
|
|
||||||
<Help>
|
<Help>
|
||||||
|
|
||||||
With useful information.
|
With useful information.
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The second <variable>. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The second <variable>. +
|
|
||||||
Multi line
|
Multi line
|
||||||
<Help>
|
<Help>
|
||||||
With useful information.
|
With useful information.
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: quote"
|
**Default**: quote"
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: quote'"
|
**Default**: quote'"
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: quote\"\'
|
**Default**: quote\"\'
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: quote'
|
**Default**: quote'
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: get information test_information
|
**Default**: get information test_information
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,50 +1,32 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The first variable. +
|
||||||
**var1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The first variable. +
|
|
||||||
**Example**: test
|
**Example**: test
|
||||||
|
|
| **var2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second variable. +
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The second variable. +
|
|
||||||
**Default**: value +
|
**Default**: value +
|
||||||
**Example**: test
|
**Example**: test
|
||||||
|
|
| **var3** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | The third variable. +
|
||||||
**var3** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
|
||||||
The third variable. +
|
|
||||||
**Examples**:
|
**Examples**:
|
||||||
|
|
||||||
* test1
|
* test1
|
||||||
* test2
|
* test2
|
||||||
|
|
| **var4** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` | The forth variable. +
|
||||||
**var4** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` |
|
|
||||||
The forth variable. +
|
|
||||||
**Examples**:
|
**Examples**:
|
||||||
|
|
||||||
* null
|
* null
|
||||||
* test1
|
* test1
|
||||||
* test2
|
* test2
|
||||||
|
|
| **var5** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` | The fifth variable. +
|
||||||
**var5** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[boolean]` `standard` `mandatory` |
|
|
||||||
The fifth variable. +
|
|
||||||
**Default**: true +
|
**Default**: true +
|
||||||
**Example**: false
|
**Example**: false
|
||||||
|
|
| **var6** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` | The sixth variable. +
|
||||||
**var6** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` `unique` `multiple` |
|
|
||||||
The sixth variable. +
|
|
||||||
**Examples**:
|
**Examples**:
|
||||||
|
|
||||||
* test1
|
* test1
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,8 @@
|
||||||
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------|
|
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------|
|
||||||
| **<a id="var1" name="var1">var1</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Example**: test |
|
| **<a id="var1" name="var1">var1</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Example**: test |
|
||||||
| **<a id="var2" name="var2">var2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Default**: value<br/>**Example**: test |
|
| **<a id="var2" name="var2">var2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Default**: value<br/>**Example**: test |
|
||||||
| **<a id="var3" name="var3">var3</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The third variable.<br/>**Examples**: <br/>- test1<br/>- test2 |
|
| **<a id="var3" name="var3">var3</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The third variable.<br/>**Examples**: <br/>• test1<br/>• test2 |
|
||||||
| **<a id="var4" name="var4">var4</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The forth variable.<br/>**Examples**: <br/>- null<br/>- test1<br/>- test2 |
|
| **<a id="var4" name="var4">var4</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The forth variable.<br/>**Examples**: <br/>• null<br/>• test1<br/>• test2 |
|
||||||
| **<a id="var5" name="var5">var5</a>**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Default**: true<br/>**Example**: false |
|
| **<a id="var5" name="var5">var5</a>**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Default**: true<br/>**Example**: false |
|
||||||
| **<a id="var6" name="var6">var6</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | The sixth variable.<br/>**Examples**: <br/>- test1<br/>- test2 |
|
| **<a id="var6" name="var6">var6</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | The sixth variable.<br/>**Examples**: <br/>• test1<br/>• test2 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,8 @@
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Example**: test |
|
| **var1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The first variable.<br/>**Example**: test |
|
||||||
| **var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Default**: value<br/>**Example**: test |
|
| **var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Default**: value<br/>**Example**: test |
|
||||||
| **var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The third variable.<br/>**Examples**: <br/>- test1<br/>- test2 |
|
| **var3**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | The third variable.<br/>**Examples**: <br/>• test1<br/>• test2 |
|
||||||
| **var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The forth variable.<br/>**Examples**: <br/>- null<br/>- test1<br/>- test2 |
|
| **var4**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` | The forth variable.<br/>**Examples**: <br/>• null<br/>• test1<br/>• test2 |
|
||||||
| **var5**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Default**: true<br/>**Example**: false |
|
| **var5**<br/>[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The fifth variable.<br/>**Default**: true<br/>**Example**: false |
|
||||||
| **var6**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | The sixth variable.<br/>**Examples**: <br/>- test1<br/>- test2 |
|
| **var6**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | The sixth variable.<br/>**Examples**: <br/>• test1<br/>• test2 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,14 +10,14 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar3[0m │ The third variable. │
|
│ [1mvar3[0m │ The third variable. │
|
||||||
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mExamples[0m: │
|
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m │ [1mExamples[0m: │
|
||||||
│ │ - test1 │
|
│ │ • test1 │
|
||||||
│ │ - test2 │
|
│ │ • test2 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar4[0m │ The forth variable. │
|
│ [1mvar4[0m │ The forth variable. │
|
||||||
│ [1;7m string [0m [1;7m standard [0m │ [1mExamples[0m: │
|
│ [1;7m string [0m [1;7m standard [0m │ [1mExamples[0m: │
|
||||||
│ │ - null │
|
│ │ • null │
|
||||||
│ │ - test1 │
|
│ │ • test1 │
|
||||||
│ │ - test2 │
|
│ │ • test2 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar5[0m │ The fifth variable. │
|
│ [1mvar5[0m │ The fifth variable. │
|
||||||
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: true │
|
│ [1;7m boolean [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mDefault[0m: true │
|
||||||
|
|
@ -25,6 +25,6 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvar6[0m │ The sixth variable. │
|
│ [1mvar6[0m │ The sixth variable. │
|
||||||
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m unique [0m │ [1mExamples[0m: │
|
│ [1;7m string [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m unique [0m │ [1mExamples[0m: │
|
||||||
│ [1;7mmultiple [0m │ - test1 │
|
│ [1;7mmultiple [0m │ • test1 │
|
||||||
│ │ - test2 │
|
│ │ • test2 │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,20 +1,14 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` | A first variable. +
|
||||||
**variable1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` `unique` `multiple` |
|
|
||||||
A first variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* val1
|
* val1
|
||||||
* val2
|
* val2
|
||||||
|
|
| **variable2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` | A second variable. +
|
||||||
**variable2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `unique` `multiple` |
|
|
||||||
A second variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* val1
|
* val1
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
|
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|
|
||||||
| **<a id="variable1" name="variable1">variable1</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A first variable.<br/>**Choices**: <br/>- val1<br/>- val2 |
|
| **<a id="variable1" name="variable1">variable1</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A first variable.<br/>**Choices**: <br/>• val1<br/>• val2 |
|
||||||
| **<a id="variable2" name="variable2">variable2</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A second variable.<br/>**Choices**: <br/>- val1<br/>- val2 |
|
| **<a id="variable2" name="variable2">variable2</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A second variable.<br/>**Choices**: <br/>• val1<br/>• val2 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
| Variable | Description |
|
| Variable | Description |
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **variable1**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A first variable.<br/>**Choices**: <br/>- val1<br/>- val2 |
|
| **variable1**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` `unique` `multiple` | A first variable.<br/>**Choices**: <br/>• val1<br/>• val2 |
|
||||||
| **variable2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A second variable.<br/>**Choices**: <br/>- val1<br/>- val2 |
|
| **variable2**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `unique` `multiple` | A second variable.<br/>**Choices**: <br/>• val1<br/>• val2 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,11 @@
|
||||||
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
||||||
│ [1mvariable1[0m │ A first variable. │
|
│ [1mvariable1[0m │ A first variable. │
|
||||||
│ [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m unique [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m basic [0m [1;7m mandatory [0m [1;7m unique [0m │ [1mChoices[0m: │
|
||||||
│ [1;7mmultiple [0m │ - val1 │
|
│ [1;7mmultiple [0m │ • val1 │
|
||||||
│ │ - val2 │
|
│ │ • val2 │
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mvariable2[0m │ A second variable. │
|
│ [1mvariable2[0m │ A second variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m unique [0m [1;7m [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m unique [0m [1;7m [0m │ [1mChoices[0m: │
|
||||||
│ [1;7mmultiple [0m │ - val1 │
|
│ [1;7mmultiple [0m │ • val1 │
|
||||||
│ │ - val2 │
|
│ │ • val2 │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,23 +1,14 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **source_variable_1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The first source variable. +
|
||||||
**source_variable_1** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The first source variable. +
|
|
||||||
**Default**: val1
|
**Default**: val1
|
||||||
|
|
| **source_variable_2** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second source variable. +
|
||||||
**source_variable_2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
The second source variable. +
|
|
||||||
**Default**: val2
|
**Default**: val2
|
||||||
|
|
| **my_variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
|
||||||
**my_variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Choices**:
|
**Choices**:
|
||||||
|
|
||||||
* the value of the variable "source_variable_1"
|
* the value of the variable "source_variable_1"
|
||||||
|
|
|
||||||
|
|
@ -2,5 +2,5 @@
|
||||||
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **<a id="source_variable_1" name="source_variable_1">source_variable_1</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.<br/>**Default**: val1 |
|
| **<a id="source_variable_1" name="source_variable_1">source_variable_1</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.<br/>**Default**: val1 |
|
||||||
| **<a id="source_variable_2" name="source_variable_2">source_variable_2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.<br/>**Default**: val2 |
|
| **<a id="source_variable_2" name="source_variable_2">source_variable_2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.<br/>**Default**: val2 |
|
||||||
| **<a id="my_variable" name="my_variable">my_variable</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Choices**: <br/>- the value of the variable "[`The first source variable`](#source_variable_1)"<br/>- the value of the variable "[`The second source variable`](#source_variable_2)"<br/>**Default**: val1 |
|
| **<a id="my_variable" name="my_variable">my_variable</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Choices**: <br/>• the value of the variable "[`The first source variable`](#source_variable_1)"<br/>• the value of the variable "[`The second source variable`](#source_variable_2)"<br/>**Default**: val1 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,5 +2,5 @@
|
||||||
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||||
| **source_variable_1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.<br/>**Default**: val1 |
|
| **source_variable_1**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The first source variable.<br/>**Default**: val1 |
|
||||||
| **source_variable_2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.<br/>**Default**: val2 |
|
| **source_variable_2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second source variable.<br/>**Default**: val2 |
|
||||||
| **my_variable**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Choices**: <br/>- the value of the variable "source_variable_1"<br/>- the value of the variable "source_variable_2"<br/>**Default**: val1 |
|
| **my_variable**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable.<br/>**Choices**: <br/>• the value of the variable "source_variable_1"<br/>• the value of the variable "source_variable_2"<br/>**Default**: val1 |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,9 +9,9 @@
|
||||||
├───────────────────────────────────────┼──────────────────────────────────────┤
|
├───────────────────────────────────────┼──────────────────────────────────────┤
|
||||||
│ [1mmy_variable[0m │ A variable. │
|
│ [1mmy_variable[0m │ A variable. │
|
||||||
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
│ [1;7m choice [0m [1;7m standard [0m [1;7m mandatory [0m │ [1mChoices[0m: │
|
||||||
│ │ - the value of the variable │
|
│ │ • the value of the variable │
|
||||||
│ │ "source_variable_1" │
|
│ │ "source_variable_1" │
|
||||||
│ │ - the value of the variable │
|
│ │ • the value of the variable │
|
||||||
│ │ "source_variable_2" │
|
│ │ "source_variable_2" │
|
||||||
│ │ [1mDefault[0m: val1 │
|
│ │ [1mDefault[0m: val1 │
|
||||||
└───────────────────────────────────────┴──────────────────────────────────────┘
|
└───────────────────────────────────────┴──────────────────────────────────────┘
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
|
||||||
**variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: concat all parameters
|
**Default**: concat all parameters
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable. +
|
||||||
**var** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A variable. +
|
|
||||||
**Default**: returns the information
|
**Default**: returns the information
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,10 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **var1** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | A first variable.
|
||||||
**var1** +
|
| **var2** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
|
||||||
A first variable.
|
|
||||||
|
|
|
||||||
|
|
||||||
**var2** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
|
||||||
A second variable. +
|
|
||||||
**Default**: depends on a calculation
|
**Default**: depends on a calculation
|
||||||
|====
|
|====
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,10 @@
|
||||||
[cols="1a,1a"]
|
[cols="1a,1a"]
|
||||||
|====
|
|====
|
||||||
| Variable | Description
|
| Variable | Description
|
||||||
|
|
| **my_variable** +
|
||||||
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | **Default**: val1
|
||||||
**my_variable** +
|
| **my_calculated_variable** +
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` |
|
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` | **Default**:
|
||||||
**Default**: val1
|
|
||||||
|
|
|
||||||
|
|
||||||
**my_calculated_variable** +
|
|
||||||
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` `unique` `multiple` |
|
|
||||||
**Default**:
|
|
||||||
|
|
||||||
* the value of the variable "my_variable" if it is defined
|
* the value of the variable "my_variable" if it is defined
|
||||||
|====
|
|====
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue