[tutorial v1.1_200] Variable calculation with propertyerror
This commit is contained in:
parent
c88de367e5
commit
c87d632c16
1 changed files with 55 additions and 0 deletions
|
|
@ -31,4 +31,59 @@ proxies:
|
||||||
#{%- for i in range(6) -%}{{- '0123456789abcdef' | random -}}{%- endfor -%}
|
#{%- for i in range(6) -%}{{- '0123456789abcdef' | random -}}{%- endfor -%}
|
||||||
description: random color value
|
description: random color value
|
||||||
auto_save: true
|
auto_save: true
|
||||||
|
|
||||||
|
address:
|
||||||
|
description: IP address, DNS name, server name
|
||||||
|
type: domainname
|
||||||
|
params:
|
||||||
|
allow_ip: true
|
||||||
|
allow_without_dot: true
|
||||||
|
default:
|
||||||
|
description: copy HTTP address if proxy is not "Manual"
|
||||||
|
variable: firefox.manual.http_proxy.address
|
||||||
|
propertyerror: false
|
||||||
|
disabled:
|
||||||
|
jinja: |-
|
||||||
|
{{ _.type not in ['HTTP', 'HTTPS/SSL', 'SOCKS4', 'SOCKS5'] }}
|
||||||
|
return_type: boolean
|
||||||
|
description: |-
|
||||||
|
if type not in:
|
||||||
|
- HTTP
|
||||||
|
- HTTPS/SSL
|
||||||
|
- SOCKS4
|
||||||
|
- SOCKS5
|
||||||
|
|
||||||
|
port:
|
||||||
|
description: Port
|
||||||
|
type: port
|
||||||
|
default:
|
||||||
|
description: copy HTTP port if proxy is not "Manual"
|
||||||
|
variable: firefox.manual.http_proxy.port
|
||||||
|
propertyerror: false
|
||||||
|
disabled:
|
||||||
|
jinja: |-
|
||||||
|
{{ _.type not in ['HTTP', 'HTTPS/SSL', 'SOCKS4', 'SOCKS5'] }}
|
||||||
|
return_type: boolean
|
||||||
|
description: |-
|
||||||
|
if type not in:
|
||||||
|
- HTTP
|
||||||
|
- HTTPS/SSL
|
||||||
|
- SOCKS4
|
||||||
|
- SOCKS5
|
||||||
|
|
||||||
|
url:
|
||||||
|
description: URL
|
||||||
|
type: web_address
|
||||||
|
default:
|
||||||
|
description: copy HTTP address if proxy is "Auto"
|
||||||
|
variable: firefox.auto
|
||||||
|
propertyerror: false
|
||||||
|
disabled:
|
||||||
|
jinja: |-
|
||||||
|
{{ _.type not in ['PAC URL', 'WPAD'] }}
|
||||||
|
return_type: boolean
|
||||||
|
description: |-
|
||||||
|
if type is not in:
|
||||||
|
- PAC URL
|
||||||
|
- WPAD
|
||||||
...
|
...
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue