fix: better display of path

This commit is contained in:
egarette@silique.fr 2026-04-01 17:01:24 +02:00
parent 316af5cb3f
commit cce4447390
3122 changed files with 15123 additions and 11987 deletions

View file

@ -260,7 +260,7 @@ class Annotator(Walk):
values.xmlfiles, values.xmlfiles,
) )
if variable: if variable:
description = description.replace(f'"{r_path}"', f'"{{{index}}}"') description = description.replace(f'"{r_path}"', f'{{{index}}}')
v = {"path": variable.path, "description": variable.description} v = {"path": variable.path, "description": variable.description}
if identifiers: if identifiers:
v["identifiers"] = identifiers v["identifiers"] = identifiers

View file

@ -88,8 +88,11 @@ class _ToString:
values = self._calculation_variable_to_string( values = self._calculation_variable_to_string(
child, calculation, attribute_type child, calculation, attribute_type
) )
if isinstance(values, str) and not inside_list: if not inside_list:
values = add_dot(values) if isinstance(values, str):
values = add_dot(values)
elif isinstance(values, dict) and "message" in values:
values["message"] = add_dot(values["message"])
elif calculation["type"] == "identifier": elif calculation["type"] == "identifier":
values = self._calculation_identifier_to_string( values = self._calculation_identifier_to_string(
child, calculation, attribute_type child, calculation, attribute_type
@ -98,16 +101,19 @@ class _ToString:
values = add_dot(values) values = add_dot(values)
elif calculation["type"] == "information": elif calculation["type"] == "information":
if "path" in calculation: if "path" in calculation:
variable_path = self.doc_path(calculation["path"]) msg = _(
values = _( 'the value of the information "{0}" of the variable {{0}}'
'the value of the information "{0}" of the variable "{1}"' ).format(calculation["information"])
).format(calculation["information"], variable_path) if not inside_list:
msg = add_dot(msg)
variable = self.true_config.unrestraint.option(calculation["path"])
values = self._calculation_with_variable(variable, calculation, msg)
else: else:
values = _('the value of the global information "{0}"').format( values = _('the value of the global information "{0}"').format(
calculation["information"] calculation["information"]
) )
if not inside_list: if not inside_list:
values = add_dot(values) values = add_dot(values)
else: else:
values = _("the value of the {0}").format(calculation["type"]) values = _("the value of the {0}").format(calculation["type"])
if not inside_list: if not inside_list:
@ -216,7 +222,7 @@ class _ToString:
submsg = display_list( submsg = display_list(
[_("is {0}").format(prop), submsg], separator="or", sort=False [_("is {0}").format(prop), submsg], separator="or", sort=False
) )
msg = _('when the variable "{{0}}" {0}.').format(submsg) msg = _('when the variable {{0}} {0}.').format(submsg)
path_obj = { path_obj = {
"path": self.doc_path(variable_path), "path": self.doc_path(variable_path),
} }
@ -243,19 +249,22 @@ class _ToString:
variable.get() variable.get()
except AttributeError: except AttributeError:
return None return None
true_msg = _('the value of the variable "{0}" if it is defined') true_msg = _('the value of the variable {0} if it is defined')
else: else:
true_msg = _('the value of the variable "{0}"') true_msg = _('the value of the variable {0}')
if not variable.isdynamic(): return self._calculation_with_variable(variable, calculation["value"], true_msg)
func = self._calculation_normal_variable_to_string_not_properties
else:
func = self._calculation_dynamic_variable_to_string_not_properties
return func(variable, calculation["value"], true_msg)
def _calculation_normal_variable_to_string_not_properties( def _calculation_with_variable(self, child, calculation, msg):
self, child, obj, true_msg if not child.isdynamic():
func = self._calculation_normal_with_variable
else:
func = self._calculation_dynamic_variable_with_variable
return func(child, calculation, msg)
def _calculation_normal_with_variable(
self, child, obj, msg
): ):
isfollower = child.isfollower() isfollower = not child.isoptiondescription() and child.isfollower()
if not isfollower and self.is_inaccessible_user_data(child): if not isfollower and self.is_inaccessible_user_data(child):
uncalculated = child.value.default(uncalculated=True) uncalculated = child.value.default(uncalculated=True)
if uncalculated and not isinstance(uncalculated, Calculation): if uncalculated and not isinstance(uncalculated, Calculation):
@ -267,38 +276,37 @@ class _ToString:
else: else:
if not isinstance(uncalculated, str): if not isinstance(uncalculated, str):
uncalculated = dump(uncalculated) uncalculated = dump(uncalculated)
true_msg = _("{0} (from an undocumented variable)").format( msg = _("{0} (from an undocumented variable)").format(
uncalculated uncalculated
) )
else: else:
true_msg = _("the value of an undocumented variable") msg = _("the value of an undocumented variable")
try: try:
description = child.description(uncalculated=True) description = child.description(uncalculated=True)
except AttributeError: except AttributeError:
description = path description = path
return { return {
"message": true_msg, "message": msg,
"path": obj, "path": obj,
"description": description, "description": description,
} }
def _calculation_dynamic_variable_to_string_not_properties( def _calculation_dynamic_variable_with_variable(
self, child, obj, true_msg self, child, obj, msg
): ):
values = [] values = []
for path, description, identifiers in self._get_annotation_variable( for path, description, identifiers in self._get_annotation_variable(
child, obj.get("identifiers") child, obj.get("identifiers")
): ):
cpath = calc_path(path, identifiers=identifiers) variable = self.true_config.option(path)
variable = self.true_config.option(cpath)
path_obj = { path_obj = {
"path": self.doc_path(path), "path": self.doc_path(path),
} }
if identifiers: if identifiers:
path_obj["identifiers"] = identifiers path_obj["identifiers"] = identifiers
values.append( values.append(
self._calculation_normal_variable_to_string_not_properties( self._calculation_normal_with_variable(
variable, path_obj, true_msg variable, path_obj, msg
) )
) )
return values return values

View file

@ -19,7 +19,41 @@ 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 rougail.error import ExtensionError
from ..utils import dump, CommonFormatter from ..utils import dump, CommonFormatter
try:
from rich.jupyter import JupyterMixin
from rich.segment import Segment
from rich.style import Style
from rich.console import Console, ConsoleOptions, RenderResult
from rich.table import Table
from rich.theme import Theme
from rich.syntax import Syntax
except ModuleNotFoundError:
Console = None
if Console:
class BlockQuote(JupyterMixin):
def __init__(
self,
elements: str,
) -> None:
self.elements = elements
self.border_style = Style(color="blue")
def __rich_console__(
self, console: Console, options: ConsoleOptions
) -> RenderResult:
"""Render blockquote to the console."""
render_options = options.update(width=options.max_width - 4)
lines = console.render_lines(self.elements, render_options)
new_line = Segment("\n")
padding = Segment("", style=self.border_style)
for line in lines:
yield padding
yield from line
yield new_line
class Formatter(CommonFormatter): class Formatter(CommonFormatter):
@ -37,14 +71,8 @@ class Formatter(CommonFormatter):
} }
def __init__(self, rougailconfig, **kwargs) -> None: def __init__(self, rougailconfig, **kwargs) -> None:
from rich.table import Table if not Console:
from rich.theme import Theme raise ExtensionError(_("cannot find python module rich, please install it!"))
from rich.console import Console
from rich.syntax import Syntax
self.rich_table = Table
self.rich_console = Console
self.rich_syntaxt = Syntax
self.custom_theme = Theme(self.titles_color) self.custom_theme = Theme(self.titles_color)
self.max_line = 0 self.max_line = 0
super().__init__(rougailconfig, **kwargs) super().__init__(rougailconfig, **kwargs)
@ -59,7 +87,7 @@ class Formatter(CommonFormatter):
force_terminal = "xterm-256color" force_terminal = "xterm-256color"
else: else:
force_terminal = None force_terminal = None
console = self.rich_console( console = Console(
theme=self.custom_theme, force_terminal=force_terminal theme=self.custom_theme, force_terminal=force_terminal
) )
with console.capture() as capture: with console.capture() as capture:
@ -135,7 +163,7 @@ class Formatter(CommonFormatter):
first_char = "" first_char = ""
char = f"{self.enter_tabular}{first_char}" char = f"{self.enter_tabular}{first_char}"
else: else:
char = first_char = f"\n{self.family_informations_starts_line()}" char = first_char = f"\n"
ret = "" ret = ""
for idx, choice in enumerate(choices): for idx, choice in enumerate(choices):
if not isinstance(choice, str): if not isinstance(choice, str):
@ -166,7 +194,7 @@ class Formatter(CommonFormatter):
def yaml(self, _dump): def yaml(self, _dump):
"""Dump yaml part of documentation""" """Dump yaml part of documentation"""
return self.rich_syntaxt(f"---\n{_dump}", "yaml") return Syntax(f"---\n{_dump}", "yaml")
def link( def link(
self, self,
@ -189,7 +217,7 @@ class Formatter(CommonFormatter):
def tabular(self, with_header: bool = True) -> str: def tabular(self, with_header: bool = True) -> str:
"""Transform list to a tabular in string format""" """Transform list to a tabular in string format"""
tabular = self.rich_table(show_lines=True) tabular = Table(show_lines=True)
if with_header: if with_header:
for column in self.tabular_datas.headers(): for column in self.tabular_datas.headers():
tabular.add_column(column, width=self.max_line) tabular.add_column(column, width=self.max_line)
@ -197,16 +225,12 @@ class Formatter(CommonFormatter):
tabular.add_row(*data) tabular.add_row(*data)
return tabular return tabular
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: def family_informations_ends_line(self) -> str:
return "\n" return "\n"
def end_family_informations(self) -> str: def end_family_informations(self) -> str:
return "\n" return ""
def display_family_informations(self, msg) -> str:
msg = ["[blue]" + self.bold(f"🛈 {_('Informations')}") + "\n" + "[/blue]"] + msg
return BlockQuote(self.family_informations_ends_line().join(msg))

View file

@ -163,7 +163,7 @@ class Formatter(CommonFormatter):
link = f"{filename}#{name}" link = f"{filename}#{name}"
else: else:
link = f"#{name}" link = f"#{name}"
return f"[{description}]({link})" return f'"[{description}]({link})" ({path})'
def anchor( def anchor(
self, self,
@ -196,24 +196,18 @@ 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_informations(self) -> str: def family_informations(self):
starts_line = self.family_informations_starts_line() start = self.family_informations_starts_line()
return starts_line + "[!NOTE]" + "\n" + starts_line + "\n" return [start + "[!NOTE]", start]
def family_informations_starts_line(self) -> str:
return "> "
def family_informations_ends_line(self) -> str: def family_informations_ends_line(self) -> str:
return "\\\n" return "\\\n"
def family_informations_starts_line(self) -> str:
return "> "
# def display_family_informations(self, msg) -> str:
# def family_to_string(self, *args, **kwargs) -> List[str]: start = self.family_informations_starts_line()
# lst = super().family_to_string(*args, **kwargs) end = self.family_informations_ends_line()
# if self.name != 'github': msg = self.family_informations() + [end.join([start + m for m in msg])]
# return lst return "\n".join(msg)
# # remove the title
# ret = lst.pop(0)
# if lst:
# ret = "\n> ".join([l.strip() for l in lst]).strip() + "\n\n"
# return [ret]

View file

@ -41,7 +41,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')}"]
def table_header(self, lst): def table_header(self, lst):
"""Manage the header of a table""" """Manage the header of a table"""

View file

@ -334,7 +334,8 @@ class CommonFormatter:
filename: Optional[str], filename: Optional[str],
) -> str: ) -> str:
"""Set a text link to variable anchor""" """Set a text link to variable anchor"""
return description # return f'"{description}"'
return f'"{description}" ({path})'
def stripped( def stripped(
self, self,
@ -375,9 +376,6 @@ class CommonFormatter:
################## ##################
def family_informations(self) -> str:
return ""
def end_family_informations(self) -> str: def end_family_informations(self) -> str:
return ENTER return ENTER
@ -541,22 +539,19 @@ class CommonFormatter:
self.section( self.section(
_("Identifiers"), informations["identifier"], type_="family" _("Identifiers"), informations["identifier"], type_="family"
) )
) )
starts_line = self.family_informations_starts_line()
if msg: if msg:
fam_info = self.family_informations() ret.append(self.display_family_informations(msg))
if fam_info: ret.append(self.end_family_informations())
ret.append(fam_info)
ret.append(
self.family_informations_ends_line().join(
[starts_line + m for m in msg]
)
+ self.end_family_informations()
)
return ret return ret
def display_family_informations(self, msg) -> str:
fam_info = self.family_informations()
return fam_info + self.family_informations_ends_line().join(msg)
def family_informations(self) -> str:
return ""
def family_informations_starts_line(self) -> str: def family_informations_starts_line(self) -> str:
return "" return ""
@ -1067,7 +1062,7 @@ class CommonFormatter:
) )
return msg return msg
def message_to_string(self, msg, ret, identifiers=[]): def message_to_string(self, msg, ret, *, identifiers=[]):
if isinstance(msg, dict): if isinstance(msg, dict):
if "submessage" in msg: if "submessage" in msg:
ret += msg["submessage"] ret += msg["submessage"]

