fix: version + changelog
54
build.py
|
|
@ -1,6 +1,7 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
from json import dump, loads
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from ruamel.yaml import YAML
|
from ruamel.yaml import YAML
|
||||||
from ansi2html import Ansi2HTMLConverter
|
from ansi2html import Ansi2HTMLConverter
|
||||||
|
|
@ -12,12 +13,14 @@ from rougail.user_data_yaml import RougailUserDataYaml
|
||||||
from rougail.output_doc import RougailOutputDoc
|
from rougail.output_doc import RougailOutputDoc
|
||||||
|
|
||||||
|
|
||||||
|
PREVIOUS = Path("previous.yml")
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
version = sys.argv[1]
|
commit_id = sys.argv[1]
|
||||||
# rougailconfig = RougailConfig.copy()
|
# rougailconfig = RougailConfig.copy()
|
||||||
rougailconfig = get_rougail_config(backward_compatibility=False, add_extra_options=False)
|
rougailconfig = get_rougail_config(backward_compatibility=False, add_extra_options=False)
|
||||||
rougailconfig['main_structural_directories'] = ['firefox']
|
rougailconfig['main_structural_directories'] = ['firefox']
|
||||||
rougailconfig['default_structural_format_version'] = version
|
|
||||||
if Path('config/namespace').is_file():
|
if Path('config/namespace').is_file():
|
||||||
has_namespace = True
|
has_namespace = True
|
||||||
has_foxyproxy = False
|
has_foxyproxy = False
|
||||||
|
|
@ -44,6 +47,7 @@ if __name__ == "__main__":
|
||||||
rougailconfig['doc.title_level'] = 3
|
rougailconfig['doc.title_level'] = 3
|
||||||
inventory = RougailOutputDoc(config, rougailconfig=rougailconfig.copy())
|
inventory = RougailOutputDoc(config, rougailconfig=rougailconfig.copy())
|
||||||
inventory.load_formatter()
|
inventory.load_formatter()
|
||||||
|
inv_formatter = inventory.formatter
|
||||||
rougailconfig['step.output'] = 'console'
|
rougailconfig['step.output'] = 'console'
|
||||||
summary = Path('summary_before.md')
|
summary = Path('summary_before.md')
|
||||||
if summary.is_file():
|
if summary.is_file():
|
||||||
|
|
@ -59,11 +63,11 @@ if __name__ == "__main__":
|
||||||
else:
|
else:
|
||||||
all_dirs = [[rougailconfig['main_structural_directories']]]
|
all_dirs = [[rougailconfig['main_structural_directories']]]
|
||||||
|
|
||||||
doc += inventory.formatter.title('Screenshot', 2) + '\n'
|
doc += inv_formatter.title('Screenshot', 2) + '\n'
|
||||||
doc += f'<img src="{namespace}.png" width=50% height=50% alt="{namespace.capitalize()} Proxy setting"/>\n\n'
|
doc += f'<img src="{namespace}.png" width=50% height=50% alt="{namespace.capitalize()} Proxy setting"/>\n\n'
|
||||||
# with doc_file.open('r') as docfh:
|
# with doc_file.open('r') as docfh:
|
||||||
# doc += docfh.read()
|
# doc += docfh.read()
|
||||||
doc += '\n' + inventory.formatter.title('Structure', 2) + '\n'
|
doc += '\n' + inv_formatter.title('Structure', 2) + '\n'
|
||||||
print(all_dirs)
|
print(all_dirs)
|
||||||
for r in all_dirs:
|
for r in all_dirs:
|
||||||
for dirs in r:
|
for dirs in r:
|
||||||
|
|
@ -75,17 +79,17 @@ if __name__ == "__main__":
|
||||||
namespace = f.parent.name
|
namespace = f.parent.name
|
||||||
file_found = True
|
file_found = True
|
||||||
if f.name.endswith('.yml') or f.name.endswith('.yaml'):
|
if f.name.endswith('.yml') or f.name.endswith('.yaml'):
|
||||||
doc += inventory.formatter.title(str(f), 3)
|
doc += inv_formatter.title(str(f), 3)
|
||||||
doc += '\n```yml\n'
|
doc += '\n```yml\n'
|
||||||
with f.open(encoding="utf8") as file_fh:
|
with f.open(encoding="utf8") as file_fh:
|
||||||
doc += file_fh.read()
|
doc += file_fh.read()
|
||||||
doc += '\n```\n'
|
doc += '\n```\n'
|
||||||
rougailconfig['step.output'] = 'doc'
|
rougailconfig['step.output'] = 'doc'
|
||||||
inv_doc = inventory.run()[1]
|
inv_doc = inventory.run()[1]
|
||||||
rougailconfig['step.output'] = 'console'
|
|
||||||
if file_found and inv_doc:
|
if file_found and inv_doc:
|
||||||
doc += inventory.formatter.title('Generated documentation', 3)
|
doc += inv_formatter.title('Generated documentation', 3)
|
||||||
CMD = f"foo@bar:~$ rougail -v {version} -m firefox/ "
|
CMD = f"foo@bar:~$ git switch --detach {commit_id}\n"
|
||||||
|
CMD += "foo@bar:~$ rougail -m firefox/ "
|
||||||
if has_namespace:
|
if has_namespace:
|
||||||
CMD += "-s Firefox "
|
CMD += "-s Firefox "
|
||||||
if has_foxyproxy:
|
if has_foxyproxy:
|
||||||
|
|
@ -95,10 +99,28 @@ if __name__ == "__main__":
|
||||||
cmd = CMD + "-o doc -do github"
|
cmd = CMD + "-o doc -do github"
|
||||||
doc += f'```console\n{cmd}\n```\n'
|
doc += f'```console\n{cmd}\n```\n'
|
||||||
doc += inv_doc
|
doc += inv_doc
|
||||||
|
if PREVIOUS.is_file():
|
||||||
|
rougailconfig["doc.title_level"] = 5
|
||||||
|
rougailconfig["doc.contents"] = ["changelog"]
|
||||||
|
rougailconfig["doc.previous_json_file"] = str(PREVIOUS)
|
||||||
|
inv_doc = inventory.run()[1]
|
||||||
|
if file_found and inv_doc:
|
||||||
|
doc += inv_formatter.title('Changelog', 3)
|
||||||
|
cmd = CMD + "-o doc --doc.contents variables changelog -do github"
|
||||||
|
doc += f'```console\n{cmd}\n```\n'
|
||||||
|
doc += inv_doc
|
||||||
|
# save PREVIOUS
|
||||||
|
rougailconfig["doc.contents"] = ["variables"]
|
||||||
|
rougailconfig['doc.output_format'] = 'json'
|
||||||
|
data = inventory.run()[1]
|
||||||
|
if data:
|
||||||
|
with PREVIOUS.open('w') as fh:
|
||||||
|
dump(loads(data), fh)
|
||||||
#
|
#
|
||||||
|
rougailconfig['step.output'] = 'console'
|
||||||
config = Path('config')
|
config = Path('config')
|
||||||
if config.is_dir():
|
if config.is_dir():
|
||||||
doc += inventory.formatter.title('User data', 2)
|
doc += inv_formatter.title('User data', 2)
|
||||||
configs = list(config.iterdir())
|
configs = list(config.iterdir())
|
||||||
configs.sort()
|
configs.sort()
|
||||||
for idx, dirname in enumerate(configs):
|
for idx, dirname in enumerate(configs):
|
||||||
|
|
@ -106,24 +128,24 @@ if __name__ == "__main__":
|
||||||
continue
|
continue
|
||||||
for filename in dirname.iterdir():
|
for filename in dirname.iterdir():
|
||||||
if filename.name.endswith('.yml') or filename.name.endswith('.yaml'):
|
if filename.name.endswith('.yml') or filename.name.endswith('.yaml'):
|
||||||
doc += inventory.formatter.title(f'Example {idx + 1}', 3)
|
doc += inv_formatter.title(f'Example {idx + 1}', 3)
|
||||||
doc += inventory.formatter.title(str(filename), 4)
|
doc += inv_formatter.title(str(filename), 4)
|
||||||
doc += '\n```yml\n'
|
doc += '\n```yml\n'
|
||||||
with filename.open(encoding="utf8") as file_fh:
|
with filename.open(encoding="utf8") as file_fh:
|
||||||
doc += file_fh.read()
|
doc += file_fh.read()
|
||||||
doc += '\n```\n'
|
doc += '\n```\n'
|
||||||
# with filename.open(encoding="utf8") as file_fh:
|
# with filename.open(encoding="utf8") as file_fh:
|
||||||
# objects = yaml.load(file_fh)
|
# objects = yaml.load(file_fh)
|
||||||
# doc += inventory.formatter.yaml(objects)
|
# doc += inv_formatter.yaml(objects)
|
||||||
#readme = dirname / 'README.md'
|
#readme = dirname / 'README.md'
|
||||||
#if readme.is_file():
|
#if readme.is_file():
|
||||||
# doc += inventory.formatter.title('Description', 4)
|
# doc += inv_formatter.title('Description', 4)
|
||||||
# with readme.open() as fh:
|
# with readme.open() as fh:
|
||||||
# doc += fh.read() + '\n\n'
|
# doc += fh.read() + '\n\n'
|
||||||
rougail = Rougail(rougailconfig)
|
rougail = Rougail(rougailconfig)
|
||||||
tiramisu_config = rougail.run()
|
tiramisu_config = rougail.run()
|
||||||
rougailconfig['step.user_data'] = ['yaml']
|
rougailconfig['step.user_data'] = ['yaml']
|
||||||
rougailconfig['yaml.filename'] = [str(filename.absolute())]
|
rougailconfig['yaml.filename'] = [str(filename)]
|
||||||
data = RougailUserDataYaml(tiramisu_config, rougailconfig=rougailconfig)
|
data = RougailUserDataYaml(tiramisu_config, rougailconfig=rougailconfig)
|
||||||
ret = data.run()
|
ret = data.run()
|
||||||
errors = rougail.user_datas(ret)
|
errors = rougail.user_datas(ret)
|
||||||
|
|
@ -134,7 +156,7 @@ if __name__ == "__main__":
|
||||||
)
|
)
|
||||||
console = export.run()[1]
|
console = export.run()[1]
|
||||||
conv = Ansi2HTMLConverter(inline=True)
|
conv = Ansi2HTMLConverter(inline=True)
|
||||||
doc += inventory.formatter.title('Output', 4)
|
doc += inv_formatter.title('Output', 4)
|
||||||
cmd = CMD + f"-u yaml -ff {filename}"
|
cmd = CMD + f"-u yaml -ff {filename}"
|
||||||
doc += f"```console\n{cmd}\n```\n"
|
doc += f"```console\n{cmd}\n```\n"
|
||||||
conv_data = '<pre>' + conv.convert(console, full=False) + "</pre>\n"
|
conv_data = '<pre>' + conv.convert(console, full=False) + "</pre>\n"
|
||||||
|
|
@ -150,7 +172,7 @@ if __name__ == "__main__":
|
||||||
)
|
)
|
||||||
console = export.run()[1]
|
console = export.run()[1]
|
||||||
conv = Ansi2HTMLConverter(inline=True)
|
conv = Ansi2HTMLConverter(inline=True)
|
||||||
doc += inventory.formatter.title('Output in read write mode', 4)
|
doc += inv_formatter.title('Output in read write mode', 4)
|
||||||
cmd = cmd + " --cli.read_write"
|
cmd = cmd + " --cli.read_write"
|
||||||
doc += f"```console\n{cmd}\n```\n"
|
doc += f"```console\n{cmd}\n```\n"
|
||||||
conv_data = '<pre>' + conv.convert(console, full=False) + "</pre>\n"
|
conv_data = '<pre>' + conv.convert(console, full=False) + "</pre>\n"
|
||||||
|
|
|
||||||
6
build.sh
|
|
@ -40,7 +40,7 @@ cd - > /dev/null
|
||||||
for i in $(ls -d "examples"/* | sort); do
|
for i in $(ls -d "examples"/* | sort); do
|
||||||
num=$(echo $(basename "$i"))
|
num=$(echo $(basename "$i"))
|
||||||
echo "$num"
|
echo "$num"
|
||||||
commit_id="v$VERSION_$num"
|
commit_id="v${VERSION}_$num"
|
||||||
summary="[tutorial $(basename $i)] $(head -n 1 $i/README.md)"
|
summary="[tutorial $(basename $i)] $(head -n 1 $i/README.md)"
|
||||||
echo "- [$summary](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/$commit_id/README.md) ([diff](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/${commit_id}~1..$commit_id))" >> summary_total.md
|
echo "- [$summary](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/$commit_id/README.md) ([diff](https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/${commit_id}~1..$commit_id))" >> summary_total.md
|
||||||
done
|
done
|
||||||
|
|
@ -56,7 +56,7 @@ for i in $(ls -d "examples"/* | sort); do
|
||||||
rm -rf "$DEST/config"
|
rm -rf "$DEST/config"
|
||||||
num=$(echo $(basename "$i"))
|
num=$(echo $(basename "$i"))
|
||||||
echo "$num"
|
echo "$num"
|
||||||
commit_id="v$VERSION_$num"
|
commit_id="v${VERSION}_$num"
|
||||||
summary="[tutorial $(basename $i)] $(head -n 1 $i/README.md)"
|
summary="[tutorial $(basename $i)] $(head -n 1 $i/README.md)"
|
||||||
diff_url="https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/${commit_id}~1..$commit_id"
|
diff_url="https://forge.cloud.silique.fr/stove/rougail-tutorials/compare/${commit_id}~1..$commit_id"
|
||||||
echo " - [$summary](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/$commit_id/README.md) ([diff]($diff_url))" >> summary.md
|
echo " - [$summary](https://forge.cloud.silique.fr/stove/rougail-tutorials/src/commit/$commit_id/README.md) ([diff]($diff_url))" >> summary.md
|
||||||
|
|
@ -100,7 +100,7 @@ for i in $(ls -d "examples"/* | sort); do
|
||||||
if [ -f config/mode ]; then
|
if [ -f config/mode ]; then
|
||||||
mv config/mode mode
|
mv config/mode mode
|
||||||
fi
|
fi
|
||||||
"$BUILDER"/build.py "$VERSION"
|
"$BUILDER"/build.py "$commit_id"
|
||||||
rm -rf config/*/README.md config/read_write config/namespace
|
rm -rf config/*/README.md config/read_write config/namespace
|
||||||
rm -rf jinja_caches summary.md summary_before.md summary_after.md summary_total.md
|
rm -rf jinja_caches summary.md summary_before.md summary_after.md summary_total.md
|
||||||
if [ -f mode ]; then
|
if [ -f mode ]; then
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
The format version in commandline
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
%YAML 1.2
|
|
||||||
---
|
|
||||||
version: 1.1
|
|
||||||
...
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Type variable is optional
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Bases type is optional if default value
|
Copy HTTP manual proxy to HTTPS manual proxy
|
||||||
|
|
|
||||||
|
|
@ -5,4 +5,17 @@ version: 1.1
|
||||||
manual:
|
manual:
|
||||||
|
|
||||||
use_for_https: true # Also use this proxy for HTTPS
|
use_for_https: true # Also use this proxy for HTTPS
|
||||||
|
|
||||||
|
https_proxy: # HTTPS Proxy
|
||||||
|
|
||||||
|
address:
|
||||||
|
description: HTTPS address
|
||||||
|
type: domainname
|
||||||
|
params:
|
||||||
|
allow_ip: true
|
||||||
|
|
||||||
|
port:
|
||||||
|
description: HTTPS Port
|
||||||
|
type: port
|
||||||
|
default: 8080
|
||||||
...
|
...
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Copy HTTP manual proxy to HTTPS manual proxy
|
An hidden family
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,9 @@ manual:
|
||||||
|
|
||||||
use_for_https: true # Also use this proxy for HTTPS
|
use_for_https: true # Also use this proxy for HTTPS
|
||||||
|
|
||||||
https_proxy: # HTTPS Proxy
|
https_proxy:
|
||||||
|
description: HTTPS Proxy
|
||||||
|
hidden: true
|
||||||
|
|
||||||
address:
|
address:
|
||||||
description: HTTPS address
|
description: HTTPS address
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
An hidden family
|
A conditional hidden family with a variable
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,8 @@ manual:
|
||||||
|
|
||||||
https_proxy:
|
https_proxy:
|
||||||
description: HTTPS Proxy
|
description: HTTPS Proxy
|
||||||
hidden: true
|
hidden:
|
||||||
|
variable: _.use_for_https
|
||||||
|
|
||||||
address:
|
address:
|
||||||
description: HTTPS address
|
description: HTTPS address
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
A conditional hidden family with a variable
|
A calculated default value
|
||||||
|
|
|
||||||
|
|
@ -16,9 +16,12 @@ manual:
|
||||||
type: domainname
|
type: domainname
|
||||||
params:
|
params:
|
||||||
allow_ip: true
|
allow_ip: true
|
||||||
|
default:
|
||||||
|
variable: __.http_proxy.address
|
||||||
|
|
||||||
port:
|
port:
|
||||||
description: HTTPS Port
|
description: HTTPS Port
|
||||||
type: port
|
type: port
|
||||||
default: 8080
|
default:
|
||||||
|
variable: __.http_proxy.port
|
||||||
...
|
...
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
A calculated default value
|
Variable type and parameters type are copied with default value
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
../013/config
|
../017/config
|
||||||
|
|
@ -13,15 +13,11 @@ manual:
|
||||||
|
|
||||||
address:
|
address:
|
||||||
description: HTTPS address
|
description: HTTPS address
|
||||||
type: domainname
|
|
||||||
params:
|
|
||||||
allow_ip: true
|
|
||||||
default:
|
default:
|
||||||
variable: __.http_proxy.address
|
variable: __.http_proxy.address
|
||||||
|
|
||||||
port:
|
port:
|
||||||
description: HTTPS Port
|
description: HTTPS Port
|
||||||
type: port
|
|
||||||
default:
|
default:
|
||||||
variable: __.http_proxy.port
|
variable: __.http_proxy.port
|
||||||
...
|
...
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Variable type and parameters type are copied with default value
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
../017/config
|
|
||||||
|
|
@ -1,23 +0,0 @@
|
||||||
%YAML 1.2
|
|
||||||
---
|
|
||||||
version: 1.1
|
|
||||||
|
|
||||||
manual:
|
|
||||||
|
|
||||||
use_for_https: true # Also use this proxy for HTTPS
|
|
||||||
|
|
||||||
https_proxy:
|
|
||||||
description: HTTPS Proxy
|
|
||||||
hidden:
|
|
||||||
variable: _.use_for_https
|
|
||||||
|
|
||||||
address:
|
|
||||||
description: HTTPS address
|
|
||||||
default:
|
|
||||||
variable: __.http_proxy.address
|
|
||||||
|
|
||||||
port:
|
|
||||||
description: HTTPS Port
|
|
||||||
default:
|
|
||||||
variable: __.http_proxy.port
|
|
||||||
...
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Family: "shorthand" mode
|
A variable with type "web_address"
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Shorthand mode
|
Automatic proxy
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
../010/config
|
|
||||||
2
examples/050/config/01/config.yaml
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
---
|
||||||
|
auto: https://auto.proxy.net/wpad.dat
|
||||||
2
examples/050/config/02/config.yaml
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
---
|
||||||
|
proxy_mode: Automatic proxy configuration URL
|
||||||
BIN
examples/050/firefox.png
Normal file
|
After Width: | Height: | Size: 118 KiB |
|
|
@ -1,23 +0,0 @@
|
||||||
%YAML 1.2
|
|
||||||
---
|
|
||||||
version: 1.1
|
|
||||||
|
|
||||||
manual:
|
|
||||||
description: Manual proxy configuration
|
|
||||||
disabled:
|
|
||||||
variable: _.proxy_mode
|
|
||||||
when_not: Manual proxy configuration
|
|
||||||
|
|
||||||
http_proxy: # HTTP Proxy
|
|
||||||
|
|
||||||
address:
|
|
||||||
description: HTTP address
|
|
||||||
type: domainname
|
|
||||||
params:
|
|
||||||
allow_ip: true
|
|
||||||
|
|
||||||
port:
|
|
||||||
description: HTTP Port
|
|
||||||
type: port
|
|
||||||
default: 8080
|
|
||||||
...
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Variable: "shorthand" mode
|
A conditional disabled variable
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
../013/config
|
|
||||||
2
examples/051/config/01/config.yaml
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
---
|
||||||
|
auto: https://auto.proxy.net/wpad.dat
|
||||||
2
examples/051/config/02/config.yaml
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
---
|
||||||
|
proxy_mode: Automatic proxy configuration URL
|
||||||
|
|
@ -1,43 +0,0 @@
|
||||||
%YAML 1.2
|
|
||||||
---
|
|
||||||
version: 1.1
|
|
||||||
|
|
||||||
manual:
|
|
||||||
|
|
||||||
use_for_https: true # Also use this proxy for HTTPS
|
|
||||||
|
|
||||||
'{{ identifier }}_proxy':
|
|
||||||
description: '{{ identifier }} Proxy'
|
|
||||||
hidden:
|
|
||||||
jinja: |-
|
|
||||||
{% if my_identifier == 'HTTPS' and manual.use_for_https %}
|
|
||||||
HTTPS is same has HTTP
|
|
||||||
{% endif %}
|
|
||||||
description: in HTTPS case if "manual.use_for_https" is set to True
|
|
||||||
params:
|
|
||||||
my_identifier:
|
|
||||||
type: identifier
|
|
||||||
dynamic:
|
|
||||||
- HTTPS
|
|
||||||
- SOCKS
|
|
||||||
|
|
||||||
address:
|
|
||||||
description: '{{ identifier }} address'
|
|
||||||
default:
|
|
||||||
variable: __.http_proxy.address
|
|
||||||
|
|
||||||
port:
|
|
||||||
description: '{{ identifier }} port'
|
|
||||||
default:
|
|
||||||
variable: __.http_proxy.port
|
|
||||||
|
|
||||||
version:
|
|
||||||
description: SOCKS host version used by proxy
|
|
||||||
choices:
|
|
||||||
- v4
|
|
||||||
- v5
|
|
||||||
default: v5
|
|
||||||
disabled:
|
|
||||||
type: identifier
|
|
||||||
when: HTTPS
|
|
||||||
...
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
A variable with type "web_address"
|
A variable with type "domainname", parameters type and disabled
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Automatic proxy
|
Address for which proxy will be desactivated
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1 @@
|
||||||
---
|
---
|
||||||
auto: https://auto.proxy.net/wpad.dat
|
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,4 @@
|
||||||
---
|
---
|
||||||
proxy_mode: Automatic proxy configuration URL
|
proxy_mode: Automatic proxy configuration URL
|
||||||
|
auto: https://auto.proxy.net/wpad.dat
|
||||||
|
no_proxy: 192.168.1.0/24
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 118 KiB After Width: | Height: | Size: 118 KiB |
|
|
@ -1 +1 @@
|
||||||
A conditional disabled variable
|
A variable with multiple value
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1 @@
|
||||||
---
|
---
|
||||||
auto: https://auto.proxy.net/wpad.dat
|
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,6 @@
|
||||||
---
|
---
|
||||||
proxy_mode: Automatic proxy configuration URL
|
proxy_mode: Automatic proxy configuration URL
|
||||||
|
auto: https://auto.proxy.net/wpad.dat
|
||||||
|
no_proxy:
|
||||||
|
- example.net
|
||||||
|
- 192.168.1.0/24
|
||||||
|
|
|
||||||
1
examples/062/README.md
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
A non mandatory variable
|
||||||
1
examples/063/README.md
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Examples
|
||||||
|
Before Width: | Height: | Size: 118 KiB After Width: | Height: | Size: 118 KiB |
|
|
@ -1 +1 @@
|
||||||
A variable with type "domainname", parameters type and disabled
|
A boolean variable
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Address for which proxy will be desactivated
|
DNS over HTTPS
|
||||||
|
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
---
|
|
||||||
proxy_mode: Automatic proxy configuration URL
|
|
||||||
auto: https://auto.proxy.net/wpad.dat
|
|
||||||
no_proxy: 192.168.1.0/24
|
|
||||||
|
Before Width: | Height: | Size: 118 KiB After Width: | Height: | Size: 118 KiB |
|
|
@ -0,0 +1,8 @@
|
||||||
|
%YAML 1.2
|
||||||
|
---
|
||||||
|
version: 1.1
|
||||||
|
|
||||||
|
dns_over_https: # DNS over HTTPS
|
||||||
|
|
||||||
|
enable_dns_over_https: false # Enable DNS over HTTPS
|
||||||
|
...
|
||||||