diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 7f13f2ac..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,5 +0,0 @@ -# Modified variable - -| Variable | Description | -|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| **proxy_dns_socks5**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` *`disabled`* | Use proxy DNS when using SOCKS v5.
**Default**: false
**Disabled**: if "[Configure Proxy Access to the Internet](#proxy_mode)" is not "Manual proxy configuration"
or "[SOCKS host version used by proxy](#manual.socks_proxy.version)" is "v4".
| diff --git a/README.md b/README.md index 2d44c2be..4edea91b 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ - [List of all the tutorial steps](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/branch/1.1/README.md) -- [[Previous tutorial v1.1_131] A boolean variable](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/v1.1_131/README.md) ([diff](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_132~1..v1.1_132)) +- [[Previous tutorial v1.1_132] A Jinja conditional disabled boolean variable](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/v1.1_132/README.md) ([diff](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_140~1..v1.1_140)) -# [tutorial v1.1_132] A Jinja conditional disabled boolean variable +# [tutorial v1.1_140] Disabled a variable when an other variable are disabled -- [Read the tutorial "A Jinja conditional disabled boolean variable" in the documentation](https://pedago.gwenaelremond.fr/bribes/rougail/tutorial/whatsnext.html#a-jinja-conditional-disabled-boolean-variable) -- [View the changes in the files](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_132~1..v1.1_132) +- [Read the tutorial "Disabled a variable when an other variable are disabled" in the documentation](https://pedago.gwenaelremond.fr/bribes/rougail/tutorial/whatsnext.html#disabled-a-variable-when-an-other-variable-are-disabled) +- [View the changes in the files](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_140~1..v1.1_140) ## Screenshot @@ -26,24 +26,24 @@ pip install rougail-cli rougail-output-exporter rougail-output-doc rougail-user- Then switch to the tutorial page: ```shell -git switch --detach v1.1_132 +git switch --detach v1.1_140 ``` ## Structure

-.
- ├── firefox
- │   ├── 00-proxy.yml
- │   ├── 10-manual.yml
- │   ├── 20-manual.yml
- │   ├── 30-auto.yml
- │   ├── 40-no_proxy.yml
- │   ├── 50-prompt_authentication.yml
- │   └── 55-proxy_dns_socks5.yml
- └── types
-     └── proxy
-         └── 00-type.yml
+.
+ ├── firefox
+ │   ├── 00-proxy.yml
+ │   ├── 10-manual.yml
+ │   ├── 20-manual.yml
+ │   ├── 30-auto.yml
+ │   ├── 40-no_proxy.yml
+ │   ├── 50-prompt_authentication.yml
+ │   └── 55-proxy_dns_socks5.yml
+ └── types
+     └── proxy
+         └── 00-type.yml


