diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2011-06-11 12:12:46 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2011-06-11 12:12:46 -0400 |
commit | 279010bc0791556e63b4951d83a2c45252142b80 (patch) | |
tree | 2f0ca07764a555764bb1f5a628a3468e88bf0c59 /samples/lynx.com | |
parent | 0b30d0d375231ff07227872f2d1d25f005e43e98 (diff) | |
download | lynx-snapshots-279010bc0791556e63b4951d83a2c45252142b80.tar.gz |
snapshot of project "lynx", label v2_8_8dev_9a
Diffstat (limited to 'samples/lynx.com')
-rw-r--r-- | samples/lynx.com | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/samples/lynx.com b/samples/lynx.com deleted file mode 100644 index 568d3e22..00000000 --- a/samples/lynx.com +++ /dev/null @@ -1,59 +0,0 @@ -$ ! LYNX.COM -$ ! sets up lynx as a command so that it will accept command line arguments -$ ! It is assumed that this file is located in the same place as the LYNX -$ ! Image. If it is not then you must change the lynx symbol. -$ ! Written by Danny Mayer, Digital Equipment Corporation -$ ! -$ ! -$ THIS_PATH = F$PARSE(F$ENV("PROCEDURE"),,,"DEVICE") + - - F$PARSE(F$ENV("PROCEDURE"),,,"DIRECTORY") -$ alpha = F$GETSYI("HW_MODEL") .GT. 1023 -$ ! -$ CPU := VAX -$ IF alpha THEN CPU :== AXP -$ lynx:==$'THIS_PATH'lynx_'CPU'.exe -$! -$! fill in another gateway if you wish -$! -$define "WWW_wais_GATEWAY" "http://www.w3.org:8001" -$! -$! fill in your NNTP news server here -$! -$ !define "NNTPSERVER" "news" -$ ! -$ ! Set up the Proxy Information Here -$ ! -$ ! no_proxy environmental variable -$ ! The no_proxy environmental variable is checked to get the list of -$ ! of hosts for which the proxy server is not consulted. -$ ! NOTE: THE no_proxy VARIABLE MUST BE IN LOWER CASE. On VMS systems -$ ! this is accomplished by defining a logical name in double-quotes. -$ ! -$ ! The no_proxy environmental variable is a comma-separated or -$ ! space-separated list of machine or domain names, with optional -$ ! :port part. If no :port part is present, it applies to all ports -$ ! on that domain. -$ ! -$ ! Example: -$ ! define "no_proxy" "cern.ch,some.domain:8001" -$ ! -$ ! -$ define "no_proxy" "yourorg.com" ! Use only for outside of yourorg -$ ! -$ ! proxy server environmental variables -$ ! In Lynx, each protocol needs an environmental variable defined for -$ ! it in order for it to use a proxy server set up for that protocol. -$ ! The proxy environmental variable is of the form: -$ ! protocol_proxy where protocol is the protocol name part of the URL, -$ ! for example: http or ftp. NOTE: the protocol server proxy variable -$ ! MUST BE IN LOWER CASE. -$ ! Example: -$ ! define "http_proxy" "http://your_proxy.yourorg:8080/" -$ ! -$ Proxy_Server = "http://your_proxy.yourorg:8080/" -$ define "http_proxy" "''Proxy_Server'" -$ define "ftp_proxy" "''Proxy_Server'" -$ define "gopher_proxy" "''Proxy_Server'" -$ define "news_proxy" "''Proxy_Server'" -$ define "wais_proxy" "''Proxy_Server'" -$ ! |