remove $Id$ strings from everywhere that I can find
[spider.git] / cmd / show / qrz.pl
index 558525c085e07fb06f06bc1318906bedf930605b..e0ee31a6c7bf27a150b36c0061877e556b602b37 100644 (file)
@@ -3,7 +3,9 @@
 #
 # from an idea by Steve Franke K9AN and information from Angel EA7WA
 #
-# $Id$
+# Copyright (c) 2001 Dirk Koopman G1TLH
+#
+#
 #
 my ($self, $line) = @_;
 my @list = split /\s+/, $line;               # generate a list of callsigns
@@ -13,10 +15,15 @@ my @out;
 
 return (1, $self->msg('e24')) unless $Internet::allow;
 return (1, "SHOW/QRZ <callsign>, e.g. SH/QRZ g1tlh") unless @list;
-my $target = $Internet::http_proxy || 'u2.qrz.com';
+#my $target = $Internet::http_proxy || 'www.qrz.com';
+#my $port = $Internet::http_proxy_port || 80;
+#my $url = '';
+#$url = 'http://www.qrz.com' if $Internet::http_proxy; 
+my $target = $Internet::http_proxy || $Internet::qrz_url || 'www.qrz.com';
 my $port = $Internet::http_proxy_port || 80;
 my $url = '';
-$url = 'http://u2.qrz.com' if $Internet::http_proxy; 
+$url = 'http://' . ($Internet::qrz_url | 'www.qrz.com') if $Internet::http_proxy;
+
 
 use Net::Telnet;
 
@@ -32,7 +39,7 @@ foreach $l (@list) {
        if (!$t || $@) {
                push @out, $self->msg('e18', 'QRZ.com');
        } else {
-               my $s = "GET $url/dxcluster.cgi?callsign=$l\&uid=$Internet::qrz_uid\&pw=$Internet::qrz_pw HTTP/1.0\n\n";
+               my $s = "GET $url/p/dxcluster.pl?callsign=$l\&username=$Internet::qrz_uid\&password=$Internet::qrz_pw HTTP/1.0\n\n";
                dbg($s) if isdbg('qrz');
                $t->print($s);
                Log('call', "$call: show/qrz \U$l");