View file

@ -5,7 +5,7 @@
| Variable | Description | Variable | Description
| **family2.var2** + | **family2.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable2. + `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A variable2. +
**Default**: the value of the variable "a second variable" **Default**: the value of the variable "a second variable" (family.var2).
| **family2.var3** + | **family2.var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. + `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A third variable. +
**Default**: string4 + **Default**: string4 +
@ -14,8 +14,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | Fourth variable. + `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `multiple` `standard` `mandatory` `unique` | Fourth variable. +
**Default**: **Default**:
* the value of the variable "first variable" * the value of the variable "first variable" (var1)
* the value of the variable "a second variable" * the value of the variable "a second variable" (family.var2)
* the value of the variable "a third variable" * the value of the variable "a third variable" (family2.var3)
|==== |====

View file

@ -1,10 +1,10 @@
<details><summary>New variables</summary> <details><summary>New variables</summary>
| Variable | Description | | Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<a id="family2.var2" name="family2.var2">family2.var2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.<br/>**Default**: the value of the variable "[a second variable](#family.var2)" | | **<a id="family2.var2" name="family2.var2">family2.var2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.<br/>**Default**: the value of the variable "[a second variable](#family.var2)" (family.var2). |
| **<a id="family2.var3" name="family2.var3">family2.var3</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.<br/>**Default**: string4<br/>**Example**: string5 | | **<a id="family2.var3" name="family2.var3">family2.var3</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.<br/>**Default**: string4<br/>**Example**: string5 |
| **<a id="family2.subfamily.variable" name="family2.subfamily.variable">family2.subfamily.variable</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.<br/>**Default**: <br/>&nbsp;the value of the variable "[first variable](#var1)"<br/>&nbsp;the value of the variable "[a second variable](#family.var2)"<br/>&nbsp;the value of the variable "[a third variable](#family2.var3)" | | **<a id="family2.subfamily.variable" name="family2.subfamily.variable">family2.subfamily.variable</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.<br/>**Default**: <br/>&nbsp;the value of the variable "[first variable](#var1)" (var1)<br/>&nbsp;the value of the variable "[a second variable](#family.var2)" (family.var2)<br/>&nbsp;the value of the variable "[a third variable](#family2.var3)" (family2.var3) |
</details> </details>

View file

@ -2,14 +2,14 @@
<table> <table>
<thead> <thead>
<tr><th>Variable </th><th>Description </th></tr> <tr><th>Variable </th><th>Description </th></tr>
</thead> </thead>
<tbody> <tbody>
<tr><td><b>family2.var2</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>string</a></mark> <mark>standard</mark> <mark>mandatory</mark> </td><td>A variable2.<br/><b>Default</b>: the value of the variable "a second variable"</td></tr> <tr><td><b>family2.var2</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>string</a></mark> <mark>standard</mark> <mark>mandatory</mark> </td><td>A variable2.<br/><b>Default</b>: the value of the variable "a second variable" (family.var2).</td></tr>
<tr><td><b>family2.var3</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>string</a></mark> <mark>standard</mark> <mark>mandatory</mark> </td><td>A third variable.<br/><b>Default</b>: string4<br/><b>Example</b>: string5 </td></tr> <tr><td><b>family2.var3</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>string</a></mark> <mark>standard</mark> <mark>mandatory</mark> </td><td>A third variable.<br/><b>Default</b>: string4<br/><b>Example</b>: string5 </td></tr>
<tr><td><b>family2.subfamily.variable</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>string</a></mark> <mark>multiple</mark> <mark>standard</mark> <mark>mandatory</mark> <mark>unique</mark></td><td>Fourth variable.<br/><b>Default</b>: <ul><li>the value of the variable "first variable"</li> <tr><td><b>family2.subfamily.variable</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>string</a></mark> <mark>multiple</mark> <mark>standard</mark> <mark>mandatory</mark> <mark>unique</mark></td><td>Fourth variable.<br/><b>Default</b>: <ul><li>the value of the variable "first variable" (var1)</li>
<li>the value of the variable "a second variable"</li> <li>the value of the variable "a second variable" (family.var2)</li>
<li>the value of the variable "a third variable"</li></ul> </td></tr> <li>the value of the variable "a third variable" (family2.var3)</li></ul> </td></tr>
</tbody> </tbody>
</table> </table>

View file

@ -1,8 +1,8 @@
# New variables # New variables
| Variable | Description | | Variable | Description |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<a id="family2.var2" name="family2.var2">family2.var2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.<br/>**Default**: the value of the variable "[a second variable](#family.var2)" | | **<a id="family2.var2" name="family2.var2">family2.var2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A variable2.<br/>**Default**: the value of the variable "[a second variable](#family.var2)" (family.var2). |
| **<a id="family2.var3" name="family2.var3">family2.var3</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.<br/>**Default**: string4<br/>**Example**: string5 | | **<a id="family2.var3" name="family2.var3">family2.var3</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A third variable.<br/>**Default**: string4<br/>**Example**: string5 |
| **<a id="family2.subfamily.variable" name="family2.subfamily.variable">family2.subfamily.variable</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.<br/>**Default**: <br/>&nbsp;the value of the variable "[first variable](#var1)"<br/>&nbsp;the value of the variable "[a second variable](#family.var2)"<br/>&nbsp;the value of the variable "[a third variable](#family2.var3)" | | **<a id="family2.subfamily.variable" name="family2.subfamily.variable">family2.subfamily.variable</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` `unique` | Fourth variable.<br/>**Default**: <br/>&nbsp;the value of the variable "[first variable](#var1)" (var1)<br/>&nbsp;the value of the variable "[a second variable](#family.var2)" (family.var2)<br/>&nbsp;the value of the variable "[a third variable](#family2.var3)" (family2.var3) |

View file

@ -5,7 +5,7 @@
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
family2.var2 │ A variable2. │ family2.var2 │ A variable2. │
 string   standard   mandatory  │ Default: the value of the variable │  string   standard   mandatory  │ Default: the value of the variable │
│ │ "a second variable" │ │ "a second variable" (family.var2).
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
family2.var3 │ A third variable. │ family2.var3 │ A third variable. │
 string   standard   mandatory  │ Default: string4 │  string   standard   mandatory  │ Default: string4 │
@ -14,10 +14,10 @@
family2.subfamily.variable │ Fourth variable. │ family2.subfamily.variable │ Fourth variable. │
 string   multiple   standard    │ Default: │  string   multiple   standard    │ Default: │
mandatory   unique  │ • the value of the variable "first │ mandatory   unique  │ • the value of the variable "first │
│ │ variable" │ │ variable" (var1)
│ │ • the value of the variable "a │ │ │ • the value of the variable "a │
│ │ second variable" │ │ second variable" (family.var2)
│ │ • the value of the variable "a third │ │ │ • the value of the variable "a third │
│ │ variable" │ │ variable" (family2.var3)
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -9,7 +9,7 @@
* +++val1 ← (default)+++ * +++val1 ← (default)+++
* +++val2+++ * +++val2+++
* the value of the variable "the first source variable" **← (default)** * the value of the variable "the first source variable" (source_variable_1) **← (default)**
* the value of the variable "the second source variable" * the value of the variable "the second source variable" (source_variable_2)
|==== |====

View file

@ -1,8 +1,8 @@
<details><summary>Modified variable</summary> <details><summary>Modified variable</summary>
| Variable | Description | | Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<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/>&nbsp;~~val1 ← (default)~~<br/>&nbsp;~~val2~~<br/>&nbsp;the value of the variable "[the first source variable](#source_variable_1)" **← (default)**<br/>&nbsp;the value of the variable "[the second source variable](#source_variable_2)" | | **<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/>&nbsp;~~val1 ← (default)~~<br/>&nbsp;~~val2~~<br/>&nbsp;the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1) **← (default)**<br/>&nbsp;the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2) |
</details> </details>

View file

@ -7,8 +7,8 @@
<tbody> <tbody>
<tr><td><b>my_variable</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>choice</a></mark> <mark>standard</mark> <mark>mandatory</mark></td><td>A variable.<br/><b>Choices</b>: <ul><li><del>val1 ← (default)</del></li> <tr><td><b>my_variable</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>choice</a></mark> <mark>standard</mark> <mark>mandatory</mark></td><td>A variable.<br/><b>Choices</b>: <ul><li><del>val1 ← (default)</del></li>
<li><del>val2</del></li> <li><del>val2</del></li>
<li>the value of the variable "the first source variable" <b>← (default)</b></li> <li>the value of the variable "the first source variable" (source_variable_1) <b>← (default)</b></li>
<li>the value of the variable "the second source variable"</li></ul> </td></tr> <li>the value of the variable "the second source variable" (source_variable_2)</li></ul> </td></tr>
</tbody> </tbody>
</table> </table>

View file

