2025-11-04 19:22:03 +01:00
- [Summary ](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/branch/1.1/README.md )
2025-11-04 19:22:08 +01:00
- [[tutorial v1.1_020] Group variables inside a family](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/v1.1_020/README.md) ([diff](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_020~1..v1.1_020))
2025-11-04 19:22:03 +01:00
2025-11-04 19:22:08 +01:00
# [tutorial v1.1_021)] Group variables inside a sub family
2025-11-04 19:22:03 +01:00
2025-11-04 19:22:08 +01:00
[View the diff ](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_021~1..v1.1_021 )
2025-11-04 19:22:03 +01:00
2025-11-04 19:22:02 +01:00
## Screenshot
< img src = "firefox.png" width = 50% height = 50% alt = "Firefox Proxy setting" / >
## Structure
2025-11-04 19:22:03 +01:00
### firefox/00-proxy.yml
```yml
%YAML 1.2
---
version: 1.1
2025-11-04 19:22:04 +01:00
2025-11-04 19:22:06 +01:00
proxy_mode:
description: Configure Proxy Access to the Internet
choices:
- No proxy
- Auto-detect proxy settings for this network
- Use system proxy settings
- Manual proxy configuration
- Automatic proxy configuration URL
default: No proxy
2025-11-04 19:22:03 +01:00
...
```
2025-11-04 19:22:07 +01:00
### firefox/10-manual.yml
2025-11-04 19:22:04 +01:00
```yml
2025-11-04 19:22:07 +01:00
%YAML 1.2
2025-11-04 19:22:04 +01:00
---
2025-11-04 19:22:07 +01:00
version: 1.1
2025-11-04 19:22:04 +01:00
2025-11-04 19:22:08 +01:00
manual: # Manual proxy configuration
http_proxy:
description: HTTP Proxy
type: family
2025-11-04 19:22:07 +01:00
...
2025-11-04 19:22:04 +01:00
```
2025-11-04 19:22:07 +01:00
### Let's generate the documentation
2025-11-04 19:22:04 +01:00
```console
2025-11-04 19:22:08 +01:00
foo@bar:~$ git switch --detach v1.1_021
2025-11-04 19:22:07 +01:00
foo@bar:~$ rougail -m firefox/ -o doc -do github
2025-11-04 19:22:04 +01:00
```
2025-11-04 19:22:07 +01:00
| Variable | Description |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **proxy_mode** < br /> [`choice`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `mandatory` | Configure Proxy Access to the Internet.< br /> **Choices**: < br /> - No proxy ** ← (default)**< br /> - Auto-detect proxy settings for this network< br /> - Use system proxy settings< br /> - Manual proxy configuration< br /> - Automatic proxy configuration URL |
2025-11-04 19:22:04 +01:00
2025-11-04 19:22:08 +01:00
- [[tutorial v1.1_022] A variable inside sub family](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/v1.1_022/README.md) ([diff](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/v1.1_022~1..v1.1_022))