diff options
author | Daniil Baturin <daniil@sentrium.io> | 2019-12-10 05:12:15 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-10 05:12:15 +0700 |
commit | be09f1ec2bbc2ba23c718b01a5f3b52dde44695f (patch) | |
tree | b5509a7d1d12ac7270f4177526cc51a1e8b6cd64 /interface-definitions/system-proxy.xml.in | |
parent | eced4a49c67d2e0e3e131193afe679aee0c5c679 (diff) | |
parent | 0b3e8ee977604f2412dfcfa3da5ad24d56c1c7a5 (diff) | |
download | vyos-1x-be09f1ec2bbc2ba23c718b01a5f3b52dde44695f.tar.gz vyos-1x-be09f1ec2bbc2ba23c718b01a5f3b52dde44695f.zip |
Merge pull request #178 from c-po/t1843-xml-preprocessor
Add GCC preprocessor support for XML files
Diffstat (limited to 'interface-definitions/system-proxy.xml.in')
-rw-r--r-- | interface-definitions/system-proxy.xml.in | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/interface-definitions/system-proxy.xml.in b/interface-definitions/system-proxy.xml.in new file mode 100644 index 000000000..4b21139a6 --- /dev/null +++ b/interface-definitions/system-proxy.xml.in @@ -0,0 +1,43 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="system"> + <children> + <node name="proxy" owner="${vyos_conf_scripts_dir}/system-proxy.py"> + <properties> + <help>Sets a proxy for system wide use</help> + </properties> + <children> + <leafNode name="url"> + <properties> + <help>Proxy URL</help> + <constraint> + <regex>http://[a-z0-9\.]+$</regex> + </constraint> + </properties> + </leafNode> + <leafNode name="port"> + <properties> + <help>Proxy port</help> + <constraint> + <validator name="numeric" argument="--range 1-65535"/> + </constraint> + </properties> + </leafNode> + <leafNode name="username"> + <properties> + <help>Proxy username</help> + <constraint> + <regex>^[a-z0-9-_\.]{1,100}$</regex> + </constraint> + </properties> + </leafNode> + <leafNode name="password"> + <properties> + <help>Proxy password</help> + </properties> + </leafNode> + </children> + </node> + </children> + </node> +</interfaceDefinition> |