@ -1,6 +1,6 @@
# Modified variable # Modified variable
| Variable | Description | | Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<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/>&nbsp;~~val1 ← (default)~~<br/>&nbsp;~~val2~~<br/>&nbsp;the value of the variable "[the first source variable](#source_variable_1)" **← (default)**<br/>&nbsp;the value of the variable "[the second source variable](#source_variable_2)" | | **<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/>&nbsp;~~val1 ← (default)~~<br/>&nbsp;~~val2~~<br/>&nbsp;the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1) **← (default)**<br/>&nbsp;the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2) |

View file

@ -8,8 +8,10 @@
│ │ • val1 ← (default) │ │ │ • val1 ← (default) │
│ │ • val2 │ │ │ • val2 │
│ │ • the value of the variable "the │ │ │ • the value of the variable "the │
│ │ first source variable" ← (default) │ │ │ first source variable"
│ │ (source_variable_1) ← (default) │
│ │ • the value of the variable "the │ │ │ • the value of the variable "the │
│ │ second source variable" │ │ second source variable"
│ │ (source_variable_2)
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -7,8 +7,8 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. + `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `standard` `mandatory` | A variable. +
**Choices**: **Choices**:
* +++the value of the variable "the first source variable"+++ * +++the value of the variable "the first source variable" (source_variable_1)+++
* +++the value of the variable "the second source variable"+++ * +++the value of the variable "the second source variable" (source_variable_2)+++
* '#val1 **← (default)**#' * '#val1 **← (default)**#'
* '#val2#' * '#val2#'
|==== |====

View file

@ -1,8 +1,8 @@
<details><summary>Modified variable</summary> <details><summary>Modified variable</summary>
| Variable | Description | | Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<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/>&nbsp;~~the value of the variable "[the first source variable](#source_variable_1)"~~<br/>&nbsp;~~the value of the variable "[the second source variable](#source_variable_2)"~~<br/>&nbsp;<ins>val1 **← (default)**</ins><br/>&nbsp;<ins>val2</ins> | | **<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/>&nbsp;~~the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1)~~<br/>&nbsp;~~the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2)~~<br/>&nbsp;<ins>val1 **← (default)**</ins><br/>&nbsp;<ins>val2</ins> |
</details> </details>

View file

@ -5,8 +5,8 @@
<tr><th>Variable </th><th>Description </th></tr> <tr><th>Variable </th><th>Description </th></tr>
</thead> </thead>
<tbody> <tbody>
<tr><td><b>my_variable</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>choice</a></mark> <mark>standard</mark> <mark>mandatory</mark></td><td>A variable.<br/><b>Choices</b>: <ul><li><del>the value of the variable "the first source variable"</del></li> <tr><td><b>my_variable</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>choice</a></mark> <mark>standard</mark> <mark>mandatory</mark></td><td>A variable.<br/><b>Choices</b>: <ul><li><del>the value of the variable "the first source variable" (source_variable_1)</del></li>
<li><del>the value of the variable "the second source variable"</del></li> <li><del>the value of the variable "the second source variable" (source_variable_2)</del></li>
<li><ins>val1 <b>← (default)</b></ins></li> <li><ins>val1 <b>← (default)</b></ins></li>
<li><ins>val2</ins></li></ul> </td></tr> <li><ins>val2</ins></li></ul> </td></tr>
</tbody> </tbody>

View file

@ -1,6 +1,6 @@
# Modified variable # Modified variable
| Variable | Description | | Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<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/>&nbsp;~~the value of the variable "[the first source variable](#source_variable_1)"~~<br/>&nbsp;~~the value of the variable "[the second source variable](#source_variable_2)"~~<br/>&nbsp;<ins>val1 **← (default)**</ins><br/>&nbsp;<ins>val2</ins> | | **<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/>&nbsp;~~the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1)~~<br/>&nbsp;~~the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2)~~<br/>&nbsp;<ins>val1 **← (default)**</ins><br/>&nbsp;<ins>val2</ins> |

View file

@ -6,9 +6,11 @@
my_variable │ A variable. │ my_variable │ A variable. │
 choice   standard   mandatory  │ Choices: │  choice   standard   mandatory  │ Choices: │
│ │ • the value of the variable "the  │ │ │ • the value of the variable "the  │
│ │ first source variable" │ │ │ first source variable"  │
│ │ (source_variable_1) │
│ │ • the value of the variable "the  │ │ │ • the value of the variable "the  │
│ │ second source variable" │ │ │ second source variable"  │
│ │ (source_variable_2) │
│ │ • val1 ← (default) │ │ │ • val1 ← (default) │
│ │ • val2 │ │ │ • val2 │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -9,6 +9,6 @@
* +++val1+++ * +++val1+++
* +++val2+++ * +++val2+++
* the value of the variable "the first source variable" * the value of the variable "the first source variable" (source_variable_1).
|==== |====

View file

@ -1,8 +1,8 @@
<details><summary>Modified variable</summary> <details><summary>Modified variable</summary>
| Variable | Description | | Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------| |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<a id="my_variable" name="my_variable">my_variable</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.<br/>**Choices**: <br/>&nbsp;~~val1~~<br/>&nbsp;~~val2~~<br/>&nbsp;the value of the variable "[the first source variable](#source_variable_1)" | | **<a id="my_variable" name="my_variable">my_variable</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.<br/>**Choices**: <br/>&nbsp;~~val1~~<br/>&nbsp;~~val2~~<br/>&nbsp;the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1). |
</details> </details>

View file

@ -7,7 +7,7 @@
<tbody> <tbody>
<tr><td><b>my_variable</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>choice</a></mark> <mark>basic</mark> <mark>mandatory</mark></td><td>A variable.<br/><b>Choices</b>: <ul><li><del>val1</del></li> <tr><td><b>my_variable</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>choice</a></mark> <mark>basic</mark> <mark>mandatory</mark></td><td>A variable.<br/><b>Choices</b>: <ul><li><del>val1</del></li>
<li><del>val2</del></li> <li><del>val2</del></li>
<li>the value of the variable "the first source variable"</li></ul> </td></tr> <li>the value of the variable "the first source variable" (source_variable_1).</li></ul> </td></tr>
</tbody> </tbody>
</table> </table>

View file

@ -1,6 +1,6 @@
# Modified variable # Modified variable
| Variable | Description | | Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------| |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<a id="my_variable" name="my_variable">my_variable</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.<br/>**Choices**: <br/>&nbsp;~~val1~~<br/>&nbsp;~~val2~~<br/>&nbsp;the value of the variable "[the first source variable](#source_variable_1)" | | **<a id="my_variable" name="my_variable">my_variable</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.<br/>**Choices**: <br/>&nbsp;~~val1~~<br/>&nbsp;~~val2~~<br/>&nbsp;the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1). |

View file

@ -9,5 +9,6 @@
│ │ • val2 │ │ │ • val2 │
│ │ • the value of the variable "the │ │ │ • the value of the variable "the │
│ │ first source variable" │ │ first source variable"
│ │ (source_variable_1). │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -7,7 +7,7 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A variable. + `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[choice]` `basic` `mandatory` | A variable. +
**Choices**: **Choices**:
* +++the value of the variable "the first source variable"+++ * +++the value of the variable "the first source variable" (source_variable_1).+++
* '#val1#' * '#val1#'
* '#val2#' * '#val2#'
|==== |====

View file

@ -1,8 +1,8 @@
<details><summary>Modified variable</summary> <details><summary>Modified variable</summary>
| Variable | Description | | Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<a id="my_variable" name="my_variable">my_variable</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.<br/>**Choices**: <br/>&nbsp;~~the value of the variable "[the first source variable](#source_variable_1)"~~<br/>&nbsp;<ins>val1</ins><br/>&nbsp;<ins>val2</ins> | | **<a id="my_variable" name="my_variable">my_variable</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.<br/>**Choices**: <br/>&nbsp;~~the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1).~~<br/>&nbsp;<ins>val1</ins><br/>&nbsp;<ins>val2</ins> |
</details> </details>

View file

@ -5,7 +5,7 @@
<tr><th>Variable </th><th>Description </th></tr> <tr><th>Variable </th><th>Description </th></tr>
</thead> </thead>
<tbody> <tbody>
<tr><td><b>my_variable</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>choice</a></mark> <mark>basic</mark> <mark>mandatory</mark></td><td>A variable.<br/><b>Choices</b>: <ul><li><del>the value of the variable "the first source variable"</del></li> <tr><td><b>my_variable</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>choice</a></mark> <mark>basic</mark> <mark>mandatory</mark></td><td>A variable.<br/><b>Choices</b>: <ul><li><del>the value of the variable "the first source variable" (source_variable_1).</del></li>
<li><ins>val1</ins></li> <li><ins>val1</ins></li>
<li><ins>val2</ins></li></ul> </td></tr> <li><ins>val2</ins></li></ul> </td></tr>
</tbody> </tbody>

View file

@ -1,6 +1,6 @@
# Modified variable # Modified variable
| Variable | Description | | Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<a id="my_variable" name="my_variable">my_variable</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.<br/>**Choices**: <br/>&nbsp;~~the value of the variable "[the first source variable](#source_variable_1)"~~<br/>&nbsp;<ins>val1</ins><br/>&nbsp;<ins>val2</ins> | | **<a id="my_variable" name="my_variable">my_variable</a>**<br/>[`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A variable.<br/>**Choices**: <br/>&nbsp;~~the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1).~~<br/>&nbsp;<ins>val1</ins><br/>&nbsp;<ins>val2</ins> |

View file

@ -6,7 +6,8 @@
my_variable │ A variable. │ my_variable │ A variable. │
 choice   basic   mandatory  │ Choices: │  choice   basic   mandatory  │ Choices: │
│ │ • the value of the variable "the  │ │ │ • the value of the variable "the  │
│ │ first source variable" │ │ │ first source variable"  │
│ │ (source_variable_1). │
│ │ • val1 │ │ │ • val1 │
│ │ • val2 │ │ │ • val2 │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -9,8 +9,8 @@
* +++val1+++ * +++val1+++
* +++val2+++ * +++val2+++
* the value of the variable "the first source variable" * the value of the variable "the first source variable" (source_variable_1)
* the value of the variable "the second source variable" * the value of the variable "the second source variable" (source_variable_2)
**Default**: val1 **Default**: val1
|==== |====

View file

@ -1,8 +1,8 @@
<details><summary>Modified variable</summary> <details><summary>Modified variable</summary>
| Variable | Description | | Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<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/>&nbsp;~~val1~~<br/>&nbsp;~~val2~~<br/>&nbsp;the value of the variable "[the first source variable](#source_variable_1)"<br/>&nbsp;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/>&nbsp;~~val1~~<br/>&nbsp;~~val2~~<br/>&nbsp;the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1)<br/>&nbsp;the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2)<br/>**Default**: val1 |
</details> </details>

View file

