Ignore:
Timestamp:
2017-08-09T20:24:33+12:00 (7 years ago)
Author:
ak19
Message:
  1. Modified GLI and perl to set proxy_on, proxy_host and proxy_port for unix too, whereas in the past, only http(s)_proxy ENV vars were set by GLI for unix. If the env vars are not set, then perl assumes it's the wget setup for windows and passes the proxy vars that were set by GLI as flags to wget. If the env vars were set, then perl should run wget without setting the proxy vars as flags to wget, and wget will use the proxying info in the environment. So now, the decision as to whether proxy vars are set or not will result in context specific suggestion messages to the user when the Server Info button was pressed and if the URL could not be accessed for whatever reason. 2. Modified GLI code to not use proxy if proxying is toggled off, but use proxy when it's toggled back on. (Previously, if proxying was set at any point during a GLI session, then GLI remembered that even when proxying was turned off thereafter.)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/perllib/downloaders/WebDownload.pm

    r31861 r31864  
    4040use strict; # every perl program should have this!
    4141no strict 'refs'; # make an exception so we can use variables as filehandles
    42 no strict 'subs';
     42no strict 'subs'; # to pass STDERR/STDOUT to functions
     43
    4344use gsprintf 'gsprintf';
    4445
     
    192193    my $strBaseCMD = $strOptions." --tries=2 -q -O - \"$self->{'url'}\"";
    193194
    194     #print STDOUT "\n@@@@ GETTING server_info with WGET CMD: $strBaseCMD\n\n";
    195    
    196195    my $strIdentifyText = $self->useWget($strBaseCMD);
    197196   
     
    200199    print STDERR "Server information is unavailable.\n";
    201200
     201    #&util::print_env(STDERR, "https_proxy", "http_proxy");
     202   
    202203    if ($self->{'proxy_on'} && $self->{'proxy_host'} && $self->{'proxy_port'}) { # if proxying set, the settings may be wrong
    203204        &gsprintf::gsprintf_multiline(STDERR, "{WebDownload.proxied_connect_failed_info}\n", $self->{'proxy_host'}, $self->{'proxy_port'});
Note: See TracChangeset for help on using the changeset viewer.