Contents of the firefox/55-proxy_dns_socks5.yml file @@ -58,7 +58,7 @@ proxy_dns_socks5: default: false disabled: jinja: |- - {{ _.proxy_mode != "Manual proxy configuration" or _.manual.socks_proxy.version == 'v4' }} + {{ _.manual.socks_proxy.version is propertyerror or _.manual.socks_proxy.version == 'v4' }} return_type: boolean description: |- if "_.proxy_mode" is not "Manual proxy configuration" @@ -76,14 +76,6 @@ rougail -m firefox/ --types types/proxy -o doc [View the documentation file](DOCUMENTATION.md) -*** -### Let's generate the changelog - -```shell -rougail -m firefox/ --types types/proxy -o doc --doc.contents changelog --doc.changelog.previous_json_file previous.yml -``` -[View the changelog file](CHANGELOG.md) - *** ## User datas @@ -131,11 +123,29 @@ manual: ```shell rougail -m firefox/ --types types/proxy -u yaml -yf config/02/config.yml ``` -> [!CAUTION] -> -> - proxy_dns_socks5 (Use proxy DNS when using SOCKS v5) -> - :bell: unexpected error "cannot access to option "version" (SOCKS host version used by proxy) because has property "disabled"" in function "jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is "v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', '__internal_type': 'boolean', '__internal_multi': False, '__internal_files': ['firefox/55-proxy_dns_socks5.yml'], '__internal_attribute': 'disabled', '__internal_variable': 'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 'Manual proxy configuration', '_.manual.socks_proxy.version': PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml", it will be ignored -> - :stop_sign: unexpected error "cannot access to option "version" (SOCKS host version used by proxy) because has property "disabled"" in function "jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is "v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', '__internal_type': 'boolean', '__internal_multi': False, '__internal_files': ['firefox/55-proxy_dns_socks5.yml'], '__internal_attribute': 'disabled', '__internal_variable': 'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 'Manual proxy configuration', '_.manual.socks_proxy.version': PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml" +> [!NOTE] +> +> **Caption:** +> - Variable +> - Unmodifiable variable +> - Default value +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: proxy_mode (Configure Proxy Access to the Internet): Manual proxy configuration ← loaded from the YAML file "config/02/config.yml" (:hourglass_flowing_sand: No proxy) +- :open_file_folder: manual (Manual proxy configuration) + - :open_file_folder: http_proxy (HTTP Proxy) + - :notebook: address (HTTP proxy address): http.proxy.net ← loaded from the YAML file "config/02/config.yml" + - :notebook: port (HTTP proxy port): 8080 + - :notebook: use_for_https (Also use this proxy for HTTPS): true + - :open_file_folder: https_proxy (HTTPS Proxy) + - :notebook: address (HTTPS proxy address): http.proxy.net + - :notebook: port (HTTPS proxy port): 8080 + - :open_file_folder: socks_proxy (SOCKS Proxy) + - :notebook: address (SOCKS proxy address): null +- :notebook: no_proxy (Address for which proxy will be desactivated): [] +- :notebook: prompt_authentication (Prompt for authentication if password is saved): true *** ### Example 3 @@ -158,13 +168,33 @@ proxy_dns_socks5: true ```shell rougail -m firefox/ --types types/proxy -u yaml -yf config/03/config.yml ``` -> [!CAUTION] +> [!WARNING] > -> - proxy_dns_socks5 (Use proxy DNS when using SOCKS v5) -> - :bell: unexpected error "cannot access to option "version" (SOCKS host version used by proxy) because has property "disabled"" in function "jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is "v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', '__internal_type': 'boolean', '__internal_multi': False, '__internal_files': ['firefox/55-proxy_dns_socks5.yml'], '__internal_attribute': 'disabled', '__internal_variable': 'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 'Manual proxy configuration', '_.manual.socks_proxy.version': PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml", it will be ignored -> - :bell: unexpected error "cannot access to option "version" (SOCKS host version used by proxy) because has property "disabled"" in function "jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is "v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', '__internal_type': 'boolean', '__internal_multi': False, '__internal_files': ['firefox/55-proxy_dns_socks5.yml'], '__internal_attribute': 'disabled', '__internal_variable': 'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 'Manual proxy configuration', '_.manual.socks_proxy.version': PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml", it will be ignored -> - :bell: unexpected error "cannot access to option "version" (SOCKS host version used by proxy) because has property "disabled"" in function "jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is "v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', '__internal_type': 'boolean', '__internal_multi': False, '__internal_files': ['firefox/55-proxy_dns_socks5.yml'], '__internal_attribute': 'disabled', '__internal_variable': 'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 'Manual proxy configuration', '_.manual.socks_proxy.version': PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml", it will be ignored when loading from the YAML file "config/03/config.yml" -> - :stop_sign: unexpected error "cannot access to option "version" (SOCKS host version used by proxy) because has property "disabled"" in function "jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is "v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', '__internal_type': 'boolean', '__internal_multi': False, '__internal_files': ['firefox/55-proxy_dns_socks5.yml'], '__internal_attribute': 'disabled', '__internal_variable': 'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 'Manual proxy configuration', '_.manual.socks_proxy.version': PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml" +> - proxy_dns_socks5 (Use proxy DNS when using SOCKS v5): :bell: variable has property disabled, it will be ignored when loading from the YAML file "config/03/config.yml" + +> [!NOTE] +> +> **Caption:** +> - Variable +> - Unmodifiable variable +> - Default value +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: proxy_mode (Configure Proxy Access to the Internet): Manual proxy configuration ← loaded from the YAML file "config/03/config.yml" (:hourglass_flowing_sand: No proxy) +- :open_file_folder: manual (Manual proxy configuration) + - :open_file_folder: http_proxy (HTTP Proxy) + - :notebook: address (HTTP proxy address): http.proxy.net ← loaded from the YAML file "config/03/config.yml" + - :notebook: port (HTTP proxy port): 8080 + - :notebook: use_for_https (Also use this proxy for HTTPS): true + - :open_file_folder: https_proxy (HTTPS Proxy) + - :notebook: address (HTTPS proxy address): http.proxy.net + - :notebook: port (HTTPS proxy port): 8080 + - :open_file_folder: socks_proxy (SOCKS Proxy) + - :notebook: address (SOCKS proxy address): null +- :notebook: no_proxy (Address for which proxy will be desactivated): [] +- :notebook: prompt_authentication (Prompt for authentication if password is saved): true *** ### Example 4 @@ -188,17 +218,37 @@ manual: ```shell rougail -m firefox/ --types types/proxy -u yaml -yf config/04/config.yml ``` -> [!CAUTION] +> [!WARNING] > -> - proxy_dns_socks5 (Use proxy DNS when using SOCKS v5) -> - :bell: unexpected error "cannot access to option "version" (SOCKS host version used by proxy) because has property "disabled"" in function "jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is "v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', '__internal_type': 'boolean', '__internal_multi': False, '__internal_files': ['firefox/55-proxy_dns_socks5.yml'], '__internal_attribute': 'disabled', '__internal_variable': 'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 'Manual proxy configuration', '_.manual.socks_proxy.version': PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml", it will be ignored -> - :bell: unexpected error "cannot access to option "version" (SOCKS host version used by proxy) because has property "disabled"" in function "jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is "v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', '__internal_type': 'boolean', '__internal_multi': False, '__internal_files': ['firefox/55-proxy_dns_socks5.yml'], '__internal_attribute': 'disabled', '__internal_variable': 'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 'Manual proxy configuration', '_.manual.socks_proxy.version': PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml", it will be ignored -> - :stop_sign: unexpected error "cannot access to option "version" (SOCKS host version used by proxy) because has property "disabled"" in function "jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is "v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', '__internal_type': 'boolean', '__internal_multi': False, '__internal_files': ['firefox/55-proxy_dns_socks5.yml'], '__internal_attribute': 'disabled', '__internal_variable': 'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 'Manual proxy configuration', '_.manual.socks_proxy.version': PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml" > - manual (Manual proxy configuration) > - socks_proxy (SOCKS Proxy) > - version (SOCKS host version used by proxy): :bell: variable has property disabled, it will be ignored when loading from the YAML file "config/04/config.yml" +> [!NOTE] +> +> **Caption:** +> - Variable +> - Unmodifiable variable +> - Default value +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: proxy_mode (Configure Proxy Access to the Internet): Manual proxy configuration ← loaded from the YAML file "config/04/config.yml" (:hourglass_flowing_sand: No proxy) +- :open_file_folder: manual (Manual proxy configuration) + - :open_file_folder: http_proxy (HTTP Proxy) + - :notebook: address (HTTP proxy address): http.proxy.net ← loaded from the YAML file "config/04/config.yml" + - :notebook: port (HTTP proxy port): 8080 + - :notebook: use_for_https (Also use this proxy for HTTPS): true + - :open_file_folder: https_proxy (HTTPS Proxy) + - :notebook: address (HTTPS proxy address): http.proxy.net + - :notebook: port (HTTPS proxy port): 8080 + - :open_file_folder: socks_proxy (SOCKS Proxy) + - :notebook: address (SOCKS proxy address): null +- :notebook: no_proxy (Address for which proxy will be desactivated): [] +- :notebook: prompt_authentication (Prompt for authentication if password is saved): true + *** -- [[Next tutorial v1.1_140] Disabled a variable when an other variable are disabled](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/v1.1_140/README.md) ([diff](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_140~1..v1.1_140)) +- [[Next tutorial v1.1_150] A variable in avanced mode](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/v1.1_150/README.md) ([diff](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_150~1..v1.1_150)) diff --git a/config/02/output_ro.html b/config/02/output_ro.html index 3d3331ef..a2c6928a 100644 --- a/config/02/output_ro.html +++ b/config/02/output_ro.html @@ -1,28 +1,24 @@ -
🛑 Caution
-┗━━ proxy_dns_socks5 (Use proxy DNS when using SOCKS v5)
-    ┣━━ 🔔 unexpected error "cannot access to option "version" (SOCKS host 
-    version used by proxy) because has property "disabled"" in function 
-    "jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is 
-    not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is 
-    "v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', 
-    '__internal_type': 'boolean', '__internal_multi': False, 
-    '__internal_files': ['firefox/55-proxy_dns_socks5.yml'], 
-    '__internal_attribute': 'disabled', '__internal_variable': 
-    'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 
-    'Manual proxy configuration', '_.manual.socks_proxy.version': 
-    PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy 
-    DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml", it will 
-    be ignored
-    ┗━━ 🛑 unexpected error "cannot access to option "version" (SOCKS host 
-        version used by proxy) because has property "disabled"" in function 
-        "jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is 
-        not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is 
-        "v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', 
-        '__internal_type': 'boolean', '__internal_multi': False, 
-        '__internal_files': ['firefox/55-proxy_dns_socks5.yml'], 
-        '__internal_attribute': 'disabled', '__internal_variable': 
-        'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 
-        'Manual proxy configuration', '_.manual.socks_proxy.version': 
-        PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy 
-        DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml"
+
╭───────────────────── Caption ─────────────────────╮
+│ Variable              Default value               │
+│ Unmodifiable variable Modified value              │
+│                       (⏳ Original default value) │
+╰───────────────────────────────────────────────────╯
+Variables:
+┣━━ 📓 proxy_mode (Configure Proxy Access to the Internet): Manual proxy 
+configuration ◀ loaded from the YAML file "config/02/config.yml" (⏳ No 
+proxy)
+┣━━ 📂 manual (Manual proxy configuration)
+┣━━ 📂 http_proxy (HTTP Proxy)
+┣━━ 📓 address (HTTP proxy address): http.proxy.net ◀ loaded from the 
+YAML file "config/02/config.yml"
+┗━━ 📓 port (HTTP proxy port): 8080
+┣━━ 📓 use_for_https (Also use this proxy for HTTPS): true
+┣━━ 📂 https_proxy (HTTPS Proxy)
+┣━━ 📓 address (HTTPS proxy address): http.proxy.net
+┗━━ 📓 port (HTTPS proxy port): 8080
+┗━━ 📂 socks_proxy (SOCKS Proxy)
+    ┗━━ 📓 address (SOCKS proxy address): null
+┣━━ 📓 no_proxy (Address for which proxy will be desactivated): []
+┗━━ 📓 prompt_authentication (Prompt for authentication if password is saved): 
+    true
 
