added new version of gtkconsole
authorDirk Koopman <djk@tobit.co.uk>
Thu, 27 Sep 2007 17:05:46 +0000 (18:05 +0100)
committerDirk Koopman <djk@tobit.co.uk>
Thu, 27 Sep 2007 17:05:46 +0000 (18:05 +0100)
and admitted its existance.

Changes
gtkconsole/README [new file with mode: 0644]
perl/Version.pm

diff --git a/Changes b/Changes
index 69dde9cfee5f922b9ee50cd5deafdc909e232a8f..b0ce1be7982f096b5d195d5b36b3d7844b736515 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,9 @@
+27Sep07=======================================================================
+1. Fixed gtkconsole to split out all the windows. See
+/spider/gtkconsole/README for installation and usage instructions. This
+program will work on both Windows and Linux provided the extra Gtk2 perl
+libraries + dependencies are installed. Instructions for getting them are in
+the README file.
 25Sep07=======================================================================
 1. Fix mrtg command so that it does not require /var/lock (which anyway gets
 removed and recreated on boot - and the debianised mrtg does not recognise
diff --git a/gtkconsole/README b/gtkconsole/README
new file mode 100644 (file)
index 0000000..9c88b94
--- /dev/null
@@ -0,0 +1,66 @@
+How to install and use Gtkconsole
+---------------------------------
+
+For Linux users:-
+
+Please make sure that you have the following perl packages loaded:-
+
+* Gtk2
+
+this is best obtained from your distro's packaging system. For
+Ubuntu/Debian users, something like (as root or via sudo):-
+
+  aptitude install libgtk2-perl
+
+or for Fedora users:-
+
+  yum install perl-Gtk2 perl-Gtk2-Ex-Simple-List perl-Gtk2-Ex-Utils
+
+For Windows Users:-
+
+This is a bit more complicated but you should either follow the instructions
+on:-
+
+  http://www.lostmind.de/gtk2-perl/
+
+The important thing is that you should be running an activestate perl
+in the 5.8 series. It may work with an earlier 5.6.1 build but I now
+longer have the where withall to test it. Now would be a good time to
+upgrade to the perl suggested on the webpage. The link points directly
+to the activestate download site.
+
+You do need the GTK+ runtime.
+You don't need Glade.
+
+Follow the instructions in "Installation instructions" and you are
+strongly advised to use the method outlined in 2a) and not 2b).
+
+Don't bother with running gtk-demo.
+
+I am using a slightly earlier activestate perl than build 819, mine is
+build 815. It still seems to work for me.
+
+Running the program:-
+
+  cd /spider/gtkconsole
+  perl gtkconsole
+
+This should work if you are running it on the same machine as the
+cluster.  Otherwise, if you get errors try:-
+
+  perl gtkconsole <your sysop call> localhost 7300
+
+where localhost and 7300 are the IP address and port of the cluster
+you want to use.
+
+The interface is very basic at the moment, but it will improve and get
+added to as time permits.
+
+You will notice that various windows will popup automatically as data
+for those windows arrives. You can't stop at the moment. It is a
+feature.
+
+Please report problems and feature requests to the dxspider-support
+list.
+
+Dirk G1TLH
index 4d198fa05318cc77643eeb2efe4564816f8ae146..4ce6195a310d4c63df051c6a3a04af163b667c14 100644 (file)
@@ -11,6 +11,6 @@ use vars qw($version $subversion $build);
 
 $version = '1.54';
 $subversion = '0';
-$build = '158';
+$build = '159';
 
 1;