1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
# -*- tcl -*- autoproxy.pcx
# Syntax of the commands provided by package autoproxy.
# For use by TclDevKit's static syntax checker.
# See http://www.activestate.com/solutions/tcl/
# See http://aspn.activestate.com/ASPN/docs/Tcl_Dev_Kit/4.0/Checker.html#pcx_api
# for the documentation describing the format of the code contained in this file
#
package require pcx
pcx::register autoproxy
pcx::tcldep 1.5.1 needs tcl 8.2
namespace eval ::autoproxy {}
#pcx::message FOO {... text ...} type
#pcx::scan <VERSION> <NAME> <RULE>
pcx::check 1.5.1 std ::autoproxy::cget \
{checkSimpleArgs 1 1 {
checkKeyword 1 {-host -proxy_host -port -proxy_port -no_proxy -basic -authProc}
}}
pcx::check 1.5.1 std ::autoproxy::configure \
{checkSimpleArgs 0 -1 {
{checkConfigure 1 {
{-host checkWord}
{-proy_host checkWord}
{-port checkWholeNum}
{-proxy_port checkWholeNum}
{-no_proxy checkList}
{-basic {checkConfigure 0 {
{-username checkWord}
{-password checkWord}
{-realm checkWord}
}}}
{-authProc checkProcName}
}}
}}
pcx::check 1.5.1 std ::autoproxy::init \
{checkSimpleArgs 0 2 {
checkWord
checkList
}}
# TODO: Get options/syntax for tls::socket
pcx::check 1.5.1 std ::autoproxy::tls_connect \
{checkSimpleArgs 0 -1 {
checkWord
}}
# TODO: Get options/syntax for tls_connect (s.a.)
pcx::check 1.5.1 std ::autoproxy::tls_socket \
{checkSimpleArgs 0 -1 {
checkWord
}}
# TODO: Get options/syntax for tls::socket
pcx::check 1.5.1 std ::autoproxy::tunnel_connect \
{checkSimpleArgs 0 -1 {
checkWord
}}
# Initialization via pcx::init.
# Use a ::autoproxy::init procedure for non-standard initialization.
pcx::complete
|