diff --git a/config/03/output_ro.html b/config/03/output_ro.html index 1c649c3c..c69168f8 100644 --- a/config/03/output_ro.html +++ b/config/03/output_ro.html @@ -1,54 +1,29 @@ -
🛑 Caution
-┗━━ proxy_dns_socks5 (Use proxy DNS when using SOCKS v5)
-    ┣━━ 🔔 unexpected error "cannot access to option "version" (SOCKS host 
-    version used by proxy) because has property "disabled"" in function 
-    "jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is 
-    not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is 
-    "v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', 
-    '__internal_type': 'boolean', '__internal_multi': False, 
-    '__internal_files': ['firefox/55-proxy_dns_socks5.yml'], 
-    '__internal_attribute': 'disabled', '__internal_variable': 
-    'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 
-    'Manual proxy configuration', '_.manual.socks_proxy.version': 
-    PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy 
-    DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml", it will 
-    be ignored
-    ┣━━ 🔔 unexpected error "cannot access to option "version" (SOCKS host 
-    version used by proxy) because has property "disabled"" in function 
-    "jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is 
-    not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is 
-    "v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', 
-    '__internal_type': 'boolean', '__internal_multi': False, 
-    '__internal_files': ['firefox/55-proxy_dns_socks5.yml'], 
-    '__internal_attribute': 'disabled', '__internal_variable': 
-    'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 
-    'Manual proxy configuration', '_.manual.socks_proxy.version': 
-    PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy 
-    DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml", it will 
-    be ignored
-    ┣━━ 🔔 unexpected error "cannot access to option "version" (SOCKS host 
-    version used by proxy) because has property "disabled"" in function 
-    "jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is 
-    not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is 
-    "v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', 
-    '__internal_type': 'boolean', '__internal_multi': False, 
-    '__internal_files': ['firefox/55-proxy_dns_socks5.yml'], 
-    '__internal_attribute': 'disabled', '__internal_variable': 
-    'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 
-    'Manual proxy configuration', '_.manual.socks_proxy.version': 
-    PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy 
-    DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml", it will 
-    be ignored when loading from the YAML file "config/03/config.yml"
-    ┗━━ 🛑 unexpected error "cannot access to option "version" (SOCKS host 
-        version used by proxy) because has property "disabled"" in function 
-        "jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is 
-        not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is 
-        "v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', 
-        '__internal_type': 'boolean', '__internal_multi': False, 
-        '__internal_files': ['firefox/55-proxy_dns_socks5.yml'], 
-        '__internal_attribute': 'disabled', '__internal_variable': 
-        'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 
-        'Manual proxy configuration', '_.manual.socks_proxy.version': 
-        PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy 
-        DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml"
+
🔔 Warning
+┗━━ proxy_dns_socks5 (Use proxy DNS when using SOCKS v5): 🔔 variable has 
+    property disabled, it will be ignored when loading from the YAML file 
+    "config/03/config.yml"
+
+╭───────────────────── Caption ─────────────────────╮
+│ Variable              Default value               │
+│ Unmodifiable variable Modified value              │
+│                       (⏳ Original default value) │
+╰───────────────────────────────────────────────────╯
+Variables:
+┣━━ 📓 proxy_mode (Configure Proxy Access to the Internet): Manual proxy 
+configuration ◀ loaded from the YAML file "config/03/config.yml" (⏳ No 
+proxy)
+┣━━ 📂 manual (Manual proxy configuration)
+┣━━ 📂 http_proxy (HTTP Proxy)
+┣━━ 📓 address (HTTP proxy address): http.proxy.net ◀ loaded from the 
+YAML file "config/03/config.yml"
+┗━━ 📓 port (HTTP proxy port): 8080
+┣━━ 📓 use_for_https (Also use this proxy for HTTPS): true
+┣━━ 📂 https_proxy (HTTPS Proxy)
+┣━━ 📓 address (HTTPS proxy address): http.proxy.net
+┗━━ 📓 port (HTTPS proxy port): 8080
+┗━━ 📂 socks_proxy (SOCKS Proxy)
+    ┗━━ 📓 address (SOCKS proxy address): null
+┣━━ 📓 no_proxy (Address for which proxy will be desactivated): []
+┗━━ 📓 prompt_authentication (Prompt for authentication if password is saved): 
+    true
 