@ -7,8 +7,8 @@
<tbody> <tbody>
<tr><td><b>my_variable</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>choice</a></mark> <mark>standard</mark> <mark>mandatory</mark></td><td>A variable.<br/><b>Choices</b>: <ul><li><del>val1</del></li> <tr><td><b>my_variable</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>choice</a></mark> <mark>standard</mark> <mark>mandatory</mark></td><td>A variable.<br/><b>Choices</b>: <ul><li><del>val1</del></li>
<li><del>val2</del></li> <li><del>val2</del></li>
<li>the value of the variable "the first source variable"</li> <li>the value of the variable "the first source variable" (source_variable_1)</li>
<li>the value of the variable "the second source variable"</li></ul><br/><b>Default</b>: val1 </td></tr> <li>the value of the variable "the second source variable" (source_variable_2)</li></ul><br/><b>Default</b>: val1 </td></tr>
</tbody> </tbody>
</table> </table>

View file

@ -1,6 +1,6 @@
# Modified variable # Modified variable
| Variable | Description | | Variable | Description |
|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<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/>&nbsp;~~val1~~<br/>&nbsp;~~val2~~<br/>&nbsp;the value of the variable "[the first source variable](#source_variable_1)"<br/>&nbsp;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/>&nbsp;~~val1~~<br/>&nbsp;~~val2~~<br/>&nbsp;the value of the variable "[the first source variable](#source_variable_1)" (source_variable_1)<br/>&nbsp;the value of the variable "[the second source variable](#source_variable_2)" (source_variable_2)<br/>**Default**: val1 |

View file

@ -9,8 +9,10 @@
│ │ • val2 │ │ │ • val2 │
│ │ • the value of the variable "the │ │ │ • the value of the variable "the │
│ │ first source variable" │ │ first source variable"
│ │ (source_variable_1)
│ │ • the value of the variable "the │ │ │ • the value of the variable "the │
│ │ second source variable" │ │ second source variable"
│ │ (source_variable_2)
│ │ Default: val1 │ │ │ Default: val1 │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -6,6 +6,6 @@
| **variable_2** + | **variable_2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second variable. + `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | The second variable. +
**Default**: +++val1+++ + **Default**: +++val1+++ +
#the value of the variable "the first variable"# #the value of the variable "the first variable" (variable_1).#
|==== |====

View file

@ -1,8 +1,8 @@
<details><summary>Modified variable</summary> <details><summary>Modified variable</summary>
| Variable | Description | | Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------| |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------|
| **<a id="variable_2" name="variable_2">variable_2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Default**: ~~val1~~<br/><ins>the value of the variable "[the first variable](#variable_1)"</ins> | | **<a id="variable_2" name="variable_2">variable_2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Default**: ~~val1~~<br/><ins>the value of the variable "[the first variable](#variable_1)" (variable_1).</ins> |
</details> </details>

View file

@ -2,10 +2,10 @@
<table> <table>
<thead> <thead>
<tr><th>Variable </th><th>Description </th></tr> <tr><th>Variable </th><th>Description </th></tr>
</thead> </thead>
<tbody> <tbody>
<tr><td><b>variable_2</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>string</a></mark> <mark>standard</mark> <mark>mandatory</mark></td><td>The second variable.<br/><b>Default</b>: <del>val1</del><br/><ins>the value of the variable "the first variable"</ins></td></tr> <tr><td><b>variable_2</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>string</a></mark> <mark>standard</mark> <mark>mandatory</mark></td><td>The second variable.<br/><b>Default</b>: <del>val1</del><br/><ins>the value of the variable "the first variable" (variable_1).</ins></td></tr>
</tbody> </tbody>
</table> </table>

View file

@ -1,6 +1,6 @@
# Modified variable # Modified variable
| Variable | Description | | Variable | Description |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------| |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------|
| **<a id="variable_2" name="variable_2">variable_2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Default**: ~~val1~~<br/><ins>the value of the variable "[the first variable](#variable_1)"</ins> | | **<a id="variable_2" name="variable_2">variable_2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | The second variable.<br/>**Default**: ~~val1~~<br/><ins>the value of the variable "[the first variable](#variable_1)" (variable_1).</ins> |

View file

@ -6,6 +6,6 @@
variable_2 │ The second variable. │ variable_2 │ The second variable. │
 string   standard   mandatory  │ Default: val1 │  string   standard   mandatory  │ Default: val1 │
│ │ the value of the variable "the first │ │ │ the value of the variable "the first │
│ │ variable" │ │ variable" (variable_1). │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -8,6 +8,6 @@
**Default**: **Default**:
* +++val1+++ * +++val1+++
* '#the value of the variable "the first variable"#' * '#the value of the variable "the first variable" (variable_1)#'
|==== |====

View file

@ -1,8 +1,8 @@
<details><summary>Modified variable</summary> <details><summary>Modified variable</summary>
| Variable | Description | | Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------| |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<a id="variable_2" name="variable_2">variable_2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` <ins>`unique`</ins> | The second variable.<br/>**Default**: <br/>&nbsp;~~val1~~<br/>&nbsp;<ins>the value of the variable "[the first variable](#variable_1)"</ins> | | **<a id="variable_2" name="variable_2">variable_2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` <ins>`unique`</ins> | The second variable.<br/>**Default**: <br/>&nbsp;~~val1~~<br/>&nbsp;<ins>the value of the variable "[the first variable](#variable_1)" (variable_1)</ins> |
</details> </details>

View file

@ -6,7 +6,7 @@
</thead> </thead>
<tbody> <tbody>
<tr><td><b>variable_2</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>string</a></mark> <mark>multiple</mark> <mark>standard</mark> <mark>mandatory</mark> <mark><ins>unique</ins></mark></td><td>The second variable.<br/><b>Default</b>: <ul><li><del>val1</del></li> <tr><td><b>variable_2</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>string</a></mark> <mark>multiple</mark> <mark>standard</mark> <mark>mandatory</mark> <mark><ins>unique</ins></mark></td><td>The second variable.<br/><b>Default</b>: <ul><li><del>val1</del></li>
<li><ins>the value of the variable "the first variable"</ins></li></ul> </td></tr> <li><ins>the value of the variable "the first variable" (variable_1)</ins></li></ul> </td></tr>
</tbody> </tbody>
</table> </table>

View file

@ -1,6 +1,6 @@
# Modified variable # Modified variable
| Variable | Description | | Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------| |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<a id="variable_2" name="variable_2">variable_2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` <ins>`unique`</ins> | The second variable.<br/>**Default**: <br/>&nbsp;~~val1~~<br/>&nbsp;<ins>the value of the variable "[the first variable](#variable_1)"</ins> | | **<a id="variable_2" name="variable_2">variable_2</a>**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` `standard` `mandatory` <ins>`unique`</ins> | The second variable.<br/>**Default**: <br/>&nbsp;~~val1~~<br/>&nbsp;<ins>the value of the variable "[the first variable](#variable_1)" (variable_1)</ins> |

View file

@ -7,6 +7,6 @@
 string   multiple   standard    │ Default: │  string   multiple   standard    │ Default: │
mandatory   unique  │ • val1 │ mandatory   unique  │ • val1 │
│ │ • the value of the variable "the  │ │ │ • the value of the variable "the  │
│ │ first variable" │ │ first variable" (variable_1) │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -6,8 +6,8 @@
| **__val1___dyn.var2** + | **__val1___dyn.var2** +
**__val2___dyn.var2** + **__val2___dyn.var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. + `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | A second variable. +
**Default**: +++the value of the variable "a first variable"+++ + **Default**: +++the value of the variable "a first variable" (__val1___dyn.var1)+++ +
+++the value of the variable "a first variable"+++ + +++the value of the variable "a first variable" (__val2___dyn.var1)+++ +
#val# #val#
|==== |====

View file

@ -1,8 +1,8 @@
<details><summary>Modified variable</summary> <details><summary>Modified variable</summary>
| Variable | Description | | Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<a id=":::identifier:::_dyn.var2" name=":::identifier:::_dyn.var2">*val1*_dyn.var2</a>**<br/>***val2*_dyn.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: ~~the value of the variable "[a first variable](#:::identifier:::_dyn.var1)"~~<br/>~~the value of the variable "[a first variable](#:::identifier:::_dyn.var1)"~~<br/><ins>val</ins> | | **<a id=":::identifier:::_dyn.var2" name=":::identifier:::_dyn.var2">*val1*_dyn.var2</a>**<br/>***val2*_dyn.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: ~~the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" (*val1*_dyn.var1)~~<br/>~~the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" (*val2*_dyn.var1)~~<br/><ins>val</ins> |
</details> </details>

View file

@ -2,10 +2,10 @@
<table> <table>
<thead> <thead>
<tr><th>Variable </th><th>Description </th></tr> <tr><th>Variable </th><th>Description </th></tr>
</thead> </thead>
<tbody> <tbody>
<tr><td><b><i>val1</i>_dyn.var2</b><br/><b><i>val2</i>_dyn.var2</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>string</a></mark> <mark>standard</mark> <mark>mandatory</mark></td><td>A second variable.<br/><b>Default</b>: <del>the value of the variable "a first variable"</del><br/><del>the value of the variable "a first variable"</del><br/><ins>val</ins></td></tr> <tr><td><b><i>val1</i>_dyn.var2</b><br/><b><i>val2</i>_dyn.var2</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>string</a></mark> <mark>standard</mark> <mark>mandatory</mark></td><td>A second variable.<br/><b>Default</b>: <del>the value of the variable "a first variable" (<i>val1</i>_dyn.var1)</del><br/><del>the value of the variable "a first variable" (<i>val2</i>_dyn.var1)</del><br/><ins>val</ins></td></tr>
</tbody> </tbody>
</table> </table>

View file

@ -1,6 +1,6 @@
# Modified variable # Modified variable
| Variable | Description | | Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<a id=":::identifier:::_dyn.var2" name=":::identifier:::_dyn.var2">*val1*_dyn.var2</a>**<br/>***val2*_dyn.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: ~~the value of the variable "[a first variable](#:::identifier:::_dyn.var1)"~~<br/>~~the value of the variable "[a first variable](#:::identifier:::_dyn.var1)"~~<br/><ins>val</ins> | | **<a id=":::identifier:::_dyn.var2" name=":::identifier:::_dyn.var2">*val1*_dyn.var2</a>**<br/>***val2*_dyn.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: ~~the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" (*val1*_dyn.var1)~~<br/>~~the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" (*val2*_dyn.var1)~~<br/><ins>val</ins> |

View file

@ -5,9 +5,9 @@
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩ ┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
val1_dyn.var2 │ A second variable. │ val1_dyn.var2 │ A second variable. │
val2_dyn.var2 │ Default: the value of the variable  │ val2_dyn.var2 │ Default: the value of the variable  │
 string   standard   mandatory  │ "a first variable"  string   standard   mandatory  │ "a first variable" (val1_dyn.var1)
│ │ the value of the variable "a first  │ │ │ the value of the variable "a first  │
│ │ variable" │ │ variable" (val2_dyn.var1)
│ │ val │ │ │ val │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -9,7 +9,7 @@
**Default**: **Default**:
* +++val+++ * +++val+++
* '#the value of the variable "a first variable"#' * '#the value of the variable "a first variable" (__val1___dyn.var1)#'
* '#the value of the variable "a first variable"#' * '#the value of the variable "a first variable" (__val2___dyn.var1)#'
|==== |====

View file

