diff --git a/CHANGELOG.md b/CHANGELOG.md index 379e8f56..7f13f2ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -# New variable +# Modified variable -| Variable | Description | -|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------| -| **proxy_dns_socks5**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | Use proxy DNS when using SOCKS v5.
**Default**: false | +| 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/DOCUMENTATION.md b/DOCUMENTATION.md index bd4f3a06..41d1c8ed 100644 --- a/DOCUMENTATION.md +++ b/DOCUMENTATION.md @@ -55,4 +55,4 @@ | **auto**
[`web address`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` *`disabled`* | Automatic proxy configuration URL.
**Validators**:
• well-known ports (1 to 1023) are allowed
• registred ports (1024 to 49151) are allowed
• type domainname
• the domain name can be a hostname
**Disabled**: when the variable "[Configure Proxy Access to the Internet](#proxy_mode)" hasn't the value "Automatic proxy configuration URL". | | **no_proxy**
[`domainname`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `multiple` *`disabled`* `unique` | Address for which proxy will be desactivated.
Connections to localhost, 127.0.0.1/8 and ::1 are never proxied.
**Validators**:
• type domainname
• the domain name can starts by a dot
• the domain name can be a hostname
• the domain name can be an IP
• the domain name can be network in CIDR format
**Examples**:
• .mozilla.org
• .net.nz
• 192.168.1.0/24
**Disabled**: when the variable "[Configure Proxy Access to the Internet](#proxy_mode)" has the value "No proxy". | | **prompt_authentication**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` *`disabled`* | Prompt for authentication if password is saved.
**Default**: true
**Disabled**: when the variable "[Configure Proxy Access to the Internet](#proxy_mode)" has the value "No proxy". | -| **proxy_dns_socks5**
[`boolean`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | Use proxy DNS when using SOCKS v5.
**Default**: false | +| **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 62440ef2..2d44c2be 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_130] A conditional disabled boolean variable](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/v1.1_130/README.md) ([diff](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_131~1..v1.1_131)) +- [[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)) -# [tutorial v1.1_131] A boolean variable +# [tutorial v1.1_132] A Jinja conditional disabled boolean variable -- [Read the tutorial "A boolean variable" in the documentation](https://pedago.gwenaelremond.fr/bribes/rougail/tutorial/whatsnext.html#a-boolean-variable) -- [View the changes in the files](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_131~1..v1.1_131) +- [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) ## 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_131 +git switch --detach v1.1_132 ``` ## 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 @@ -53,7 +53,16 @@ Contents of the firefox/55-proxy_dns_socks5.yml file --- version: 1.1 -proxy_dns_socks5: false # Use proxy DNS when using SOCKS v5 +proxy_dns_socks5: + description: Use proxy DNS when using SOCKS v5 + default: false + disabled: + jinja: |- + {{ _.proxy_mode != "Manual proxy configuration" or _.manual.socks_proxy.version == 'v4' }} + return_type: boolean + description: |- + if "_.proxy_mode" is not "Manual proxy configuration" + or "_.manual.socks_proxy.version" is "v4" ... ``` @@ -101,7 +110,6 @@ rougail -m firefox/ --types types/proxy -u yaml -yf config/01/config.yml Variables: - :notebook: proxy_mode (Configure Proxy Access to the Internet): No proxy -- :notebook: proxy_dns_socks5 (Use proxy DNS when using SOCKS v5): false *** ### Example 2 @@ -123,30 +131,11 @@ manual: ```shell rougail -m firefox/ --types types/proxy -u yaml -yf config/02/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/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 -- :notebook: proxy_dns_socks5 (Use proxy DNS when using SOCKS v5): false +> [!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" *** ### Example 3 @@ -169,30 +158,13 @@ proxy_dns_socks5: true ```shell rougail -m firefox/ --types types/proxy -u yaml -yf 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 -- :notebook: proxy_dns_socks5 (Use proxy DNS when using SOCKS v5): true ← loaded from the YAML file "config/03/config.yml" (:hourglass_flowing_sand: false) +> [!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 +> - :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" *** ### Example 4 @@ -216,38 +188,17 @@ manual: ```shell rougail -m firefox/ --types types/proxy -u yaml -yf config/04/config.yml ``` -> [!WARNING] +> [!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 +> - :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 -- :notebook: proxy_dns_socks5 (Use proxy DNS when using SOCKS v5): false - *** -- [[Next 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_132~1..v1.1_132)) +- [[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)) diff --git a/config/01/output_ro.html b/config/01/output_ro.html index 24c5c570..bb585a60 100644 --- a/config/01/output_ro.html +++ b/config/01/output_ro.html @@ -2,6 +2,5 @@ │ Variable Default value │ ╰────────────────────────╯ Variables: -┣━━ 📓 proxy_mode (Configure Proxy Access to the Internet): No proxy -┗━━ 📓 proxy_dns_socks5 (Use proxy DNS when using SOCKS v5): false +┗━━ 📓 proxy_mode (Configure Proxy Access to the Internet): No proxy diff --git a/config/02/output_ro.html b/config/02/output_ro.html index 22e7747f..3d3331ef 100644 --- a/config/02/output_ro.html +++ b/config/02/output_ro.html @@ -1,25 +1,28 @@ -
╭───────────────────── 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
-┗━━ 📓 proxy_dns_socks5 (Use proxy DNS when using SOCKS v5): false
+
🛑 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"
 
diff --git a/config/03/output_ro.html b/config/03/output_ro.html index 5ece3f9b..1c649c3c 100644 --- a/config/03/output_ro.html +++ b/config/03/output_ro.html @@ -1,26 +1,54 @@ -
╭───────────────────── 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
-┗━━ 📓 proxy_dns_socks5 (Use proxy DNS when using SOCKS v5): true ◀ loaded from 
-    the YAML file "config/03/config.yml" (⏳ false)
+
🛑 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"
 
diff --git a/config/04/output_ro.html b/config/04/output_ro.html index 23b42592..ac1b9f42 100644 --- a/config/04/output_ro.html +++ b/config/04/output_ro.html @@ -1,32 +1,46 @@ -
🔔 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
-┗━━ 📓 proxy_dns_socks5 (Use proxy DNS when using SOCKS v5): false
+
🛑 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"
 
diff --git a/tree.html b/tree.html index 53d16687..e58916be 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