From: g0vgs Date: Mon, 6 Jan 2003 18:10:50 +0000 (+0000) Subject: add changes to web client from Rene X-Git-Tag: PRE-1-52~96 X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=8d8c3bfbac9f345e294a874a1ad63430a9222722 add changes to web client from Rene --- diff --git a/Changes b/Changes index b4405806..3fa291e0 100644 --- a/Changes +++ b/Changes @@ -4,6 +4,8 @@ Please note that there is a change to the spider.cgi file this time so that the client show 'Connected to Node_Call' instead of the hostname. You will need to update your cgi file when you update the changes. Please make sure that you back up your old files first! (g0vgs) +2. yet more changes to the java client from Rene :-) Also added a makefile +and a Changes file for the client in the spider-web directory. 05Jan03======================================================================= 1. fix some irritating messages caused by protocol loops in sh/c 2. update copyright diff --git a/spider-web/StreamListener.class b/spider-web/StreamListener.class index 272484b6..b286c34a 100644 Binary files a/spider-web/StreamListener.class and b/spider-web/StreamListener.class differ diff --git a/spider-web/beam.class b/spider-web/beam.class index 7b475e47..92e70582 100644 Binary files a/spider-web/beam.class and b/spider-web/beam.class differ diff --git a/spider-web/dxannounce.class b/spider-web/dxannounce.class index 6e9ab847..881eaa46 100644 Binary files a/spider-web/dxannounce.class and b/spider-web/dxannounce.class differ diff --git a/spider-web/idleTime.class b/spider-web/idleTime.class index c15111e2..f3ab9ec2 100644 Binary files a/spider-web/idleTime.class and b/spider-web/idleTime.class differ diff --git a/spider-web/makefile b/spider-web/makefile new file mode 100644 index 00000000..8bd55e3a --- /dev/null +++ b/spider-web/makefile @@ -0,0 +1,7 @@ +all: compile + + +compile: + rm *.class + /usr/lib/java/bin/javac spiderclient.java + diff --git a/spider-web/setDate.class b/spider-web/setDate.class index c1564380..e01352e9 100644 Binary files a/spider-web/setDate.class and b/spider-web/setDate.class differ diff --git a/spider-web/spiderclient.class b/spider-web/spiderclient.class index d2ad6457..d2da6b8f 100644 Binary files a/spider-web/spiderclient.class and b/spider-web/spiderclient.class differ diff --git a/spider-web/spiderframe.class b/spider-web/spiderframe.class index dd34ecd6..7c355cde 100644 Binary files a/spider-web/spiderframe.class and b/spider-web/spiderframe.class differ diff --git a/spider-web/spiderframe.java b/spider-web/spiderframe.java index 83e865f4..90e76acc 100755 --- a/spider-web/spiderframe.java +++ b/spider-web/spiderframe.java @@ -409,10 +409,10 @@ menubar.add(mailbox); 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" ); + "JAVA Spider Webclient 1.0\n\nModified by PA4AB, M0AZM and OZ1LQH\n" + + "\n" + + "January 2002\n" + + "Based on source of the CLX Client from DL6DBH" ); id.resize(500,300); id.show();