diff --git a/config/04/output_ro.html b/config/04/output_ro.html index ac1b9f42..61682fce 100644 --- a/config/04/output_ro.html +++ b/config/04/output_ro.html @@ -1,46 +1,31 @@ -
🛑 Caution
-┣━━ proxy_dns_socks5 (Use proxy DNS when using SOCKS v5)
-┣━━ 🔔 unexpected error "cannot access to option "version" (SOCKS host 
-version used by proxy) because has property "disabled"" in function 
-"jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is 
-not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is 
-"v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', 
-'__internal_type': 'boolean', '__internal_multi': False, 
-'__internal_files': ['firefox/55-proxy_dns_socks5.yml'], 
-'__internal_attribute': 'disabled', '__internal_variable': 
-'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 
-'Manual proxy configuration', '_.manual.socks_proxy.version': 
-PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy 
-DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml", it will 
-be ignored
-┣━━ 🔔 unexpected error "cannot access to option "version" (SOCKS host 
-version used by proxy) because has property "disabled"" in function 
-"jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is 
-not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is 
-"v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', 
-'__internal_type': 'boolean', '__internal_multi': False, 
-'__internal_files': ['firefox/55-proxy_dns_socks5.yml'], 
-'__internal_attribute': 'disabled', '__internal_variable': 
-'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 
-'Manual proxy configuration', '_.manual.socks_proxy.version': 
-PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy 
-DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml", it will 
-be ignored
-┗━━ 🛑 unexpected error "cannot access to option "version" (SOCKS host 
-    version used by proxy) because has property "disabled"" in function 
-    "jinja_to_property" with arguments "['disabled', 'if "_.proxy_mode" is 
-    not "Manual proxy configuration"\nor "_.manual.socks_proxy.version" is 
-    "v4"']" and "{'__internal_jinja': 'disabled_proxy_dns_socks5', 
-    '__internal_type': 'boolean', '__internal_multi': False, 
-    '__internal_files': ['firefox/55-proxy_dns_socks5.yml'], 
-    '__internal_attribute': 'disabled', '__internal_variable': 
-    'proxy_dns_socks5', 'when': True, 'inverse': False, '_.proxy_mode': 
-    'Manual proxy configuration', '_.manual.socks_proxy.version': 
-    PropertiesOptionError(None)}" for option "proxy_dns_socks5" (Use proxy 
-    DNS when using SOCKS v5) in "firefox/55-proxy_dns_socks5.yml"
-┗━━ manual (Manual proxy configuration)
-    ┗━━ socks_proxy (SOCKS Proxy)
-        ┗━━ version (SOCKS host version used by proxy): 🔔 variable has property
-            disabled, it will be ignored when loading from the YAML file 
-            "config/04/config.yml"
+
🔔 Warning
+┗━━ manual (Manual proxy configuration)
+    ┗━━ socks_proxy (SOCKS Proxy)
+        ┗━━ version (SOCKS host version used by proxy): 🔔 variable has property
+            disabled, it will be ignored when loading from the YAML file 
+            "config/04/config.yml"
+
+╭───────────────────── Caption ─────────────────────╮
+│ Variable              Default value               │
+│ Unmodifiable variable Modified value              │
+│                       (⏳ Original default value) │
+╰───────────────────────────────────────────────────╯
+Variables:
+┣━━ 📓 proxy_mode (Configure Proxy Access to the Internet): Manual proxy 
+configuration ◀ loaded from the YAML file "config/04/config.yml" (⏳ No 
+proxy)
+┣━━ 📂 manual (Manual proxy configuration)
+┣━━ 📂 http_proxy (HTTP Proxy)
+┣━━ 📓 address (HTTP proxy address): http.proxy.net ◀ loaded from the 
+YAML file "config/04/config.yml"
+┗━━ 📓 port (HTTP proxy port): 8080
+┣━━ 📓 use_for_https (Also use this proxy for HTTPS): true
+┣━━ 📂 https_proxy (HTTPS Proxy)
+┣━━ 📓 address (HTTPS proxy address): http.proxy.net
+┗━━ 📓 port (HTTPS proxy port): 8080
+┗━━ 📂 socks_proxy (SOCKS Proxy)
+    ┗━━ 📓 address (SOCKS proxy address): null
+┣━━ 📓 no_proxy (Address for which proxy will be desactivated): []
+┗━━ 📓 prompt_authentication (Prompt for authentication if password is saved): 
+    true
 
diff --git a/tree.html b/tree.html index e58916be..fb133599 100644 --- a/tree.html +++ b/tree.html @@ -1,14 +1,14 @@

-.
- ├── firefox
- │   ├── 00-proxy.yml
- │   ├── 10-manual.yml
- │   ├── 20-manual.yml
- │   ├── 30-auto.yml
- │   ├── 40-no_proxy.yml
- │   ├── 50-prompt_authentication.yml
- │   └── 55-proxy_dns_socks5.yml
- └── types
-     └── proxy
-         └── 00-type.yml
+.
+ ├── firefox
+ │   ├── 00-proxy.yml
+ │   ├── 10-manual.yml
+ │   ├── 20-manual.yml
+ │   ├── 30-auto.yml
+ │   ├── 40-no_proxy.yml
+ │   ├── 50-prompt_authentication.yml
+ │   └── 55-proxy_dns_socks5.yml
+ └── types
+     └── proxy
+         └── 00-type.yml


\ No newline at end of file