@ -1,8 +1,8 @@
<details><summary>Modified variable</summary> <details><summary>Modified variable</summary>
| Variable | Description | | Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<a id=":::identifier:::_dyn.var2" name=":::identifier:::_dyn.var2">*val1*_dyn.var2</a>**<br/>***val2*_dyn.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: <br/>&nbsp;~~val~~<br/>&nbsp;<ins>the value of the variable "[a first variable](#:::identifier:::_dyn.var1)"</ins><br/>&nbsp;<ins>the value of the variable "[a first variable](#:::identifier:::_dyn.var1)"</ins> | | **<a id=":::identifier:::_dyn.var2" name=":::identifier:::_dyn.var2">*val1*_dyn.var2</a>**<br/>***val2*_dyn.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: <br/>&nbsp;~~val~~<br/>&nbsp;<ins>the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" (*val1*_dyn.var1)</ins><br/>&nbsp;<ins>the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" (*val2*_dyn.var1)</ins> |
</details> </details>

View file

@ -6,8 +6,8 @@
</thead> </thead>
<tbody> <tbody>
<tr><td><b><i>val1</i>_dyn.var2</b><br/><b><i>val2</i>_dyn.var2</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>string</a></mark> <mark>standard</mark> <mark>mandatory</mark></td><td>A second variable.<br/><b>Default</b>: <ul><li><del>val</del></li> <tr><td><b><i>val1</i>_dyn.var2</b><br/><b><i>val2</i>_dyn.var2</b><br/><mark><a href='https://rougail.readthedocs.io/en/latest/variable.html#variables-types'>string</a></mark> <mark>standard</mark> <mark>mandatory</mark></td><td>A second variable.<br/><b>Default</b>: <ul><li><del>val</del></li>
<li><ins>the value of the variable "a first variable"</ins></li> <li><ins>the value of the variable "a first variable" (<i>val1</i>_dyn.var1)</ins></li>
<li><ins>the value of the variable "a first variable"</ins></li></ul> </td></tr> <li><ins>the value of the variable "a first variable" (<i>val2</i>_dyn.var1)</ins></li></ul> </td></tr>
</tbody> </tbody>
</table> </table>

View file

