diff --git a/README.md b/README.md index 117adf9b..39d7300d 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ - [Summary](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/branch/1.1/README.md) -- [[tutorial v1.1_181] Calculate a random color](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/v1.1_181/README.md) ([diff](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_182~1..v1.1_182)) +- [[tutorial v1.1_182] Auto save value](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/v1.1_182/README.md) ([diff](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_190~1..v1.1_190)) -# [tutorial v1.1_182] Auto save value +# [tutorial v1.1_190] A variable name that conflict with a known the variable's attribute "type" -[Read the tutorial "Auto save value" in the documentation](https://pedago.gwenaelremond.fr/bribes/rougail/tutorial/jinja.html#auto-save-value) +[Read the tutorial "A variable name that conflict with a known the variable's attribute "type"" in the documentation](https://pedago.gwenaelremond.fr/bribes/rougail/tutorial/jinja.html#a-variable-name-that-conflict-with-a-known-the-variable's-attribute-type) ## Screenshot @@ -25,27 +25,27 @@ pip install rougail-cli rougail-output-exporter rougail-output-doc rougail-user- Then switch to the tutorial page: ```shell -git switch --detach v1.1_182 +git switch --detach v1.1_190 ``` ## 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
- │ └── 60-dns_over_https.yml
- ├── foxyproxy
- │ └── 00-foxyproxy.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
+ │ └── 60-dns_over_https.yml
+ ├── foxyproxy
+ │ └── 00-foxyproxy.yml
+ └── types
+ └── proxy
+ └── 00-type.yml
╭──────── Caption ────────╮ -│ Variable Default value │ -│ Modified value │ -╰─────────────────────────╯ +╭────────────── Caption ───────────────╮ +│ Variable Default value │ +│ Modified value │ +│ (⏳ Original default value) │ +╰──────────────────────────────────────╯ Variables: ┣━━ 📂 firefox (Firefox) ┃ ┣━━ 📓 proxy_mode (Configure Proxy Access to the Internet): No proxy @@ -12,5 +13,8 @@ Variables: ┗━━ 📂 title (Title or Description) ┣━━ 📓 title (Title or Description): My company ◀ loaded from the ┃ YAML file "config/02/config.yml" - ┗━━ 📓 color (Color): #b86df7 + ┣━━ 📓 type (Proxy Type): HTTP ◀ loaded from the YAML file + ┃ "config/02/config.yml" (⏳ Direct (no proxy)) + ┗━━ 📓 color (Color): #66cc66 ◀ loaded from the YAML file + "config/02/config.yml"diff --git a/config/03/cmd_ro.txt b/config/03/cmd_ro.txt new file mode 100644 index 00000000..70205a54 --- /dev/null +++ b/config/03/cmd_ro.txt @@ -0,0 +1 @@ +rougail -m firefox/ -s Firefox -xn FoxyProxy -xd 0 foxyproxy/ --types types/proxy --modes_level basic standard advanced -u yaml -yf config/03/config.yml \ No newline at end of file diff --git a/config/03/config.yml b/config/03/config.yml new file mode 100644 index 00000000..68cc8676 --- /dev/null +++ b/config/03/config.yml @@ -0,0 +1,17 @@ +--- +firefox: + proxy_mode: Manual proxy configuration + manual: + http_proxy: + address: http.proxy.net +foxyproxy: + proxies: + - title: My company + color: '#66cc66' + type: HTTP + - title: An other company + color: '#cc66cc' + type: SOCKS5 + - title: WPAD + color: '#1166cc' + type: WPAD diff --git a/config/03/output_ro.html b/config/03/output_ro.html new file mode 100644 index 00000000..57f39aa4 --- /dev/null +++ b/config/03/output_ro.html @@ -0,0 +1,53 @@ +╭───────────────────── Caption ─────────────────────╮ +│ Variable Default value │ +│ Unmodifiable variable Modified value │ +│ (⏳ Original default value) │ +╰───────────────────────────────────────────────────╯ +Variables: +┣━━ 📂 firefox (Firefox) +┃ ┣━━ 📓 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): http.proxy.net +┃ ┃ ┣━━ 📓 port (SOCKS proxy port): 8080 +┃ ┃ ┗━━ 📓 version (SOCKS host version used by proxy): v5 +┃ ┣━━ 📓 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 +┃ ┗━━ 📂 dns_over_https (DNS over HTTPS) +┃ ┗━━ 📓 enable_dns_over_https (Enable DNS over HTTPS): false +┗━━ 📂 foxyproxy (FoxyProxy) + ┗━━ 📂 proxies (Proxy configuration) + ┣━━ 📂 title (Title or Description) + ┃ ┣━━ 📓 title (Title or Description): My company ◀ loaded from the + ┃ ┃ YAML file "config/03/config.yml" + ┃ ┣━━ 📓 type (Proxy Type): HTTP ◀ loaded from the YAML file + ┃ ┃ "config/03/config.yml" (⏳ Direct (no proxy)) + ┃ ┗━━ 📓 color (Color): #66cc66 ◀ loaded from the YAML file + ┃ "config/03/config.yml" + ┣━━ 📂 title (Title or Description) + ┃ ┣━━ 📓 title (Title or Description): An other company ◀ loaded from + ┃ ┃ the YAML file "config/03/config.yml" + ┃ ┣━━ 📓 type (Proxy Type): SOCKS5 ◀ loaded from the YAML file + ┃ ┃ "config/03/config.yml" (⏳ Direct (no proxy)) + ┃ ┗━━ 📓 color (Color): #cc66cc ◀ loaded from the YAML file + ┃ "config/03/config.yml" + ┗━━ 📂 title (Title or Description) + ┣━━ 📓 title (Title or Description): WPAD ◀ loaded from the YAML + ┃ file "config/03/config.yml" + ┣━━ 📓 type (Proxy Type): WPAD ◀ loaded from the YAML file + ┃ "config/03/config.yml" (⏳ Direct (no proxy)) + ┗━━ 📓 color (Color): #1166cc ◀ loaded from the YAML file + "config/03/config.yml" +diff --git a/tree.html b/tree.html index b0b1769a..f30aec83 100644 --- a/tree.html +++ b/tree.html @@ -1,17 +1,17 @@-.
\ No newline at end of file
- ├── 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
- │ └── 60-dns_over_https.yml
- ├── foxyproxy
- │ └── 00-foxyproxy.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
+ │ └── 60-dns_over_https.yml
+ ├── foxyproxy
+ │ └── 00-foxyproxy.yml
+ └── types
+ └── proxy
+ └── 00-type.yml