From f319bf06d72d135e7ec14ff8b27627187f5e2595 Mon Sep 17 00:00:00 2001 From: minima Date: Sat, 28 Apr 2001 20:29:06 +0000 Subject: [PATCH] add another java client fix a problem with 'sorry connected to another ...' --- Changes | 2 + perl/IntMsg.pm | 4 +- perl/yesterday | 41 ++ spider-web/Format.class | Bin 0 -> 8079 bytes spider-web/Format.java | 550 ++++++++++++++++++++++++ spider-web/InfoDialog.class | Bin 0 -> 1401 bytes spider-web/InfoDialog.java | 38 ++ spider-web/IntTextField.java | 36 ++ spider-web/MultiLineLabel.class | Bin 0 -> 3052 bytes spider-web/MultiLineLabel.java | 111 +++++ spider-web/PersonalPreferences.java | 45 ++ spider-web/README | 37 ++ spider-web/StreamListener.class | Bin 0 -> 825 bytes spider-web/beam.class | Bin 0 -> 1570 bytes spider-web/beam.java | 41 ++ spider-web/dxannounce.class | Bin 0 -> 1967 bytes spider-web/dxannounce.java | 67 +++ spider-web/idleTime.class | Bin 0 -> 931 bytes spider-web/makefile | 7 + spider-web/setDate.class | Bin 0 -> 660 bytes spider-web/spider.cgi | 79 ++++ spider-web/spiderclient.class | Bin 0 -> 2607 bytes spider-web/spiderclient.java | 117 +++++ spider-web/spiderframe.class | Bin 0 -> 12496 bytes spider-web/spiderframe.java | 644 ++++++++++++++++++++++++++++ 25 files changed, 1817 insertions(+), 2 deletions(-) create mode 100755 perl/yesterday create mode 100644 spider-web/Format.class create mode 100755 spider-web/Format.java create mode 100644 spider-web/InfoDialog.class create mode 100755 spider-web/InfoDialog.java create mode 100755 spider-web/IntTextField.java create mode 100644 spider-web/MultiLineLabel.class create mode 100755 spider-web/MultiLineLabel.java create mode 100755 spider-web/PersonalPreferences.java create mode 100644 spider-web/README create mode 100644 spider-web/StreamListener.class create mode 100644 spider-web/beam.class create mode 100755 spider-web/beam.java create mode 100644 spider-web/dxannounce.class create mode 100755 spider-web/dxannounce.java create mode 100644 spider-web/idleTime.class create mode 100644 spider-web/makefile create mode 100644 spider-web/setDate.class create mode 100755 spider-web/spider.cgi create mode 100644 spider-web/spiderclient.class create mode 100755 spider-web/spiderclient.java create mode 100644 spider-web/spiderframe.class create mode 100755 spider-web/spiderframe.java diff --git a/Changes b/Changes index b33f106c..a32d1bed 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ +28Apr01======================================================================= +1. fix an occasional problem with 'sorry connected to' messages 23Apr01======================================================================= 1. fix very long standing bug in storing and transmitting spots. The decimal point was left off :-( diff --git a/perl/IntMsg.pm b/perl/IntMsg.pm index 6e588b3e..e3360fdb 100644 --- a/perl/IntMsg.pm +++ b/perl/IntMsg.pm @@ -27,7 +27,7 @@ sub dequeue { my $conn = shift; - if ($conn->{msg} =~ /\n/) { + if ($conn && $conn->{msg} =~ /\n/) { my @lines = split /\r?\n/, $conn->{msg}; if ($conn->{msg} =~ /\n$/) { delete $conn->{msg}; @@ -41,7 +41,7 @@ sub dequeue } else { $_ = ''; } - &{$conn->{rproc}}($conn, $_); + &{$conn->{rproc}}($conn, $_) if exists $conn->{rproc}; } } } diff --git a/perl/yesterday b/perl/yesterday new file mode 100755 index 00000000..050f1948 --- /dev/null +++ b/perl/yesterday @@ -0,0 +1,41 @@ +#!/usr/bin/perl +# +# find files that were last modified 'yesterday' +# + +use strict; +my $debug = shift if $ARGV[0] eq '-x'; +my $dir = shift or die "yesterday: [-x] []"; +my $days = shift or 1; +opendir D, $dir or die "cannot open directory '$dir' $!"; +my @fn = map {[(stat("$dir/$_"))[9], "$dir/$_"]} readdir D; +closedir D; + +++$days; +my $t = time; +my $low = (int($t / 86400) - $days) * 86400; +my $high = (int($t / 86400) - ($days - 1)) * 86400; +my $clow = gmtime $low; +my $chigh = gmtime $high; +print "lowest: $clow highest: $chigh\n" if $debug; +for (sort {$a->[0] <=> $b->[0]} @fn) { + if (-f $_->[1]) { + if ($debug) { + my $cmtime = gmtime $_->[0]; + if ($_->[0] < $low) { + printf "%-30s LOW $cmtime < $clow\n", $_->[1]; + } elsif ($_->[0] >= $high) { + printf "%-30s HIGH $cmtime >= $chigh\n", $_->[1]; + } else { + printf "%-30s OK $cmtime\n", $_->[1]; + } + } elsif ($_->[0] >= $low && $_->[0] < $high) { + print "$_->[1]\n"; + } elsif ($_->[0] >= $high) { + last; + } + } +} + + +exit 0; diff --git a/spider-web/Format.class b/spider-web/Format.class new file mode 100644 index 0000000000000000000000000000000000000000..4f8de4294838daca1f5d0455e39badd063288be1 GIT binary patch literal 8079 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 Qkf2S~ + *
  • a % (required) + *
  • a modifier (optional) + *
    + *
    +
    forces display of + for positive numbers + *
    0
    show leading zeroes + *
    -
    align left in the field + *
    space
    prepend a space in front of positive numbers + *
    #
    use "alternate" format. Add 0 or 0x for octal or hexadecimal numbers. Don't suppress trailing zeroes in general floating point format. + *
    + *
  • an integer denoting field width (optional) + *
  • a period followed by an integer denoting precision (optional) + *
  • a format descriptor (required) + *
    + *
    f
    floating point number in fixed format + *
    e, E
    floating point number in exponential notation (scientific format). The E format results in an uppercase E for the exponent (1.14130E+003), the e format in a lowercase e. + *
    g, G
    floating point number in general format (fixed format for small numbers, exponential format for large numbers). Trailing zeroes are suppressed. The G format results in an uppercase E for the exponent (if any), the g format in a lowercase e. + *
    d, i
    integer in decimal + *
    x
    integer in hexadecimal + *
    o
    integer in octal + *
    s
    string + *
    c
    character + *
    + * + * @exception IllegalArgumentException if bad format + */ + + public Format(String s) + { width = 0; + precision = -1; + pre = ""; + post = ""; + leading_zeroes = false; + show_plus = false; + alternate = false; + show_space = false; + left_align = false; + fmt = ' '; + + int state = 0; + int length = s.length(); + int parse_state = 0; + // 0 = prefix, 1 = flags, 2 = width, 3 = precision, + // 4 = format, 5 = end + int i = 0; + + while (parse_state == 0) + { if (i >= length) parse_state = 5; + else if (s.charAt(i) == '%') + { if (i < length - 1) + { if (s.charAt(i + 1) == '%') + { pre = pre + '%'; + i++; + } + else + parse_state = 1; + } + else throw new java.lang.IllegalArgumentException(); + } + else + pre = pre + s.charAt(i); + i++; + } + while (parse_state == 1) + { if (i >= length) parse_state = 5; + else if (s.charAt(i) == ' ') show_space = true; + else if (s.charAt(i) == '-') left_align = true; + else if (s.charAt(i) == '+') show_plus = true; + else if (s.charAt(i) == '0') leading_zeroes = true; + else if (s.charAt(i) == '#') alternate = true; + + + else { parse_state = 2; i--; } + i++; + } + while (parse_state == 2) + { if (i >= length) parse_state = 5; + else if ('0' <= s.charAt(i) && s.charAt(i) <= '9') + { width = width * 10 + s.charAt(i) - '0'; + i++; + } + else if (s.charAt(i) == '.') + { parse_state = 3; + precision = 0; + i++; + } + else + parse_state = 4; + } + while (parse_state == 3) + { if (i >= length) parse_state = 5; + else if ('0' <= s.charAt(i) && s.charAt(i) <= '9') + { precision = precision * 10 + s.charAt(i) - '0'; + i++; + } + else + parse_state = 4; + } + if (parse_state == 4) + { if (i >= length) parse_state = 5; + else fmt = s.charAt(i); + i++; + } + if (i < length) + post = s.substring(i, length); + } + + /** + * prints a formatted number following printf conventions + * @param s a PrintStream + * @param fmt the format string + * @param x the double to print + */ + + public static void print(java.io.PrintStream s, String fmt, double x) + { s.print(new Format(fmt).form(x)); + } + + /** + * prints a formatted number following printf conventions + * @param s a PrintStream + * @param fmt the format string + * @param x the long to print + */ + public static void print(java.io.PrintStream s, String fmt, long x) + { s.print(new Format(fmt).form(x)); + } + + /** + * prints a formatted number following printf conventions + * @param s a PrintStream + * @param fmt the format string + * @param x the character to + */ + + public static void print(java.io.PrintStream s, String fmt, char x) + { s.print(new Format(fmt).form(x)); + } + + /** + * prints a formatted number following printf conventions + * @param s a PrintStream, fmt the format string + * @param x a string that represents the digits to print + */ + + public static void print(java.io.PrintStream s, String fmt, String x) + { s.print(new Format(fmt).form(x)); + } + + /** + * Converts a string of digits (decimal, octal or hex) to an integer + * @param s a string + * @return the numeric value of the prefix of s representing a base 10 integer + */ + + public static int atoi(String s) + { return (int)atol(s); + } + + /** + * Converts a string of digits (decimal, octal or hex) to a long integer + * @param s a string + * @return the numeric value of the prefix of s representing a base 10 integer + */ + + public static long atol(String s) + { int i = 0; + + while (i < s.length() && Character.isSpace(s.charAt(i))) i++; + if (i < s.length() && s.charAt(i) == '0') + { if (i + 1 < s.length() && (s.charAt(i + 1) == 'x' || s.charAt(i + 1) == 'X')) + return parseLong(s.substring(i + 2), 16); + else return parseLong(s, 8); + } + else return parseLong(s, 10); + } + + private static long parseLong(String s, int base) + { int i = 0; + int sign = 1; + long r = 0; + + while (i < s.length() && Character.isSpace(s.charAt(i))) i++; + if (i < s.length() && s.charAt(i) == '-') { sign = -1; i++; } + else if (i < s.length() && s.charAt(i) == '+') { i++; } + while (i < s.length()) + { char ch = s.charAt(i); + if ('0' <= ch && ch < '0' + base) + r = r * base + ch - '0'; + else if ('A' <= ch && ch < 'A' + base - 10) + r = r * base + ch - 'A' + 10 ; + else if ('a' <= ch && ch < 'a' + base - 10) + r = r * base + ch - 'a' + 10 ; + else + return r * sign; + i++; + } + return r * sign; + } + + /** + * Converts a string of digits to an double + * @param s a string + */ + + public static double atof(String s) + { int i = 0; + int sign = 1; + double r = 0; // integer part + double f = 0; // fractional part + double p = 1; // exponent of fractional part + int state = 0; // 0 = int part, 1 = frac part + + while (i < s.length() && Character.isSpace(s.charAt(i))) i++; + if (i < s.length() && s.charAt(i) == '-') { sign = -1; i++; } + else if (i < s.length() && s.charAt(i) == '+') { i++; } + while (i < s.length()) + { char ch = s.charAt(i); + if ('0' <= ch && ch <= '9') + { if (state == 0) + r = r * 10 + ch - '0'; + else if (state == 1) + { p = p / 10; + r = r + p * (ch - '0'); + } + } + else if (ch == '.') + { if (state == 0) state = 1; + else return sign * r; + } + else if (ch == 'e' || ch == 'E') + { long e = (int)parseLong(s.substring(i + 1), 10); + return sign * r * Math.pow(10, e); + } + else return sign * r; + i++; + } + return sign * r; + } + + /** + * Formats a double into a string (like sprintf in C) + * @param x the number to format + * @return the formatted string + * @exception IllegalArgumentException if bad argument + */ + + public String form(double x) + { String r; + if (precision < 0) precision = 6; + int s = 1; + if (x < 0) { x = -x; s = -1; } + if (fmt == 'f') + r = fixed_format(x); + else if (fmt == 'e' || fmt == 'E' || fmt == 'g' || fmt == 'G') + r = exp_format(x); + else throw new java.lang.IllegalArgumentException(); + + return pad(sign(s, r)); + } + + /** + * Formats a long integer into a string (like sprintf in C) + * @param x the number to format + * @return the formatted string + */ + + public String form(long x) + { String r; + int s = 0; + if (fmt == 'd' || fmt == 'i') + { s = 1; + if (x < 0) { x = -x; s = -1; } + r = "" + x; + } + else if (fmt == 'o') + r = convert(x, 3, 7, "01234567"); + else if (fmt == 'x') + r = convert(x, 4, 15, "0123456789abcdef"); + else if (fmt == 'X') + r = convert(x, 4, 15, "0123456789ABCDEF"); + else throw new java.lang.IllegalArgumentException(); + + return pad(sign(s, r)); + } + + /** + * Formats a character into a string (like sprintf in C) + * @param x the value to format + * @return the formatted string + */ + + public String form(char c) + { if (fmt != 'c') + throw new java.lang.IllegalArgumentException(); + + String r = "" + c; + return pad(r); + } + + /** + * Formats a string into a larger string (like sprintf in C) + * @param x the value to format + * @return the formatted string + */ + + public String form(String s) + { if (fmt != 's') + throw new java.lang.IllegalArgumentException(); + if (precision >= 0) s = s.substring(0, precision); + return pad(s); + } + + + /** + * a test stub for the format class + */ + + public static void main(String[] a) + { double x = 1.23456789012; + double y = 123; + double z = 1.2345e30; + double w = 1.02; + double u = 1.234e-5; + int d = 0xCAFE; + Format.print(System.out, "x = |%f|\n", x); + Format.print(System.out, "u = |%20f|\n", u); + Format.print(System.out, "x = |% .5f|\n", x); + Format.print(System.out, "w = |%20.5f|\n", w); + Format.print(System.out, "x = |%020.5f|\n", x); + Format.print(System.out, "x = |%+20.5f|\n", x); + Format.print(System.out, "x = |%+020.5f|\n", x); + Format.print(System.out, "x = |% 020.5f|\n", x); + Format.print(System.out, "y = |%#+20.5f|\n", y); + Format.print(System.out, "y = |%-+20.5f|\n", y); + Format.print(System.out, "z = |%20.5f|\n", z); + + Format.print(System.out, "x = |%e|\n", x); + Format.print(System.out, "u = |%20e|\n", u); + Format.print(System.out, "x = |% .5e|\n", x); + Format.print(System.out, "w = |%20.5e|\n", w); + Format.print(System.out, "x = |%020.5e|\n", x); + Format.print(System.out, "x = |%+20.5e|\n", x); + Format.print(System.out, "x = |%+020.5e|\n", x); + Format.print(System.out, "x = |% 020.5e|\n", x); + Format.print(System.out, "y = |%#+20.5e|\n", y); + Format.print(System.out, "y = |%-+20.5e|\n", y); + + Format.print(System.out, "x = |%g|\n", x); + Format.print(System.out, "z = |%g|\n", z); + Format.print(System.out, "w = |%g|\n", w); + Format.print(System.out, "u = |%g|\n", u); + Format.print(System.out, "y = |%.2g|\n", y); + Format.print(System.out, "y = |%#.2g|\n", y); + + Format.print(System.out, "d = |%d|\n", d); + Format.print(System.out, "d = |%20d|\n", d); + Format.print(System.out, "d = |%020d|\n", d); + Format.print(System.out, "d = |%+20d|\n", d); + Format.print(System.out, "d = |% 020d|\n", d); + Format.print(System.out, "d = |%-20d|\n", d); + Format.print(System.out, "d = |%20.8d|\n", d); + Format.print(System.out, "d = |%x|\n", d); + Format.print(System.out, "d = |%20X|\n", d); + Format.print(System.out, "d = |%#20x|\n", d); + Format.print(System.out, "d = |%020X|\n", d); + Format.print(System.out, "d = |%20.8x|\n", d); + Format.print(System.out, "d = |%o|\n", d); + Format.print(System.out, "d = |%020o|\n", d); + Format.print(System.out, "d = |%#20o|\n", d); + Format.print(System.out, "d = |%#020o|\n", d); + Format.print(System.out, "d = |%20.12o|\n", d); + + Format.print(System.out, "s = |%-20s|\n", "Hello"); + Format.print(System.out, "s = |%-20c|\n", '!'); + } + + + private static String repeat(char c, int n) + { if (n <= 0) return ""; + StringBuffer s = new StringBuffer(n); + for (int i = 0; i < n; i++) s.append(c); + return s.toString(); + } + + private static String convert(long x, int n, int m, String d) + { if (x == 0) return "0"; + String r = ""; + while (x != 0) + { r = d.charAt((int)(x & m)) + r; + x = x >>> n; + } + return r; + } + + private String pad(String r) + { String p = repeat(' ', width - r.length()); + if (left_align) return pre + r + p + post; + else return pre + p + r + post; + } + + private String sign(int s, String r) + { String p = ""; + if (s < 0) p = "-"; + else if (s > 0) + { if (show_plus) p = "+"; + else if (show_space) p = " "; + } + else + { if (fmt == 'o' && alternate && r.length() > 0 && r.charAt(0) != '0') p = "0"; + else if (fmt == 'x' && alternate) p = "0x"; + else if (fmt == 'X' && alternate) p = "0X"; + } + int w = 0; + if (leading_zeroes) + w = width; + else if ((fmt == 'd' || fmt == 'i' || fmt == 'x' || fmt == 'X' || fmt == 'o') + && precision > 0) w = precision; + + return p + repeat('0', w - p.length() - r.length()) + r; + } + + + private String fixed_format(double d) + { String f = ""; + + if (d > 0x7FFFFFFFFFFFFFFFL) return exp_format(d); + + long l = (long)(precision == 0 ? d + 0.5 : d); + f = f + l; + + double fr = d - l; // fractional part + if (fr >= 1 || fr < 0) return exp_format(d); + + return f + frac_part(fr); + } + + private String frac_part(double fr) + // precondition: 0 <= fr < 1 + { String z = ""; + if (precision > 0) + { double factor = 1; + String leading_zeroes = ""; + for (int i = 1; i <= precision && factor <= 0x7FFFFFFFFFFFFFFFL; i++) + { factor *= 10; + leading_zeroes = leading_zeroes + "0"; + } + long l = (long) (factor * fr + 0.5); + + z = leading_zeroes + l; + z = z.substring(z.length() - precision, z.length()); + } + + + if (precision > 0 || alternate) z = "." + z; + if ((fmt == 'G' || fmt == 'g') && !alternate) + // remove trailing zeroes and decimal point + { int t = z.length() - 1; + while (t >= 0 && z.charAt(t) == '0') t--; + if (t >= 0 && z.charAt(t) == '.') t--; + z = z.substring(0, t + 1); + } + return z; + } + + private String exp_format(double d) + { String f = ""; + int e = 0; + double dd = d; + double factor = 1; + while (dd > 10) { e++; factor /= 10; dd = dd / 10; } + while (dd < 1) { e--; factor *= 10; dd = dd * 10; } + if ((fmt == 'g' || fmt == 'G') && e >= -4 && e < precision) + return fixed_format(d); + + d = d * factor; + f = f + fixed_format(d); + + if (fmt == 'e' || fmt == 'g') + f = f + "e"; + else + f = f + "E"; + + String p = "000"; + if (e >= 0) + { f = f + "+"; + p = p + e; + } + else + { f = f + "-"; + p = p + (-e); + } + + return f + p.substring(p.length() - 3, p.length()); + } + + private int width; + private int precision; + private String pre; + private String post; + private boolean leading_zeroes; + private boolean show_plus; + private boolean alternate; + private boolean show_space; + private boolean left_align; + private char fmt; // one of cdeEfgGiosxXos +} diff --git a/spider-web/InfoDialog.class b/spider-web/InfoDialog.class new file mode 100644 index 0000000000000000000000000000000000000000..9527a0071dab62104954edadf71ee8b6b50dfccf GIT binary patch literal 1401 zcmah}Yg5xe6g^8r)5btcd5Nfq4}>D(`&AURQmqydQL*@#*|xDnLxSm6#y{jIzc{1q zC^P;5f0X0BZKsJdIDY76_uRebp8M$j`u*c4BACN#1LK&{kv7nSSp%mqr{lDNUd+dF z0B2%2%iuX3=VQ2Fz`#YuFX^~!pdVLsTs4ryHNKRIVZp$4++fbdIBwz=?{4#wHE;(@ zI&wPh3PekFr94+)pzv0Hkn?g!&EIZ88G&9$mMljgSy-++$}ZThRbYfn(FNPJ)eV8m z(}82oms?h*eRiZ|Oq9sGZ@fFUbiC?m&d$UU+!GiMGWGn5 zR=gdW z&}~_MN1xgzpMpNNW|6`u=~pd9#R`plXDrEU)8_HkD|T($tI;l8(oT8;rf$Fo*;A1wM0yuJ#bhFxXd=>pM#tXb zTyiKmq%{%!20fjMrN2UNAihpEqnO&)g!v79yXY@Ak+`OfX}d@kwKl~7QH*Ki(APj} zJ)IgH(^{Sl45b?w{z8ETj?sD!CarN2vkxP*KZ!oV5?G{n=pF`8L<(gL!oe`M>4w56 zc^=1!P8y4pXoMI>XTM^E<9$LOMHr>ue(iJQb2rdPE87DUW}N5`66GPHoFJO1E*X)?D literal 0 HcmV?d00001 diff --git a/spider-web/InfoDialog.java b/spider-web/InfoDialog.java new file mode 100755 index 00000000..1442f7f0 --- /dev/null +++ b/spider-web/InfoDialog.java @@ -0,0 +1,38 @@ +import java.awt.*; + +public class InfoDialog extends Dialog { + protected Button button; + protected MultiLineLabel label; + + + public InfoDialog(Frame parent, String title, String message) { + super(parent, title, false); + + this.setLayout(new BorderLayout(15,15)); + label = new MultiLineLabel(message, 20, 20, 1); + this.add("Center", label); + + button = new Button("OK"); + Panel p = new Panel(); + p.setLayout(new FlowLayout(FlowLayout.CENTER, 15, 15)); + p.add(button); + this.add("South", p); + + this.pack(); + this.show(); + } + + public boolean action(Event e, Object arg) { + if (e.target == button) { + this.hide(); + this.dispose(); + return true; + } + else return false; + } + + public boolean gotFocus(Event e, Object Arg) { + button.requestFocus(); + return true; + } +} diff --git a/spider-web/IntTextField.java b/spider-web/IntTextField.java new file mode 100755 index 00000000..421a28fe --- /dev/null +++ b/spider-web/IntTextField.java @@ -0,0 +1,36 @@ +import java.awt.*; + +public class IntTextField extends TextField +{ + + public IntTextField() + { + ; + } + + public IntTextField(String s) + { + this.setText(s); + } + + public boolean isValid() + { + int value; + try + { + value = Integer.valueOf(getText().trim()).intValue(); + + } + catch (NumberFormatException e) + { + requestFocus(); + return false; + } + return true; + } + + public int getValue() + { + return Integer.parseInt(getText().trim(),10); + } +} diff --git a/spider-web/MultiLineLabel.class b/spider-web/MultiLineLabel.class new file mode 100644 index 0000000000000000000000000000000000000000..c2fed4a2b83715927abf659bae5b4782642a1040 GIT binary patch literal 3052 zcmZuyTT@e46#kA$2ss=s0zuHA;sxPEprvZ93RNQrmWv9-DsACFj^t=^LUR$d_txH9 z?QN!g?M!E!>GYw_2+Y*BubpY1`bYW`+J0;2Bm|qxoVEAb`&*a2_P1C5_~+-};6o3- z4&qWZUeKZ8vWP1o?8R&lFUt6mh?iw~PRBef5eqsN5tj{HW>;mlBqAZIqhlYgiF#e9 zNXjfF!WA_wVp+VrA|fLqD;BvR@;cgaLsnKooZS?0OUG@z8pLZsysp7NHZ(k~K^xUj z8%w*{oaN?btYqHyfj% zQ@M=eE*;kpa`UM<4`HON%#!2ItvK;qf`L3WVLMBSoQ4{K&284K?4s?K_LLz*ZJA}B zp_FyA=qh9-oh3J=pw+IuGG;B~ zkd10PV=raWc{d(QC({{Lx(un76tsrWQ!GQF3jQvYTpbt3Rn;#Qie6t@81c$(EEVj$ z^6}s-ZXFjl+m#lI7ZkGM@riWKxq3^3v7E85+8H}O<=kfRTDrOmg_pCOahOroNxNi& zo?<=osRAmnY&ml9VwnVdHe)R(oW-mYN3N!6JfF-ta$~A;y}~sOZHjXF zoRjn@H=Vw2yG(**(sToZc*DS(7&Fj^P7Mu@Gt}TS?KN-+hYh@iw}W`cz`M9(;61z_ z#0LgG6x)7u8u&!7!xF0a^w5Uh%jDaU)_N0hGJZs>D?0zaDhBF2}!?1x# z4DeP}8k>qECU*_o!vzDMi-#}J8N`4tQN^ zYbl)~H%a4o##$+~ICQY>?qer3(1!i!WUo9ReGy&MyUTQwdbCVG2)}TTSif*njpUCS zNg*|ocWNZ-)JU4DkpxsDna8n-9!Nh%K1MA~&CfCR2-@XnKcJSVgUjb*rd1eXD5j4ctc$BUMMD5=6!T9xjn4OUOu-DT;aWF z@*=$?CwV&oTJAE}(I}}jNnXunWEEkveHATcn8j+^2(%MH!n=6V1_tY9Fq2h?^6Up0 zutzyR={es|*HZqF8I832*0F8Fjn24WkEmvgkbF*gCI`Ht)tJ!+y+MyuFgnDe9#%%h zYZfDM=NVOsbd*K{KV9NRKTX7_u5jQrwDOwTHZp8fsh^r*0h%-XlQQDrP#aWDac6&;8JLI-DmOsVMTs+Nnv@06E$8BPWGdQb=Wz+IU51_;KiYLMJLh zTONmAAe8?dl#)OPM@b+=3P+f4>&6`xl9=N5d5Dp~kMsEoeD5Q)UzW!uiH8&O@}&6H zCPcO*=GU?FC&J24GehlS$x#olM;wKVj!GUXn9dS9g=tF3;ZJf)n#et-yX%;rhV^a! zhuB^65Dz5h2Yp8Z_hECb=?7vv_{mQ=+s04yL);9rb##k$2bJn@pqI8>YAG&- z)my@W{z&^8_S^}m-c~z57?u;WoqW4dxI#ObXOb2#c!AAh5hr1jBniyo8eAmtD%bCF Krr~*&*35tNmq?ZX literal 0 HcmV?d00001 diff --git a/spider-web/MultiLineLabel.java b/spider-web/MultiLineLabel.java new file mode 100755 index 00000000..770a5d92 --- /dev/null +++ b/spider-web/MultiLineLabel.java @@ -0,0 +1,111 @@ +import java.awt.*; +import java.util.*; + +public class MultiLineLabel extends Canvas { + public static final int LEFT = 0; + public static final int CENTER = 1; + public static final int RIGHT = 2; + protected String[] lines; + protected int num_lines; + protected int margin_width; + protected int margin_height; + protected int line_height; + protected int line_ascent; + protected int[] line_widths; + protected int max_width; + protected int alignment = LEFT; + + protected void newLabel(String label) { + StringTokenizer t = new StringTokenizer(label,"\n"); + num_lines = t.countTokens(); + lines = new String[num_lines]; + line_widths = new int[num_lines]; + for(int i = 0; i < num_lines; i++) lines[i] = t.nextToken(); + } + + protected void measure() { + FontMetrics fm = this.getFontMetrics(this.getFont()); + if (fm == null) return; + + line_height = fm.getHeight(); + line_ascent = fm.getAscent(); + max_width = 0; + for(int i = 0; i < num_lines; i++) { + line_widths[i] = fm.stringWidth(lines[i]); + if (line_widths[i] > max_width) max_width = line_widths[i]; + } + } + + public MultiLineLabel(String label, int margin_width, + int margin_height, int alignment) { + newLabel(label); + this.margin_width = margin_width; + this.margin_height = margin_height; + this.alignment = alignment; + } + + public MultiLineLabel(String label, int margin_width, int margin_height) { + this(label, margin_width, margin_height, LEFT); + } + + public MultiLineLabel(String label, int aligment) { + this(label, 10, 10, aligment); + } + + public MultiLineLabel(String label) { + this(label, 10, 10, LEFT); + } + + public void setLabel(String label) { + newLabel(label); + measure(); + repaint(); + } + + public void setFont(Font f) { + super.setFont(f); + measure(); + repaint(); + } + + public void setForegroundColor(Color c) { + super.setForeground(c); + repaint(); + } + + public void setAligment(int a) { alignment = a; repaint(); } + public void setMarginWidth(int mw) { margin_width = mw; repaint(); } + public void setMarginHeight(int mh) { margin_height = mh; repaint(); } + public int getAlignment() { return alignment; } + public int getMarginWidth() { return margin_width; } + public int getMarginheight() { return margin_height; } + + public void addNotify() { super.addNotify(); measure(); } + + public Dimension preferedSize() { + return new Dimension(max_width + 2 * margin_width, + num_lines * line_height + 2 * margin_height); + } + + public Dimension miniumSize() { + return new Dimension(max_width, num_lines * line_height); + } + + public void paint(Graphics g) { + int x,y; + Dimension d = this.size(); + y = line_ascent + (d.height - num_lines * line_height) / 2; + for(int i = 0; i < num_lines; i++, y += line_height) { + switch(alignment) { + case LEFT: + x = margin_width; break; + case CENTER: + default: + x = (d.width - line_widths[i]) / 2; break; + case RIGHT: + x = d.width - margin_width - line_widths[i]; break; + } + g.drawString(lines[i], x, y); + } + } +} diff --git a/spider-web/PersonalPreferences.java b/spider-web/PersonalPreferences.java new file mode 100755 index 00000000..e63f02b8 --- /dev/null +++ b/spider-web/PersonalPreferences.java @@ -0,0 +1,45 @@ +import java.awt.*; + +public class PersonalPreferences extends Dialog +{ + public PersonalPreferences(spiderframe parent, String Call, + String Fullname, Font font) { + super(parent, "Personal Preferences", true); + this.parent = parent; + this.setFont(font); + + Panel p1 = new Panel(); + p1.setLayout(new GridLayout(2,2)); + p1.add(new Label("Call: ")); + p1.add(call = new TextField(Call, 6)); + p1.add(new Label("Passwort: ")); + p1.add(fullname = new TextField(Fullname)); + add("Center", p1); + + Panel p2 = new Panel(); + p2.add(new Button("OK")); + p2.add(new Button("Cancel")); + add("South", p2); + + resize(250,120); + show(); + } + + public boolean action(Event evt, Object arg) { + if (arg.equals("OK")) { + dispose(); + parent.setCall(call.getText()); + parent.setFullname(fullname.getText()); + } + else if (arg.equals("Cancel")) { + dispose(); + } + else return super.action(evt, arg); + return true; + } + + private TextField call; + private TextField fullname; + + private spiderframe parent; +} diff --git a/spider-web/README b/spider-web/README new file mode 100644 index 00000000..b32b7c3b --- /dev/null +++ b/spider-web/README @@ -0,0 +1,37 @@ +Spider-WEB v0.6b + +Completely based on a clx web client written in Java by dl6dbh +(ftp://clx.muc.de/pub/clx/clx-java_10130001.tgz) + +The webserver has to run on the same machine as your DxSpider software! + +Installation instructions: + +Put all the files in the spider-web directory into a newly created directory +under the documentroot of your websever for instance 'client'. In my case +this is: +/usr/local/httpd/spider/client/ + +================================================================ +!NOTE! this directory has to be writeable by your http daemon!!!! +================================================================= + +move spider.cgi to the cgi-bin directory of your webserver, in my case that is +/usr/local/httpd/cgi-bin/ +make it worldreadable. + +edit spider.cgi and change the following parameters: + +portnumber=$"1407" +tempdir=$"/usr/local/httpd/spider/client/" +clustercall=$"PA4AB-15" + +'portnumber' is the portnumber that you use to connect to your DxSpider via +telnet (see Listeners.pm) + +'tempdir' is the directory that you just created and that you used to move +the *.java and *.class files to. + +'clustercall' is the call of your cluster. + +You now can connect to Spider-Web via http://yourserver/cgi-bin/spider.cgi diff --git a/spider-web/StreamListener.class b/spider-web/StreamListener.class new file mode 100644 index 0000000000000000000000000000000000000000..1d906da5975845046c725f9fb6c44a584211a963 GIT binary patch literal 825 zcmZ`%%Wl&^6g^`nb>h0u(3C=f0By;u39w*65t{%~rO+-KT3CVOOv_Y>9obGPU&AtG ziA00M0+vYp2|odxsTIUS$nu@J_a2`)_jta3|M&?e)^Xd0gQYAcaY2WRI$gGL372hL zK|zPB7OvU2j+G2nEv#9%Az&z9V5xcN9=UZD)E~I9yXp4_@lG5{x3@unw=Xc&jQXl0 z!~M|hNfsyWDPP6+1xm#~I{)P)cDIuA0tSWew_?d}==mq!DlRPjgo-p eoZ_c+I5?#-fffR_dp))fwiqE%Sx#tY z`r6k#BrpAfyyT@bi9J(h`T_lpen+SK$d0W{=x9dL*_UY4R z8m4d~j@xk*G~B_OgfD8ii_hiXx`r=sPeTbCQhQ&;riv|w*pVmptz(Ai(gAw;mTWI5t~`>-m!9bUCb65}=Bavg>X*`eFoLyDje698{k4@8ZSDh%4T z+xBXrXi4uxRq(^hG7pBy0=Mn_R*+qO({Bn-#|3<;<6XR`;wv57*kKqSB)!EQVM~(- z3{wN?UC*kQ_|I)a3mNvEVmVe6QmN8Rd_7 zpn~hDqNbxR4?@R28Y-GPEE&TBOe%xqD~x`};5G|fz38}2QM5aIPYgBkKI zxQ9osBb#Pn*hNDjL+TW$Aexm^6sJM_4{n%_eh5@0PqeIGs6C^tru&E?85A?r$YdgZ zYID2A@LG&R^pNNUguvTp`S5$g@%OA(E7wjW-YDTdL|0QY$BO$RmHdD;-b z2tCw%!5>XY@TEz_MKD~V(?5vO13Wbs4HoTU#9Vxdh`H23^aM(|i`dO*nts)?qI41O zAR$j$*%<9Y?_g{%9W_rdUd|QdRK*s zbro6UcoDp8uw7oprVL9$IBOOPmn3wjx6FNW%)IN3t%w6}))Ix>q=e9hEA}MFuGlf% z?IJ52+mq1IFrOs_Sw?nESMX6=y0~lQguCIIJAx0UEZg!fOSqjlc2bQ{Fzx)5No^aI>d8t}h4Pz{Z=N;GEf88w>|;o3YG-lb0|UsM@UGO#g0>HEw`YHN#*p&CT&igOe1M$D{@!GUcN1s@2ki zH*g!XPjiCTaH1Nag^a89kkA(}uj+1^wwV{M@7Hqz3O}Bi%SkW-zA0yC*Ri<`la0P? zC?)is5X#SI>V$)nLi|VEARRRbR8LnFtwU<~P;t|tvPb>0`&?E>gG|I;$t=+HAImW? zIC9P^?m9&Z(pzsD?!tOf#Cl$MtfHqTQG*w(7fn~-*^rnAT1&Sg|vSdL%I~IpvgEwb4Cv} zN23*lA0uK6J%((=!euB&XvtKdPDEmnBeZ5B;R>`e+E{AO=p7YA%jjH?yAza={asQQb8|SoC;W+K5h{UMJXJT#$Zh%7D#%kCQ-U1B_80+uzt?>RN3)=?H8SQOqilF)(K$hUp0A)t!xCLETqPEaIAh>jrKx@KS{#R%rTeS;&fX z>SBcOWNaF@t`;Q5Fn?1=kagTJ;?vx1F6DSxhOKBG`88 zLNaJ6h1F!sBga;wB}-z%RjBx(s`JmB7mkH-Oj;Pln1!24JA<r@AU31@(5*naUUj`ysi?-n`EpGx zCoSY~hsZ8lSjAlf_bjYoi6P>WTXCRH`zf}cO5v1gM$N#HR4&x43E@-O)TW|2k}CAE z2jy0JqpDDQ%DtIB4xm;X-xnUG&72f}EaHFxaf<|vgCY#WsS`5~92zo%L7zpjMv_)& zgcgX?p?UXKiKb1r21dg>NAf(qtq?+ChU_kwJ-Y{Pcc9tY9`w&-X1G9d6ts-oht8iP z$|YjFi3AVGJAui+iKZwGBW(Cctf|uTmk9A)@+be{KT;za;j3+E!w7wa(S}~Ii(jDY zPpJAnqQ!*S#ehwgc+UUOfmJwStSRF|0`Psrid~#a40aID&`F#oF-xa|Lv=xar`QgWC+eKVYau<53bzHBe$G?=w_%9*a*5&FF(T7M(&TY3GU1 z23mTMWQl%An13!Q*k`aG=domHL`f!J7Q>!YUC~R)W2qt|>zg2VFE3PIK1&SHT;Sa` zTpli>%}_tj>)`@cJT%bsa0hJBK?=weXpd5N$^+;rOla2IU*(g3-i~y&ZE39Qn{y9k{vO${9x9Sl6B^# zrYtYWm@##eAu+A`|3?S=*rEZ|X)>HPX)13dusj(xpan{$*CU#+iCGWNz`}3f2WPNO zVTU`XsDx82eI}4$jqDm|*8BiAAE3csqs8B#%?}B^g!a7Lt9iL#0;>h*3#t>?(PG^b qDtiKZisdQ1$)BH;XrT%Z?wn=?HqpF=#owXE1yS?}S*H(hT>cBNwuPMl literal 0 HcmV?d00001 diff --git a/spider-web/spider.cgi b/spider-web/spider.cgi new file mode 100755 index 00000000..b9b3a259 --- /dev/null +++ b/spider-web/spider.cgi @@ -0,0 +1,79 @@ +#! /bin/sh +# +################################################### +# +# Edit the following lines +# +# +portnumber=$"1407" +tempdir=$"/usr/local/httpd/spider/client/" +clustercall=$"PA4AB-15" +# +# +# +# End of configurable part +# +#################################################### +hostname=$"localhost" + +echo "Content-type: text/html" +echo +echo "" +echo "Spider DX Cluster" +echo "" +echo '' +echo "
    "
    +
    +pattern=$(echo ${QUERY_STRING} | sed -e s,'call=',, | sed -e s/"&passwd="/" "/)
    +call=$(echo $pattern | cut -d' ' -f1)
    +passwd=$(echo $pattern | cut -s -d' ' -f2)
    +
    +
    +if [ ${call} = ""]  ; then
    +  echo "
    " + echo "
    " + echo "Welcome to the Spider DX Cluster" + echo "" + echo ${clustercall} + echo "" + echo "

     

    " + echo '
    ' + echo "Your Call Please: " + echo ' ' + echo '' + echo "
    " + echo "
    " + +else + echo "" > ${tempfile}${call}.html + echo "" >> ${tempfile}${call}.html + echo "" >> ${tempfile}${call}.html + echo "" >> ${tempfile}${call}.html + echo '' >> ${tempdir}${call}.html + echo '' >> ${tempdir}${call}.html + echo '' >> ${tempdir}${call}.html + echo "" >> ${tempdir}${call}.html + echo "" >> ${tempdir}${call}.html + echo "" >> ${tempdir}${call}.html + GOTO='' + echo ${GOTO} + +fi + echo "
    " + echo "" + +# all *.html tempory files remove older than 10 min +# +cd ${tempdir} +files=$(find *.html -mmin +10) +rm ${files} diff --git a/spider-web/spiderclient.class b/spider-web/spiderclient.class new file mode 100644 index 0000000000000000000000000000000000000000..679401f392f41d5a99c1fa35060140742f06ed8e GIT binary patch literal 2607 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 0) { + InputPos--; + input.setText(InputBuffer[InputPos]); + } + return true; + } + else if (evt.key == Event.DOWN) { + if (InputPos < MaxInputPos) { + InputPos++; + input.setText(InputBuffer[InputPos]); + } + else { + input.setText(""); + } + + } + return true; + } + + return super.handleEvent(evt); + } + + public synchronized void show() { + move(50, 50); + super.show(); + } + + public void setUserColor(Color c, String whichColor) { + if (whichColor.equals("Output Background ...")) { + OutBackgroundColor = c; + } + else if (whichColor.equals("Output Foreground ...")) { + OutForegroundColor = c; + } else if (whichColor.equals("Input Background ...")) { + InBackgroundColor = c; + } + else if (whichColor.equals("Input Foreground ...")) { + InForegroundColor = c; + } else if (whichColor.equals("Output own text ...")) { + OutOwnColor = c; + } + + setColors(); + } + + + public void connected() { + connect_menuitem.setLabel("Disconnect"); + connectState.setText("Connected to "+Hostname+":"+Port); + input.setEditable(true); + copy_menuitem.enable(); + Connected = true; + connectButton.disable(); + disconnectButton.enable(); + } + + public void disconnected() { + Connected = false; + connect_menuitem.setLabel("Connect"); + connectState.setText("Disconnected from "+Hostname); + input.setEditable(false); + copy_menuitem.disable(); + paste_menuitem.disable(); + connectButton.enable(); + disconnectButton.disable(); + } + + public void setUserFont(String name, int size, int style, + String whichFont) { + if (whichFont.equals("Area ...")) { + OutFont = new Font(name, style, size); + } + else if (whichFont.equals("Input Line ...")) { + InFont = new Font(name, style, size); + } + + setFonts(); + } + + + public void getSelectedText() { + CopyPaste = new String(output.getSelectedText()); + paste_menuitem.enable(); + } + + public boolean action(Event evt, Object arg) { + if (evt.target instanceof MenuItem) { + if (arg.equals("Quit")) { + this.hide(); + // } else if (arg.equals("Personal preferences ...")) { + // PersonalPreferences pp = new PersonalPreferences(this, + // Call, Fullname, OutFont); + } else if (arg.equals("Connect")) { + parent.doconnect(); + } else if (arg.equals("Disconnect")) { + parent.dodisconnect(); + } else if (arg.equals("About")) { + InfoDialog id = new InfoDialog(this, "About", + "JAVA Spider Webclient 0.6b\nPA4AB\n" + + "pa4ab@pa4ab.net \n" + + "April 2001\n" + + "Based on source of the CLX Client from dl6dbh" ); + + id.resize(500,300); + id.show(); + } else if (arg.equals("Copy")) { + getSelectedText(); + } else if (arg.equals("Paste")) { + input.insertText(CopyPaste,input.getSelectionStart()); + } else if (arg.equals("Bye")) { + if (Connected) out.println("bye"); + } else if (arg.equals("Help")) { + if (Connected) out.println("help overview"); + } else if (arg.equals("Show Last DX")) { + if (Connected) out.println("sh/dx"); + } else if (arg.equals("Status")) { + if (Connected) out.println("sh/conf"); + } else if (arg.equals("Show WWV")) { + if (Connected) out.println("sh/wwv"); + } else if (arg.equals("Show Beam Direction")) { + beam pp = new beam(this, Prefix, OutFont); + if (Connected) out.println ("sh/heading " + Prefix ); + } else if (arg.equals("search DX")) { + beam pp = new beam(this, Prefix, OutFont); + if (Connected) out.println ("sh/dx " + Prefix ); + + } else if (arg.equals("Search QSL Info")) { + beam pp = new beam(this, Prefix, OutFont); + if (Connected) out.println ("sh/qsl " + Prefix ); + + + } else if (arg.equals("search Adress")) { + beam pp = new beam(this, Prefix, OutFont); + if (Connected) out.println ("sh/qrz " + Prefix ); + + + } else if (arg.equals("search qsl Manager")) { + beam pp = new beam(this, Prefix, OutFont); + if (Connected) out.println ("sh/qsl " + Prefix ); + + + } else if (arg.equals("search DXCC")) { + beam pp = new beam(this, Prefix, OutFont); + if (Connected) out.println ("sh/dxcc " + Prefix ); + + // buttom settings + + } else if (arg.equals("Set Beep")) { + if (Connected) out.println("set/Beep"); + + }else if (arg.equals("Set QTH / City")) { + beam pp = new beam(this, Prefix, OutFont); + if (Connected) out.println ("set/qth " + Prefix ); + + + }else if (arg.equals("Set Name")) { + beam pp = new beam(this, Prefix, OutFont); + if (Connected) out.println ("set/name " + Prefix ); + + } + else if (arg.equals("Set Locator")) { + beam pp = new beam(this, Prefix, OutFont); + if (Connected) out.println ("set/loc " + Prefix ); + + + } + else if (arg.equals("Show Personal Settings")) { + if (Connected) out.println ("show/sta " + Call ); + + + } + + // dx announce + + else if (arg.equals("DXannounce")) { + dxannounce pp = new dxannounce(this, Call2, Freq, Remarks, OutFont); + if (Connected) out.println ("dx " + Call2 + " " + Freq + " " + Remarks ); + + } + // mailbox + else if (arg.equals("last 50 Msgs")) { + if (Connected) out.println ("dir/50 " ); + } + else if (arg.equals("list DX Bulletins")) { + if (Connected) out.println ("dir/bul " ); + } + else if (arg.equals("new Msgs")) { + if (Connected) out.println ("dir/new " ); + } + else if (arg.equals("own Msgs")) { + if (Connected) out.println ("dir/own " ); + } + + + + else return false; + } + else if (evt.target instanceof Button) { + if (arg.equals("Connect")) { + if (!Connected) { + parent.doconnect(); + } else return false; + } else if (arg.equals("Disconnect")) { + if (Connected) { + parent.dodisconnect(); + } else return false; + } + + else return false; + } + + return true; + } + + private idleTime idle; + + private TextArea input; + private TextArea output; + private MenuBar menubar; + private Menu file; + private Menu edit; + private Menu settings; + private Menu colors; + private Menu fonts; + private Menu commands; + private Menu show; + private Menu set; + private Menu dxann; + private Menu mailbox; + + + private MenuItem connect_menuitem = new MenuItem("Connect"); + private MenuItem copy_menuitem = new MenuItem("Copy"); + private MenuItem paste_menuitem = new MenuItem("Paste"); + + private Button connectButton = new java.awt.Button("Connect"); + private Button disconnectButton = new java.awt.Button("Disconnect"); + + private Date today = new Date(); + private Label DateLabel = new Label(today.toLocaleString()); + private Label IdleLabel = new Label("00:00"); + private Label connectState = new Label("not connected"); + + + private Color OutBackgroundColor = new Color(0,0,66); + private Color OutForegroundColor = new Color(255,255,0); + private Color OutOwnColor = Color.red; + private Color InBackgroundColor = new Color(234,199,135); + private Color InForegroundColor = Color.red; + + private Font OutFont = new Font("Courier", Font.PLAIN, 13); + private Font InFont = new Font("Courier", Font.BOLD, 13); + + private String Call = new String("NOCALL"); + private String Fullname = new String("NOBODY"); + private String Hostname = new String("localhost"); + private String Port = new String("3600"); + private String Channel = new String("0"); + + + private String Prefix = new String (""); + private String Call2 = new String (""); + private String Freq = new String (""); + private String Remarks = new String (""); + + + + + + + + private PrintStream out = null; + + private String InputBuffer[] = new String[256]; + private int InputPos = 0; + private int MaxInputPos = 0; + + private String CopyPaste; + + private boolean Connected; + + private spiderclient parent; + +} + +class setDate extends Thread { + + spiderframe cf; + + public setDate(spiderframe cf) { + this.cf = cf; + this.start(); + } + + public void run() { + for(;;) { + try { sleep(1000); } catch (InterruptedException e) {} + today = new Date(); + cf.setTime(today.toLocaleString()); + } + } + + private Date today = new Date(); + +} + + +class idleTime extends Thread { + + spiderframe cf; + int count; + + public idleTime(spiderframe cf) { + this.cf = cf; + this.start(); + count = 0; + } + + public void resetTimer() { + count=0; + } + + public void run() { + + for(;;) { + try { sleep(1000); } catch (InterruptedException e) {} + count++; + String sec = new Format("%02d").form(count % 60); + String min = new Format("%02d").form(count / 60); + cf.setIdle("Idle: "+min+":"+sec); + } + } +} -- 2.34.1