@ -1,6 +1,6 @@
# Modified variable # Modified variable
| Variable | Description | | Variable | Description |
|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **<a id=":::identifier:::_dyn.var2" name=":::identifier:::_dyn.var2">*val1*_dyn.var2</a>**<br/>***val2*_dyn.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: <br/>&nbsp;~~val~~<br/>&nbsp;<ins>the value of the variable "[a first variable](#:::identifier:::_dyn.var1)"</ins><br/>&nbsp;<ins>the value of the variable "[a first variable](#:::identifier:::_dyn.var1)"</ins> | | **<a id=":::identifier:::_dyn.var2" name=":::identifier:::_dyn.var2">*val1*_dyn.var2</a>**<br/>***val2*_dyn.var2**<br/>[`string`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `standard` `mandatory` | A second variable.<br/>**Default**: <br/>&nbsp;~~val~~<br/>&nbsp;<ins>the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" (*val1*_dyn.var1)</ins><br/>&nbsp;<ins>the value of the variable "[a first variable](#:::identifier:::_dyn.var1)" (*val2*_dyn.var1)</ins> |

View file

@ -7,8 +7,8 @@
val2_dyn.var2 │ Default: │ val2_dyn.var2 │ Default: │
 string   standard   mandatory  │ • val │  string   standard   mandatory  │ • val │
│ │ • the value of the variable "a first │ │ │ • the value of the variable "a first │
│ │ variable" │ │ variable" (val1_dyn.var1)
│ │ • the value of the variable "a first │ │ │ • the value of the variable "a first │
│ │ variable" │ │ variable" (val2_dyn.var1)
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -5,6 +5,6 @@
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | My var1. `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `basic` `mandatory` | My var1.
| **var2** + | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | My var2. + `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | My var2. +
**Default**: the value of the variable "my var1" **Default**: the value of the variable "my var1" (var1).
|==== |====

View file

@ -3,7 +3,7 @@
| Variable | Description | Variable | Description
| **var2** + | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | My var2. + `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | My var2. +
**Default**: the value of an undocumented variable **Default**: the value of an undocumented variable.
| **var3** + | **var3** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` `mandatory` `__hidden__` | My var3. + `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `advanced` `mandatory` `__hidden__` | My var3. +
**Hidden**: var could be hidden. **Hidden**: var could be hidden.

View file

@ -3,6 +3,6 @@
| Variable | Description | Variable | Description
| **var2** + | **var2** +
`https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | My var2. + `https://rougail.readthedocs.io/en/latest/variable.html#variables-types[string]` `standard` `mandatory` | My var2. +
**Default**: the value of an undocumented variable **Default**: the value of an undocumented variable.
|==== |====

View file

@ -13,17 +13,17 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic  ▌  basic 
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃

View file

@ -13,17 +13,17 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic  ▌  basic 
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃

View file

@ -13,17 +13,17 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic  ▌  basic 
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃

View file

@ -13,17 +13,17 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic  ▌  basic 
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃

View file

@ -13,17 +13,17 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic  ▌  basic 
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃

View file

@ -13,17 +13,17 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic  ▌  basic 
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -52,10 +52,10 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
HTTPS Proxy HTTPS Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.https_proxy ▌ Path: manual.https_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃

View file

@ -149,7 +149,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.address", "path": "manual.http_proxy.address",
"type": "variable" "type": "variable"
@ -183,7 +183,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.port", "path": "manual.http_proxy.port",
"type": "variable" "type": "variable"

View file

@ -13,17 +13,17 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic  ▌  basic 
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -52,10 +52,10 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
HTTPS Proxy HTTPS Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.https_proxy ▌ Path: manual.https_proxy
▌  standard  ▌  standard 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -66,6 +66,7 @@
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP address" │ │ "HTTP address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ HTTPS Port. │ manual.https_proxy.port │ HTTPS Port. │
 port   standard   mandatory  │ Validators: │  port   standard   mandatory  │ Validators: │
@ -77,6 +78,7 @@
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP Port" │ │ "HTTP Port"
│ │ (manual.http_proxy.port). │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -8,7 +8,8 @@
standard   mandatory  │ • type domainname │ standard   mandatory  │ • type domainname │
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable  │ │ │ Default: the value of the variable  │
│ │ "HTTP address" │ │ │ "HTTP address"  │
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ HTTPS Port. │ manual.https_proxy.port │ HTTPS Port. │
 port   standard   mandatory  │ Validators: │  port   standard   mandatory  │ Validators: │
@ -20,6 +21,6 @@
│ │ are allowed │ │ │ are allowed │
│ │ Default: 8080 │ │ │ Default: 8080 │
│ │ the value of the variable "HTTP  │ │ │ the value of the variable "HTTP  │
│ │ Port" │ │ Port" (manual.http_proxy.port). │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -42,7 +42,7 @@
"ori_name": "disabled", "ori_name": "disabled",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".", "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": { "path": {
"path": "proxy_mode" "path": "proxy_mode"
}, },
@ -163,7 +163,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.address", "path": "manual.http_proxy.address",
"type": "variable" "type": "variable"
@ -197,7 +197,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.port", "path": "manual.http_proxy.port",
"type": "variable" "type": "variable"

View file

@ -13,19 +13,19 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic   disabled  ▌  basic   disabled 
▌ Disabled: when the variable "Configure Proxy Access to the Internet" hasn't ▌ Disabled: when the variable "Configure Proxy Access to the Internet"
the value "Manual proxy configuration". ▌ (proxy_mode) hasn't the value "Manual proxy configuration".
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -54,10 +54,10 @@ the value "Manual proxy configuration".
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
HTTPS Proxy HTTPS Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.https_proxy ▌ Path: manual.https_proxy
▌  standard  ▌  standard 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -68,6 +68,7 @@ the value "Manual proxy configuration".
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP address" │ │ "HTTP address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ HTTPS Port. │ manual.https_proxy.port │ HTTPS Port. │
 port   standard   mandatory  │ Validators: │  port   standard   mandatory  │ Validators: │
@ -79,6 +80,7 @@ the value "Manual proxy configuration".
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP Port" │ │ "HTTP Port"
│ │ (manual.http_proxy.port). │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -27,6 +27,7 @@
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP address" │ │ "HTTP address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ HTTPS Port. │ manual.https_proxy.port │ HTTPS Port. │
 port   standard   mandatory  │ Validators: │  port   standard   mandatory  │ Validators: │
@ -38,5 +39,6 @@
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP Port" │ │ "HTTP Port"
│ │ (manual.http_proxy.port). │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -42,7 +42,7 @@
"ori_name": "disabled", "ori_name": "disabled",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".", "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": { "path": {
"path": "proxy_mode" "path": "proxy_mode"
}, },

View file

@ -13,19 +13,19 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic   disabled  ▌  basic   disabled 
▌ Disabled: when the variable "Configure Proxy Access to the Internet" hasn't ▌ Disabled: when the variable "Configure Proxy Access to the Internet"
the value "Manual proxy configuration". ▌ (proxy_mode) hasn't the value "Manual proxy configuration".
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃

View file

@ -42,7 +42,7 @@
"ori_name": "disabled", "ori_name": "disabled",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".", "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": { "path": {
"path": "proxy_mode" "path": "proxy_mode"
}, },
@ -149,7 +149,7 @@
"ori_name": "hidden", "ori_name": "hidden",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" has the value \"true\".", "message": "when the variable {0} has the value \"true\".",
"path": { "path": {
"path": "manual.use_for_https" "path": "manual.use_for_https"
}, },
@ -177,7 +177,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.address", "path": "manual.http_proxy.address",
"type": "variable" "type": "variable"
@ -211,7 +211,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.port", "path": "manual.http_proxy.port",
"type": "variable" "type": "variable"

View file

@ -13,19 +13,19 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic   disabled  ▌  basic   disabled 
▌ Disabled: when the variable "Configure Proxy Access to the Internet" hasn't ▌ Disabled: when the variable "Configure Proxy Access to the Internet"
the value "Manual proxy configuration". ▌ (proxy_mode) hasn't the value "Manual proxy configuration".
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -54,12 +54,12 @@ the value "Manual proxy configuration".
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
HTTPS Proxy HTTPS Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.https_proxy ▌ Path: manual.https_proxy
▌  standard   hidden  ▌  standard   hidden 
▌ Hidden: when the variable "Also use this proxy for HTTPS" has the value ▌ Hidden: when the variable "Also use this proxy for HTTPS"
"true". ▌ (manual.use_for_https) has the value "true".
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -70,6 +70,7 @@ the value "Manual proxy configuration".
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP address" │ │ "HTTP address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ HTTPS Port. │ manual.https_proxy.port │ HTTPS Port. │
 port   standard   mandatory  │ Validators: │  port   standard   mandatory  │ Validators: │
@ -81,6 +82,7 @@ the value "Manual proxy configuration".
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP Port" │ │ "HTTP Port"
│ │ (manual.http_proxy.port). │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -9,6 +9,7 @@
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP address" │ │ "HTTP address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ HTTPS Port. │ manual.https_proxy.port │ HTTPS Port. │
 port   standard   mandatory  │ Validators: │  port   standard   mandatory  │ Validators: │
@ -20,5 +21,6 @@
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP Port" │ │ "HTTP Port"
│ │ (manual.http_proxy.port). │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -42,7 +42,7 @@
"ori_name": "disabled", "ori_name": "disabled",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".", "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": { "path": {
"path": "proxy_mode" "path": "proxy_mode"
}, },
@ -149,7 +149,7 @@
"ori_name": "hidden", "ori_name": "hidden",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" has the value \"true\".", "message": "when the variable {0} has the value \"true\".",
"path": { "path": {
"path": "manual.use_for_https" "path": "manual.use_for_https"
}, },
@ -200,7 +200,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.address", "path": "manual.http_proxy.address",
"type": "variable" "type": "variable"
@ -242,7 +242,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.port", "path": "manual.http_proxy.port",
"type": "variable" "type": "variable"

View file

@ -13,19 +13,19 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic   disabled  ▌  basic   disabled 
▌ Disabled: when the variable "Configure Proxy Access to the Internet" hasn't ▌ Disabled: when the variable "Configure Proxy Access to the Internet"
the value "Manual proxy configuration". ▌ (proxy_mode) hasn't the value "Manual proxy configuration".
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -54,18 +54,18 @@ the value "Manual proxy configuration".
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
HTTPS or SOCKS Proxy HTTPS or SOCKS Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ This family builds families dynamically. ▌ This family builds families dynamically.
▌ Path: ▌ Path:
▌  • manual.https_proxy ▌  • manual.https_proxy
▌  • manual.socks_proxy ▌  • manual.socks_proxy
▌  standard   hidden  ▌  standard   hidden 
▌ Hidden: when the variable "Also use this proxy for HTTPS" has the value ▌ Hidden: when the variable "Also use this proxy for HTTPS"
"true". ▌ (manual.use_for_https) has the value "true".
▌ Identifiers: ▌ Identifiers:
▌  • HTTPS ▌  • HTTPS
▌  • SOCKS ▌  • SOCKS
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -76,6 +76,7 @@ the value "Manual proxy configuration".
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP address" │ │ "HTTP address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ HTTPS or SOCKS port. │ manual.https_proxy.port │ HTTPS or SOCKS port. │
manual.socks_proxy.port │ Validators: │ manual.socks_proxy.port │ Validators: │
@ -87,6 +88,7 @@ the value "Manual proxy configuration".
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP Port" │ │ "HTTP Port"
│ │ (manual.http_proxy.port). │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -9,6 +9,7 @@
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP address" │ │ "HTTP address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ HTTPS or SOCKS port. │ manual.https_proxy.port │ HTTPS or SOCKS port. │
manual.socks_proxy.port │ Validators: │ manual.socks_proxy.port │ Validators: │
@ -20,6 +21,7 @@
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP Port" │ │ "HTTP Port"
│ │ (manual.http_proxy.port). │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Deleted variables Deleted variables

View file

@ -42,7 +42,7 @@
"ori_name": "disabled", "ori_name": "disabled",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".", "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": { "path": {
"path": "proxy_mode" "path": "proxy_mode"
}, },
@ -149,7 +149,7 @@
"ori_name": "hidden", "ori_name": "hidden",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" has the value \"true\".", "message": "when the variable {0} has the value \"true\".",
"path": { "path": {
"path": "manual.use_for_https" "path": "manual.use_for_https"
}, },
@ -200,7 +200,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.address", "path": "manual.http_proxy.address",
"type": "variable" "type": "variable"
@ -242,7 +242,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.port", "path": "manual.http_proxy.port",
"type": "variable" "type": "variable"

View file

@ -13,19 +13,19 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic   disabled  ▌  basic   disabled 
▌ Disabled: when the variable "Configure Proxy Access to the Internet" hasn't ▌ Disabled: when the variable "Configure Proxy Access to the Internet"
the value "Manual proxy configuration". ▌ (proxy_mode) hasn't the value "Manual proxy configuration".
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -54,18 +54,18 @@ the value "Manual proxy configuration".
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
HTTPS or SOCKS Proxy HTTPS or SOCKS Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ This family builds families dynamically. ▌ This family builds families dynamically.
▌ Path: ▌ Path:
▌  • manual.https_proxy ▌  • manual.https_proxy
▌  • manual.socks_proxy ▌  • manual.socks_proxy
▌  standard   hidden  ▌  standard   hidden 
▌ Hidden: when the variable "Also use this proxy for HTTPS" has the value ▌ Hidden: when the variable "Also use this proxy for HTTPS"
"true". ▌ (manual.use_for_https) has the value "true".
▌ Identifiers: ▌ Identifiers:
▌  • HTTPS ▌  • HTTPS
▌  • SOCKS ▌  • SOCKS
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -76,6 +76,7 @@ the value "Manual proxy configuration".
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP address" │ │ "HTTP address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ HTTPS or SOCKS port. │ manual.https_proxy.port │ HTTPS or SOCKS port. │
manual.socks_proxy.port │ Validators: │ manual.socks_proxy.port │ Validators: │
@ -87,6 +88,7 @@ the value "Manual proxy configuration".
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP Port" │ │ "HTTP Port"
│ │ (manual.http_proxy.port). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.socks_proxy.version │ SOCKS host version used by proxy. │ manual.socks_proxy.version │ SOCKS host version used by proxy. │
 choice   standard   mandatory    │ Choices: │  choice   standard   mandatory    │ Choices: │

View file

@ -42,7 +42,7 @@
"ori_name": "disabled", "ori_name": "disabled",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".", "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": { "path": {
"path": "proxy_mode" "path": "proxy_mode"
}, },
@ -194,7 +194,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.address", "path": "manual.http_proxy.address",
"type": "variable" "type": "variable"
@ -236,7 +236,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.port", "path": "manual.http_proxy.port",
"type": "variable" "type": "variable"

View file

@ -13,19 +13,19 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic   disabled  ▌  basic   disabled 
▌ Disabled: when the variable "Configure Proxy Access to the Internet" hasn't ▌ Disabled: when the variable "Configure Proxy Access to the Internet"
the value "Manual proxy configuration". ▌ (proxy_mode) hasn't the value "Manual proxy configuration".
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -54,17 +54,17 @@ the value "Manual proxy configuration".
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
HTTPS or SOCKS Proxy HTTPS or SOCKS Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ This family builds families dynamically. ▌ This family builds families dynamically.
▌ Path: ▌ Path:
▌  • manual.https_proxy ▌  • manual.https_proxy
▌  • manual.socks_proxy ▌  • manual.socks_proxy
▌  standard   hidden  ▌  standard   hidden 
▌ Hidden: depends on a calculation. ▌ Hidden: depends on a calculation.
▌ Identifiers: ▌ Identifiers:
▌  • HTTPS ▌  • HTTPS
▌  • SOCKS ▌  • SOCKS
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -75,6 +75,7 @@ the value "Manual proxy configuration".
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP address" │ │ "HTTP address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ HTTPS or SOCKS port. │ manual.https_proxy.port │ HTTPS or SOCKS port. │
manual.socks_proxy.port │ Validators: │ manual.socks_proxy.port │ Validators: │
@ -86,6 +87,7 @@ the value "Manual proxy configuration".
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP Port" │ │ "HTTP Port"
│ │ (manual.http_proxy.port). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.socks_proxy.version │ SOCKS host version used by proxy. │ manual.socks_proxy.version │ SOCKS host version used by proxy. │
 choice   standard   mandatory    │ Choices: │  choice   standard   mandatory    │ Choices: │

View file

@ -42,7 +42,7 @@
"ori_name": "disabled", "ori_name": "disabled",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".", "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": { "path": {
"path": "proxy_mode" "path": "proxy_mode"
}, },
@ -149,7 +149,7 @@
"ori_name": "hidden", "ori_name": "hidden",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"description": "in HTTPS case if \"{0}\" is set to \"true\".", "description": "in HTTPS case if {0} is set to \"true\".",
"variables": [ "variables": [
{ {
"path": "manual.use_for_https", "path": "manual.use_for_https",
@ -202,7 +202,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.address", "path": "manual.http_proxy.address",
"type": "variable" "type": "variable"
@ -244,7 +244,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.port", "path": "manual.http_proxy.port",
"type": "variable" "type": "variable"

View file

@ -13,19 +13,19 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic   disabled  ▌  basic   disabled 
▌ Disabled: when the variable "Configure Proxy Access to the Internet" hasn't ▌ Disabled: when the variable "Configure Proxy Access to the Internet"
the value "Manual proxy configuration". ▌ (proxy_mode) hasn't the value "Manual proxy configuration".
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -54,17 +54,18 @@ the value "Manual proxy configuration".
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
HTTPS or SOCKS Proxy HTTPS or SOCKS Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ This family builds families dynamically. ▌ This family builds families dynamically.
▌ Path: ▌ Path:
▌  • manual.https_proxy ▌  • manual.https_proxy
▌  • manual.socks_proxy ▌  • manual.socks_proxy
▌  standard   hidden  ▌  standard   hidden 
▌ Hidden: in HTTPS case if "Also use this proxy for HTTPS" is set to "true". ▌ Hidden: in HTTPS case if "Also use this proxy for HTTPS"
▌ Identifiers: ▌ (manual.use_for_https) is set to "true".
▌  • HTTPS ▌ Identifiers:
▌  • SOCKS ▌  • HTTPS
▌  • SOCKS
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -75,6 +76,7 @@ the value "Manual proxy configuration".
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP address" │ │ "HTTP address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ HTTPS or SOCKS port. │ manual.https_proxy.port │ HTTPS or SOCKS port. │
manual.socks_proxy.port │ Validators: │ manual.socks_proxy.port │ Validators: │
@ -86,6 +88,7 @@ the value "Manual proxy configuration".
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP Port" │ │ "HTTP Port"
│ │ (manual.http_proxy.port). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.socks_proxy.version │ SOCKS host version used by proxy. │ manual.socks_proxy.version │ SOCKS host version used by proxy. │
 choice   standard   mandatory    │ Choices: │  choice   standard   mandatory    │ Choices: │

View file

@ -42,7 +42,7 @@
"ori_name": "disabled", "ori_name": "disabled",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".", "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": { "path": {
"path": "proxy_mode" "path": "proxy_mode"
}, },
@ -149,7 +149,7 @@
"ori_name": "hidden", "ori_name": "hidden",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"description": "in HTTPS case if \"{0}\" is set to \"true\".", "description": "in HTTPS case if {0} is set to \"true\".",
"variables": [ "variables": [
{ {
"path": "manual.use_for_https", "path": "manual.use_for_https",
@ -202,7 +202,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.address", "path": "manual.http_proxy.address",
"type": "variable" "type": "variable"
@ -244,7 +244,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.port", "path": "manual.http_proxy.port",
"type": "variable" "type": "variable"

View file

@ -13,19 +13,19 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic   disabled  ▌  basic   disabled 
▌ Disabled: when the variable "Configure Proxy Access to the Internet" hasn't ▌ Disabled: when the variable "Configure Proxy Access to the Internet"
the value "Manual proxy configuration". ▌ (proxy_mode) hasn't the value "Manual proxy configuration".
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -54,17 +54,18 @@ the value "Manual proxy configuration".
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
HTTPS or SOCKS Proxy HTTPS or SOCKS Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ This family builds families dynamically. ▌ This family builds families dynamically.
▌ Path: ▌ Path:
▌  • manual.https_proxy ▌  • manual.https_proxy
▌  • manual.socks_proxy ▌  • manual.socks_proxy
▌  standard   hidden  ▌  standard   hidden 
▌ Hidden: in HTTPS case if "Also use this proxy for HTTPS" is set to "true". ▌ Hidden: in HTTPS case if "Also use this proxy for HTTPS"
▌ Identifiers: ▌ (manual.use_for_https) is set to "true".
▌  • HTTPS ▌ Identifiers:
▌  • SOCKS ▌  • HTTPS
▌  • SOCKS
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -75,6 +76,7 @@ the value "Manual proxy configuration".
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP address" │ │ "HTTP address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ HTTPS or SOCKS port. │ manual.https_proxy.port │ HTTPS or SOCKS port. │
manual.socks_proxy.port │ Validators: │ manual.socks_proxy.port │ Validators: │
@ -86,6 +88,7 @@ the value "Manual proxy configuration".
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP Port" │ │ "HTTP Port"
│ │ (manual.http_proxy.port). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.socks_proxy.version │ SOCKS host version used by proxy. │ manual.socks_proxy.version │ SOCKS host version used by proxy. │
 choice   standard   mandatory    │ Choices: │  choice   standard   mandatory    │ Choices: │

View file

@ -42,7 +42,7 @@
"ori_name": "disabled", "ori_name": "disabled",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".", "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": { "path": {
"path": "proxy_mode" "path": "proxy_mode"
}, },
@ -149,7 +149,7 @@
"ori_name": "hidden", "ori_name": "hidden",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"description": "in HTTPS case if \"{0}\" is set to \"true\".", "description": "in HTTPS case if {0} is set to \"true\".",
"variables": [ "variables": [
{ {
"path": "manual.use_for_https", "path": "manual.use_for_https",
@ -202,7 +202,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.address", "path": "manual.http_proxy.address",
"type": "variable" "type": "variable"
@ -244,7 +244,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.port", "path": "manual.http_proxy.port",
"type": "variable" "type": "variable"

View file

@ -13,19 +13,19 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic   disabled  ▌  basic   disabled 
▌ Disabled: when the variable "Configure Proxy Access to the Internet" hasn't ▌ Disabled: when the variable "Configure Proxy Access to the Internet"
the value "Manual proxy configuration". ▌ (proxy_mode) hasn't the value "Manual proxy configuration".
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -54,17 +54,18 @@ the value "Manual proxy configuration".
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
HTTPS or SOCKS Proxy HTTPS or SOCKS Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ This family builds families dynamically. ▌ This family builds families dynamically.
▌ Path: ▌ Path:
▌  • manual.https_proxy ▌  • manual.https_proxy
▌  • manual.socks_proxy ▌  • manual.socks_proxy
▌  standard   hidden  ▌  standard   hidden 
▌ Hidden: in HTTPS case if "Also use this proxy for HTTPS" is set to "true". ▌ Hidden: in HTTPS case if "Also use this proxy for HTTPS"
▌ Identifiers: ▌ (manual.use_for_https) is set to "true".
▌  • HTTPS ▌ Identifiers:
▌  • SOCKS ▌  • HTTPS
▌  • SOCKS
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -75,6 +76,7 @@ the value "Manual proxy configuration".
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP address" │ │ "HTTP address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ HTTPS or SOCKS port. │ manual.https_proxy.port │ HTTPS or SOCKS port. │
manual.socks_proxy.port │ Validators: │ manual.socks_proxy.port │ Validators: │
@ -86,6 +88,7 @@ the value "Manual proxy configuration".
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "HTTP Port" │ │ "HTTP Port"
│ │ (manual.http_proxy.port). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.socks_proxy.version │ SOCKS host version used by proxy. │ manual.socks_proxy.version │ SOCKS host version used by proxy. │
 choice   standard   mandatory    │ Choices: │  choice   standard   mandatory    │ Choices: │

View file

@ -42,7 +42,7 @@
"ori_name": "disabled", "ori_name": "disabled",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".", "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": { "path": {
"path": "proxy_mode" "path": "proxy_mode"
}, },
@ -149,7 +149,7 @@
"ori_name": "hidden", "ori_name": "hidden",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"description": "in HTTPS case if \"{0}\" is set to \"true\".", "description": "in HTTPS case if {0} is set to \"true\".",
"variables": [ "variables": [
{ {
"path": "manual.use_for_https", "path": "manual.use_for_https",
@ -202,7 +202,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.address", "path": "manual.http_proxy.address",
"type": "variable" "type": "variable"
@ -244,7 +244,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.port", "path": "manual.http_proxy.port",
"type": "variable" "type": "variable"

View file

@ -13,19 +13,19 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic   disabled  ▌  basic   disabled 
▌ Disabled: when the variable "Configure Proxy Access to the Internet" hasn't ▌ Disabled: when the variable "Configure Proxy Access to the Internet"
the value "Manual proxy configuration". ▌ (proxy_mode) hasn't the value "Manual proxy configuration".
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -54,17 +54,18 @@ the value "Manual proxy configuration".
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
HTTPS or SOCKS Proxy HTTPS or SOCKS Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ This family builds families dynamically. ▌ This family builds families dynamically.
▌ Path: ▌ Path:
▌  • manual.https_proxy ▌  • manual.https_proxy
▌  • manual.socks_proxy ▌  • manual.socks_proxy
▌  standard   hidden  ▌  standard   hidden 
▌ Hidden: in HTTPS case if "Also use this proxy for HTTPS" is set to "true". ▌ Hidden: in HTTPS case if "Also use this proxy for HTTPS"
▌ Identifiers: ▌ (manual.use_for_https) is set to "true".
▌  • HTTPS ▌ Identifiers:
▌  • SOCKS ▌  • HTTPS
▌  • SOCKS
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -75,6 +76,7 @@ the value "Manual proxy configuration".
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy address" │ │ "Proxy address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ HTTPS or SOCKS port. │ manual.https_proxy.port │ HTTPS or SOCKS port. │
manual.socks_proxy.port │ Validators: │ manual.socks_proxy.port │ Validators: │
@ -86,6 +88,7 @@ the value "Manual proxy configuration".
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy port" │ │ "Proxy port"
│ │ (manual.http_proxy.port). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.socks_proxy.version │ SOCKS host version used by proxy. │ manual.socks_proxy.version │ SOCKS host version used by proxy. │
 choice   standard   mandatory    │ Choices: │  choice   standard   mandatory    │ Choices: │

View file

@ -25,9 +25,11 @@
 domainname   standard   mandatory  │ • type domainname │  domainname   standard   mandatory  │ • type domainname │
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable  │ │ │ Default: the value of the variable  │
│ │ "HTTP address" │ │ │ "HTTP address"  │
│ │ (manual.http_proxy.address). │
│ │ the value of the variable "Proxy  │ │ │ the value of the variable "Proxy  │
│ │ address" │ │ │ address"  │
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ HTTPS or SOCKS port. │ manual.https_proxy.port │ HTTPS or SOCKS port. │
manual.socks_proxy.port │ Validators: │ manual.socks_proxy.port │ Validators: │
@ -38,8 +40,9 @@
│ │ • private ports (greater than 49152) │ │ • private ports (greater than 49152)
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable  │ │ │ Default: the value of the variable  │
│ │ "HTTP Port" │ │ │ "HTTP Port"  │
│ │ (manual.http_proxy.port). │
│ │ the value of the variable "Proxy  │ │ │ the value of the variable "Proxy  │
│ │ port" │ │ port" (manual.http_proxy.port). │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -42,7 +42,7 @@
"ori_name": "disabled", "ori_name": "disabled",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".", "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": { "path": {
"path": "proxy_mode" "path": "proxy_mode"
}, },
@ -149,7 +149,7 @@
"ori_name": "hidden", "ori_name": "hidden",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" has the value \"true\".", "message": "when the variable {0} has the value \"true\".",
"path": { "path": {
"path": "manual.use_for_https" "path": "manual.use_for_https"
}, },
@ -177,7 +177,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.address", "path": "manual.http_proxy.address",
"type": "variable" "type": "variable"
@ -211,7 +211,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.port", "path": "manual.http_proxy.port",
"type": "variable" "type": "variable"
@ -258,7 +258,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.address", "path": "manual.http_proxy.address",
"type": "variable" "type": "variable"
@ -292,7 +292,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.port", "path": "manual.http_proxy.port",
"type": "variable" "type": "variable"

View file

@ -13,19 +13,19 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic   disabled  ▌  basic   disabled 
▌ Disabled: when the variable "Configure Proxy Access to the Internet" hasn't ▌ Disabled: when the variable "Configure Proxy Access to the Internet"
the value "Manual proxy configuration". ▌ (proxy_mode) hasn't the value "Manual proxy configuration".
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -54,12 +54,12 @@ the value "Manual proxy configuration".
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
HTTPS Proxy HTTPS Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.https_proxy ▌ Path: manual.https_proxy
▌  standard   hidden  ▌  standard   hidden 
▌ Hidden: when the variable "Also use this proxy for HTTPS" has the value ▌ Hidden: when the variable "Also use this proxy for HTTPS"
"true". ▌ (manual.use_for_https) has the value "true".
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -70,6 +70,7 @@ the value "Manual proxy configuration".
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy address" │ │ "Proxy address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ Proxy port. │ manual.https_proxy.port │ Proxy port. │
 port   standard   mandatory  │ Validators: │  port   standard   mandatory  │ Validators: │
@ -81,14 +82,15 @@ the value "Manual proxy configuration".
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy port" │ │ "Proxy port"
│ │ (manual.http_proxy.port). │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
SOCKS Proxy SOCKS Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.socks_proxy ▌ Path: manual.socks_proxy
▌  standard  ▌  standard 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -99,6 +101,7 @@ the value "Manual proxy configuration".
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy address" │ │ "Proxy address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.socks_proxy.port │ Proxy port. │ manual.socks_proxy.port │ Proxy port. │
 port   standard   mandatory  │ Validators: │  port   standard   mandatory  │ Validators: │
@ -110,6 +113,7 @@ the value "Manual proxy configuration".
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy port" │ │ "Proxy port"
│ │ (manual.http_proxy.port). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.socks_proxy.version │ SOCKS host version used by proxy. │ manual.socks_proxy.version │ SOCKS host version used by proxy. │
 choice   standard   mandatory  │ Choices: │  choice   standard   mandatory  │ Choices: │

View file

@ -9,6 +9,7 @@
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy address" │ │ "Proxy address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ Proxy port. │ manual.https_proxy.port │ Proxy port. │
 port   standard   mandatory  │ Validators: │  port   standard   mandatory  │ Validators: │
@ -20,6 +21,7 @@
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy port" │ │ "Proxy port"
│ │ (manual.http_proxy.port). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.socks_proxy.address │ Proxy address. │ manual.socks_proxy.address │ Proxy address. │
 domainname   standard   mandatory  │ Validators: │  domainname   standard   mandatory  │ Validators: │
@ -27,6 +29,7 @@
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy address" │ │ "Proxy address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.socks_proxy.port │ Proxy port. │ manual.socks_proxy.port │ Proxy port. │
 port   standard   mandatory  │ Validators: │  port   standard   mandatory  │ Validators: │
@ -38,6 +41,7 @@
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy port" │ │ "Proxy port"
│ │ (manual.http_proxy.port). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.socks_proxy.version │ SOCKS host version used by proxy. │ manual.socks_proxy.version │ SOCKS host version used by proxy. │
 choice   standard   mandatory  │ Choices: │  choice   standard   mandatory  │ Choices: │

View file

@ -42,7 +42,7 @@
"ori_name": "disabled", "ori_name": "disabled",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".", "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": { "path": {
"path": "proxy_mode" "path": "proxy_mode"
}, },
@ -149,7 +149,7 @@
"ori_name": "hidden", "ori_name": "hidden",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" has the value \"true\".", "message": "when the variable {0} has the value \"true\".",
"path": { "path": {
"path": "manual.use_for_https" "path": "manual.use_for_https"
}, },
@ -177,7 +177,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.address", "path": "manual.http_proxy.address",
"type": "variable" "type": "variable"
@ -211,7 +211,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.port", "path": "manual.http_proxy.port",
"type": "variable" "type": "variable"
@ -258,7 +258,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.address", "path": "manual.http_proxy.address",
"type": "variable" "type": "variable"
@ -292,7 +292,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.port", "path": "manual.http_proxy.port",
"type": "variable" "type": "variable"
@ -358,7 +358,7 @@
"ori_name": "disabled", "ori_name": "disabled",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".", "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": { "path": {
"path": "proxy_mode" "path": "proxy_mode"
}, },

View file

@ -13,19 +13,19 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic   disabled  ▌  basic   disabled 
▌ Disabled: when the variable "Configure Proxy Access to the Internet" hasn't ▌ Disabled: when the variable "Configure Proxy Access to the Internet"
the value "Manual proxy configuration". ▌ (proxy_mode) hasn't the value "Manual proxy configuration".
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -54,12 +54,12 @@ the value "Manual proxy configuration".
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
HTTPS Proxy HTTPS Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.https_proxy ▌ Path: manual.https_proxy
▌  standard   hidden  ▌  standard   hidden 
▌ Hidden: when the variable "Also use this proxy for HTTPS" has the value ▌ Hidden: when the variable "Also use this proxy for HTTPS"
"true". ▌ (manual.use_for_https) has the value "true".
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -70,6 +70,7 @@ the value "Manual proxy configuration".
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy address" │ │ "Proxy address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ Proxy port. │ manual.https_proxy.port │ Proxy port. │
 port   standard   mandatory  │ Validators: │  port   standard   mandatory  │ Validators: │
@ -81,14 +82,15 @@ the value "Manual proxy configuration".
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy port" │ │ "Proxy port"
│ │ (manual.http_proxy.port). │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
SOCKS Proxy SOCKS Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.socks_proxy ▌ Path: manual.socks_proxy
▌  standard  ▌  standard 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -99,6 +101,7 @@ the value "Manual proxy configuration".
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy address" │ │ "Proxy address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.socks_proxy.port │ Proxy port. │ manual.socks_proxy.port │ Proxy port. │
 port   standard   mandatory  │ Validators: │  port   standard   mandatory  │ Validators: │
@ -110,6 +113,7 @@ the value "Manual proxy configuration".
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy port" │ │ "Proxy port"
│ │ (manual.http_proxy.port). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.socks_proxy.version │ SOCKS host version used by proxy. │ manual.socks_proxy.version │ SOCKS host version used by proxy. │
 choice   standard   mandatory  │ Choices: │  choice   standard   mandatory  │ Choices: │
@ -131,6 +135,7 @@ the value "Manual proxy configuration".
│ │ • the domain name can be a hostname │ │ │ • the domain name can be a hostname │
│ │ Disabled: when the variable │ │ │ Disabled: when the variable │
│ │ "Configure Proxy Access to the │ │ │ "Configure Proxy Access to the │
│ │ Internet" hasn't the value │ │ │ Internet" (proxy_mode) hasn't the │
│ │ "Automatic proxy configuration URL". │ │ │ value "Automatic proxy configuration │
│ │ URL". │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -13,7 +13,8 @@
│ │ • the domain name can be a hostname │ │ │ • the domain name can be a hostname │
│ │ Disabled: when the variable │ │ │ Disabled: when the variable │
│ │ "Configure Proxy Access to the │ │ │ "Configure Proxy Access to the │
│ │ Internet" hasn't the value │ │ │ Internet" (proxy_mode) hasn't the │
│ │ "Automatic proxy configuration URL". │ │ │ value "Automatic proxy configuration │
│ │ URL". │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

View file

@ -42,7 +42,7 @@
"ori_name": "disabled", "ori_name": "disabled",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" hasn't the value \"Manual proxy configuration\".", "message": "when the variable {0} hasn't the value \"Manual proxy configuration\".",
"path": { "path": {
"path": "proxy_mode" "path": "proxy_mode"
}, },
@ -149,7 +149,7 @@
"ori_name": "hidden", "ori_name": "hidden",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" has the value \"true\".", "message": "when the variable {0} has the value \"true\".",
"path": { "path": {
"path": "manual.use_for_https" "path": "manual.use_for_https"
}, },
@ -177,7 +177,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.address", "path": "manual.http_proxy.address",
"type": "variable" "type": "variable"
@ -211,7 +211,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.port", "path": "manual.http_proxy.port",
"type": "variable" "type": "variable"
@ -258,7 +258,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.address", "path": "manual.http_proxy.address",
"type": "variable" "type": "variable"
@ -292,7 +292,7 @@
"default": { "default": {
"name": "Default", "name": "Default",
"values": { "values": {
"message": "the value of the variable \"{0}\"", "message": "the value of the variable {0}.",
"path": { "path": {
"path": "manual.http_proxy.port", "path": "manual.http_proxy.port",
"type": "variable" "type": "variable"
@ -358,7 +358,7 @@
"ori_name": "disabled", "ori_name": "disabled",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" hasn't the value \"Automatic proxy configuration URL\".", "message": "when the variable {0} hasn't the value \"Automatic proxy configuration URL\".",
"path": { "path": {
"path": "proxy_mode" "path": "proxy_mode"
}, },
@ -396,7 +396,7 @@
"ori_name": "disabled", "ori_name": "disabled",
"access_control": true, "access_control": true,
"annotation": { "annotation": {
"message": "when the variable \"{0}\" has the value \"No proxy\".", "message": "when the variable {0} has the value \"No proxy\".",
"path": { "path": {
"path": "proxy_mode" "path": "proxy_mode"
}, },

View file

@ -13,19 +13,19 @@
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
Manual proxy configuration Manual proxy configuration
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual ▌ Path: manual
▌  basic   disabled  ▌  basic   disabled 
▌ Disabled: when the variable "Configure Proxy Access to the Internet" hasn't ▌ Disabled: when the variable "Configure Proxy Access to the Internet"
the value "Manual proxy configuration". ▌ (proxy_mode) hasn't the value "Manual proxy configuration".
HTTP Proxy HTTP Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.http_proxy ▌ Path: manual.http_proxy
▌  basic  ▌  basic 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -54,12 +54,12 @@ the value "Manual proxy configuration".
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
HTTPS Proxy HTTPS Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.https_proxy ▌ Path: manual.https_proxy
▌  standard   hidden  ▌  standard   hidden 
▌ Hidden: when the variable "Also use this proxy for HTTPS" has the value ▌ Hidden: when the variable "Also use this proxy for HTTPS"
"true". ▌ (manual.use_for_https) has the value "true".
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -70,6 +70,7 @@ the value "Manual proxy configuration".
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy address" │ │ "Proxy address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.https_proxy.port │ Proxy port. │ manual.https_proxy.port │ Proxy port. │
 port   standard   mandatory  │ Validators: │  port   standard   mandatory  │ Validators: │
@ -81,14 +82,15 @@ the value "Manual proxy configuration".
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy port" │ │ "Proxy port"
│ │ (manual.http_proxy.port). │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘
SOCKS Proxy SOCKS Proxy
▌ 🛈 Informations ▌ 🛈 Informations
▌  ▌ 
▌ Path: manual.socks_proxy ▌ Path: manual.socks_proxy
▌  standard  ▌  standard 
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 Variable  ┃ Description  ┃  Variable  ┃ Description  ┃
@ -99,6 +101,7 @@ the value "Manual proxy configuration".
│ │ • the domain name can be an IP │ │ │ • the domain name can be an IP │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy address" │ │ "Proxy address"
│ │ (manual.http_proxy.address). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.socks_proxy.port │ Proxy port. │ manual.socks_proxy.port │ Proxy port. │
 port   standard   mandatory  │ Validators: │  port   standard   mandatory  │ Validators: │
@ -110,6 +113,7 @@ the value "Manual proxy configuration".
│ │ are allowed │ │ │ are allowed │
│ │ Default: the value of the variable │ │ │ Default: the value of the variable │
│ │ "Proxy port" │ │ "Proxy port"
│ │ (manual.http_proxy.port). │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
manual.socks_proxy.version │ SOCKS host version used by proxy. │ manual.socks_proxy.version │ SOCKS host version used by proxy. │
 choice   standard   mandatory  │ Choices: │  choice   standard   mandatory  │ Choices: │
@ -131,8 +135,9 @@ the value "Manual proxy configuration".
│ │ • the domain name can be a hostname │ │ │ • the domain name can be a hostname │
│ │ Disabled: when the variable │ │ │ Disabled: when the variable │
│ │ "Configure Proxy Access to the │ │ │ "Configure Proxy Access to the │
│ │ Internet" hasn't the value │ │ │ Internet" (proxy_mode) hasn't the │
│ │ "Automatic proxy configuration URL". │ │ │ value "Automatic proxy configuration │
│ │ URL". │
├───────────────────────────────────────┼──────────────────────────────────────┤ ├───────────────────────────────────────┼──────────────────────────────────────┤
no_proxy │ Address for which proxy will be │ no_proxy │ Address for which proxy will be │
 domainname   basic   mandatory    │ desactivated. │  domainname   basic   mandatory    │ desactivated. │
@ -146,5 +151,6 @@ the value "Manual proxy configuration".
│ │ CIDR format │ │ │ CIDR format │
│ │ Disabled: when the variable │ │ │ Disabled: when the variable │
│ │ "Configure Proxy Access to the │ │ │ "Configure Proxy Access to the │
│ │ Internet" has the value "No proxy". │ │ │ Internet" (proxy_mode) has the value │
│ │ "No proxy". │
└───────────────────────────────────────┴──────────────────────────────────────┘ └───────────────────────────────────────┴──────────────────────────────────────┘

Some files were not shown because too many files have changed in this diff Show more