]> i-scream Git - www.i-scream.org.git/commitdiff
Merge in changes from branch created for new server. The old server is now
authorTim Bishop <tim@bishnet.net>
Thu, 15 May 2003 20:48:02 +0000 (20:48 +0000)
committerTim Bishop <tim@bishnet.net>
Thu, 15 May 2003 20:48:02 +0000 (20:48 +0000)
history... so we can make the new server use HEAD.

21 files changed:
cgi-bin/cvslog.cgi
cgi-bin/docs.cgi
cgi-bin/download.cgi
www/bottom.inc
www/cms/documentation/gettingstarted.shtml
www/cms/documentation/gettingstarted.xhtml
www/cms/documentation/index.shtml
www/cms/documentation/index.xhtml
www/cms/downloads/index.shtml
www/contents.inc
www/cvs.shtml
www/cvs.xhtml
www/cvsplot/index.html
www/documentation/gettingstarted.shtml
www/documentation/index.shtml
www/downloads/index.shtml
www/left.inc
www/mailinglists.shtml
www/mailinglists.xhtml
www/who.shtml
www/who.xhtml

index c9c2bc70ef5bc55351c4215fb022720ec4cc9fbc..5d542c7529a36d67b1ac67b36e9c48c7cf81fac0 100755 (executable)
@@ -14,17 +14,18 @@ if($period eq "days") {
     if ($days < 1) {$days = 1};
     $heading = "i-scream CVS$moduleext commits in the past $days day(s)";
     $days--;
-    $firstdate = ">" . `date --date \"$days days ago\" \"+%Y/%m/%d\"`;
+    $days .= "d"; # because we can't write "$daysd" below :-)
+    $firstdate = ">" . `/bin/date -v-$days +%Y/%m/%d`;
 }
 elsif($period eq "date") {
     my($date)=$query->param('date');
-    $date = `/bin/date \"+%Y/%m/%d\"` unless defined $date;
+    $date = `/bin/date +%Y/%m/%d` unless defined $date;
     $heading = "i-scream CVS$moduleext commits on $date";
     $firstdate = "$date 00:00<$date 23:59"
 }
 elsif($period eq "since") {
     my($date)=$query->param('date');
-    $date = `/bin/date \"+%Y/%m/%d\"` unless defined $date;
+    $date = `/bin/date +%Y/%m/%d` unless defined $date;
     $heading = "i-scream CVS$moduleext commits since $date";
     $firstdate = ">$date";
 }
@@ -34,7 +35,7 @@ elsif($period eq "thisweek") {
 }
 else {
     # default to "today only"
-    $firstdate = ">" . `/bin/date \"+%Y/%m/%d\"`;
+    $firstdate = ">" . `/bin/date +%Y/%m/%d`;
     $heading = "Today's i-scream CVS$moduleext commits";
 }
 
@@ -43,15 +44,14 @@ my($cvsroot) = "/cvs/i-scream";
 $modulelist = `ls $cvsroot` unless defined $modulelist;
 $modulelist =~ s/[\r\n]/ /gm;
 
-my($cvs2clpath) = "/home/sites/www.i-scream.org.uk/bin/cvs2cl2.pl";
-#my($cvs2clargs) = "--stdout --no-wrap -r -b -t -w -S -U $cvsroot/CVSROOT/users -l \"-d'$firstdate'\" -g \"-d$cvsroot\" -g \"-Q\"";
+my($cvs2clpath) = "/usr/local/bin/cvs2cl";
 my($cvs2clargs) = "--stdout --no-wrap -r -t -w -S -U $cvsroot/CVSROOT/users -l \"-d'$firstdate'\" -g \"-d$cvsroot\" -g \"-Q\"";
-my($updatecmd) = "/home/sites/www.i-scream.org.uk/bin/fullcvsupdate.sh $modulelist";
-my($logcmd) = "cd /home/sites/www.i-scream.org.uk/cvsscripttemp && $cvs2clpath $cvs2clargs";
+my($updatecmd) = "/home/iscream/bin/fullcvsupdate.sh $modulelist";
+my($logcmd) = "cd /tmp/i-scream/cvstmp && $cvs2clpath $cvs2clargs";
 
-my ($left) = "../left.inc" ;
-my ($title) = "../title.inc";
-my ($bottom) = "../bottom.inc";
+my ($left) = "../htdocs/left.inc" ;
+my ($title) = "../htdocs/title.inc";
+my ($bottom) = "../htdocs/bottom.inc";
 
 print "Content-type: text/html\n\n";
 
@@ -91,7 +91,7 @@ my(@modules) = split (/\s+/, $modulelist);
 foreach my $module (@modules) {
 
     print "<table border=\"0\" bgcolor=\"#000066\" cellpadding=\"5\" width=\"100%\">\n\n";
-    print "<tr><td>\n<font size=\"4\"><b><a href=\"/cgi-bin/cvs/viewcvs.cgi/$module\" style=\"color: white\">$module module</a></b></font>\n</td></tr>\n\n";
+    print "<tr><td>\n<font size=\"4\"><b><a href=\"http://cvs.i-scream.org/$module\" style=\"color: white\">$module module</a></b></font>\n</td></tr>\n\n";
     print "<tr><td bgcolor=\"white\">\n";
 
     my(@lines) = `$logcmd $module 2>&1`;
@@ -118,22 +118,32 @@ foreach my $module (@modules) {
                 print "</i>\n</font>\n"
             }
             elsif($line =~ /(\S+) (\(\S+\))([,:])/ || $line =~ /(\S+) (\(\S+,\s+\S+\))([,:])/) {
-                #chop $line;
                 my ($file, $rest, $ext) = ($1, $2, $3);
                 print "<code>";
-                print "<a href=\"/cgi-bin/cvs/viewcvs.cgi/$file\" style=\"text-decoration: none;\">";
+                print "<a href=\"http://cvs.i-scream.org/$file\" style=\"text-decoration: none;\">";
                 print HTML_encode($file);
                 print "</a> ";
                 if($rest =~ /\((\S+)\.(\d+)(.*)\)/) {
-                    my $newrev = "$1.$2";
-                    my $oldminver = $2-1;
-                    my $oldrev = "$1.$oldminver";
-                    if($2 != 1) {
+                    my $start = $1;
+                    my $end = $2;
+                    my $other = $3;
+                    my $newrev = "$start.$end";
+                    my $oldrev;
+                    if($end != 1) {
+                        my $oldminver = $end-1;
+                        $oldrev = "$start.$oldminver";
+                    }
+                    elsif($start =~ /^((\d+\.)+)(\d+)$/) {
+                        $oldrev = $1;
+                        # take trailing . off old revision
+                        chop $oldrev;
+                    }
+                    if(defined $oldrev) {
                         my $diff = ".diff?r1=$oldrev&r2=$newrev";
-                        print "(<a href=\"/cgi-bin/cvs/viewcvs.cgi/$file$diff\" style=\"text-decoration: none;\">";
-                        print HTML_encode("$1.$2");
+                        print "(<a href=\"http://cvs.i-scream.org/$file$diff\" style=\"text-decoration: none;\">";
+                        print HTML_encode("$start.$end");
                         print "</a>";
-                        print HTML_encode("$3)");
+                        print HTML_encode("$other)");
                     }
                     else {
                         print HTML_encode($rest);
index 0336e4c71b84c2fda82d3ef27e41e768fe4b42b2..8c60667f6e82ab64edd813ee57379682cb2591d1 100755 (executable)
@@ -13,9 +13,9 @@ use CGI;
 $| = 1;
 
 # Settings
-my ($left) = "../left.inc" ;
-my ($title) = "../title.inc";
-my ($bottom) = "../bottom.inc";
+my ($left) = "../htdocs/left.inc" ;
+my ($title) = "../htdocs/title.inc";
+my ($bottom) = "../htdocs/bottom.inc";
 
 
 my ($query) = new CGI;
@@ -34,10 +34,10 @@ unless (defined $doc) {
 # Prevent hackers from supplying a malformed document string.
 # I.e. only allow normal characters, slashes and dots.
 unless ($doc =~ /^[a-zA-Z_\-0-9\.\/]+$/) {
-    print "Go Away, you nasty hax0r!";
+    print "Malformed request";
     exit;
 }
-$doc = "../documentation/".$doc;
+$doc = "../htdocs/documentation/".$doc;
 
 print <<"END";
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
index a51abadd777553f181beb8caddecfba573bced33..51727ec1df5da4170750dcf2acf0a9d43e2f99c3 100755 (executable)
@@ -21,9 +21,9 @@ $| = 1;
 #--------------------------------------------------------------
 my ($build_dir) = "/downloads";
 my ($log_file) = "download_log";
-my ($left) = "../left.inc" ;
-my ($title) = "../title.inc";
-my ($bottom) = "../bottom.inc";
+my ($left) = "../htdocs/left.inc" ;
+my ($title) = "../htdocs/title.inc";
+my ($bottom) = "../htdocs/bottom.inc";
 #--------------------------------------------------------------
 
 
index 4815618235d85485e5b21a3087cfa61bf1409308..66ac39f319cd0a6a9e82c6270ea5a56eee3f86b2 100644 (file)
@@ -8,9 +8,9 @@
     <p>&nbsp;</p>
     <p align="center">
      <font size="1" face="arial,sans-serif" color="#000066">
-     <a href="http://www.i-scream.org.uk">http://www.i-scream.org.uk</a><br>
-     Copyright 2001-2002 The i-scream Project<br>
-     dev@i-scream.org.uk     
+     <a href="http://www.i-scream.org">http://www.i-scream.org</a><br>
+     Copyright 2001-2003 The i-scream Project<br>
+     dev@i-scream.org     
      </font>
     </p>
     <p align="center">
index f28efa09e47e7610fa3cb937aa05fb7b28c93144..92301797da4d6fe21916be4669a056bc00b3f5e7 100644 (file)
@@ -40,7 +40,7 @@ this running. It should simply be a case of extracting and running.</p>
 <p>The first stage is to download and install the server application. The 
 latest versions of all i-scream applications can be found at the following 
 URL:</p>
-<p><a href="http://www.i-scream.org.uk/downloads">http://www.i-scream.org.uk/downloads</a></p>
+<p><a href="http://www.i-scream.org/downloads">http://www.i-scream.org/downloads</a></p>
 <p>Once downloaded, the archive should be extracted to a directory of your 
 choice. The server will run on most Java enabled platforms (including 
 Windows, Linux and FreeBSD).</p>
@@ -137,7 +137,7 @@ needs. You may wish to run the database section of the server on the same
 machine as the database, while running the rest on another machine.</p>
 <p>Some discussion about this is available in the server documentation.</p>
 <p>If you have any questions about any of the above, please don't hesitate to 
-contact us at <a href="mailto:dev@i-scream.org.uk">dev@i-scream.org.uk</a>. If you find we've missed something out, 
+contact us at <a href="mailto:dev@i-scream.org">dev@i-scream.org</a>. If you find we've missed something out, 
 again, please let us know.</p>
 <p>Finally, we'd like to thank you for trying this i-scream product. We realise 
 that it's still at an early stage, and we therefore appreciate you taking 
index f28efa09e47e7610fa3cb937aa05fb7b28c93144..92301797da4d6fe21916be4669a056bc00b3f5e7 100644 (file)
@@ -40,7 +40,7 @@ this running. It should simply be a case of extracting and running.</p>
 <p>The first stage is to download and install the server application. The 
 latest versions of all i-scream applications can be found at the following 
 URL:</p>
-<p><a href="http://www.i-scream.org.uk/downloads">http://www.i-scream.org.uk/downloads</a></p>
+<p><a href="http://www.i-scream.org/downloads">http://www.i-scream.org/downloads</a></p>
 <p>Once downloaded, the archive should be extracted to a directory of your 
 choice. The server will run on most Java enabled platforms (including 
 Windows, Linux and FreeBSD).</p>
@@ -137,7 +137,7 @@ needs. You may wish to run the database section of the server on the same
 machine as the database, while running the rest on another machine.</p>
 <p>Some discussion about this is available in the server documentation.</p>
 <p>If you have any questions about any of the above, please don't hesitate to 
-contact us at <a href="mailto:dev@i-scream.org.uk">dev@i-scream.org.uk</a>. If you find we've missed something out, 
+contact us at <a href="mailto:dev@i-scream.org">dev@i-scream.org</a>. If you find we've missed something out, 
 again, please let us know.</p>
 <p>Finally, we'd like to thank you for trying this i-scream product. We realise 
 that it's still at an early stage, and we therefore appreciate you taking 
index a8d245e84ae41c371143584c49e341319abf365a..6ff0e5396e5c43549a440631314da45707326280 100644 (file)
@@ -34,7 +34,7 @@ from this website. However, there may be changes in the CVS version which
 are not documented in the code. The link below shows what changes have been
 made since the project completion date.</p>
 
-<a href="http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=since&date=2001/03/29&module=cms">
+<a href="http://www.i-scream.org/cgi-bin/cvslog.cgi?period=since&date=2001/03/29&module=cms">
 Commits to the "cms" CVS module since project completion (29/03/2001)</a>
 
 <hr>
index a8d245e84ae41c371143584c49e341319abf365a..6ff0e5396e5c43549a440631314da45707326280 100644 (file)
@@ -34,7 +34,7 @@ from this website. However, there may be changes in the CVS version which
 are not documented in the code. The link below shows what changes have been
 made since the project completion date.</p>
 
-<a href="http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=since&date=2001/03/29&module=cms">
+<a href="http://www.i-scream.org/cgi-bin/cvslog.cgi?period=since&date=2001/03/29&module=cms">
 Commits to the "cms" CVS module since project completion (29/03/2001)</a>
 
 <hr>
index a4b545df3d4d082eb334e78646e0208345306e43..4c19706e6c2884b135538ffb7d677480cfce0213 100644 (file)
@@ -45,7 +45,7 @@
    more developed than the downloads you'll find below. We recommend you
    start here. This is the codebase from which we'll make a proper release
    sometime in the future.</p>
-   <p><a href="http://snapshots.i-scream.org.uk">Snapshot Server</a></p>
+   <p><a href="http://snapshots.i-scream.org">Snapshot Server</a></p>
    </font>
   </td>
  </tr>
@@ -66,7 +66,7 @@
    <p>You will be asked to enter some basic information before
    downloading, although this is purely optional.  We value feedback
    from people testing the i-scream products, so please feel free to
-   contact us at dev@i-scream.org.uk.</p>
+   contact us at dev@i-scream.org.</p>
    </font>
   </td>
  </tr>
index 5922bd06a215ca7c7cd64baa0c7e7387b553c95f..73beeacd683273342ca78e26014f6cd117d320ea 100644 (file)
         These builds will have quite a few changes from the downloads
         currently available (a document detailing them will be
         released later on), so please give them a whirl. We would be
-        grateful if you <a href="mailto:dev@i-scream.org.uk">contacted</a>
+        grateful if you <a href="mailto:dev@i-scream.org">contacted</a>
         us with any questions or bugs.<br><br>
         The downloads will be available on our snapshot server :-<br>
-        <a href="http://snapshots.i-scream.org.uk/">
-        http://snapshots.i-scream.org.uk/</a>.
+        <a href="http://snapshots.i-scream.org/">
+        http://snapshots.i-scream.org/</a>.
        </p>
 
        <p align="justify">
@@ -32,7 +32,7 @@
         see an efficient native host! Credit goes to our new developer
         <a href="/who.shtml">Pete</a>. Until we update the downloads
         pages you can download the new ihost 
-        <a href="http://snapshots.i-scream.org.uk/ihost/ihost-1.0rc1.tar.gz">
+        <a href="http://snapshots.i-scream.org/ihost/">
         here</a>.
        </p>
 
@@ -44,7 +44,7 @@
         backend which took up far too many resources. This new system
         generates the graphs in a more realtime nature, allowing more
         flexible graphs to be generated. This is currently only available
-        through <a href="http://www.i-scream.org.uk/cgi-bin/cvs/viewcvs.cgi/cms/source/reports/rrdgraphing/">
+        through <a href="http://cvs.i-scream.org/cms/source/reports/rrdgraphing/">
         CVS</a>.
        </p>
 
@@ -69,7 +69,7 @@
         Java ACL (Access Control List) code has been added to the util
         package of the i-scream server. This code will ultimately allow
         the server to be more secure when exposed to the Internet. More
-        details can be found <a href="http://www.cs.ukc.ac.uk/people/staff/tdb/#acl">
+        details can be found <a href="http://www.cs.kent.ac.uk/people/staff/tdb/#acl">
         here</a> on the author's website.
        </p>
        
@@ -93,7 +93,7 @@
         <b><a href="documentation">documentation</a></b> page has details of
         installation, use and maintenance for the end user and developer.
         We value feedback and comments from you, so please drop us an e-mail
-        to <a href="mailto:dev@i-scream.org.uk">dev@i-scream.org.uk</a>.
+        to <a href="mailto:dev@i-scream.org">dev@i-scream.org</a>.
        </p>
        
        <p>&nbsp;</p>
        <p align="justify">
         <a href="screenshots/"><img border="0" src="screenshots/thumbnail-reports-raptor-latest-misc.gif" width="100" height="104" align="left"></a>
         The i-scream Distributed Central Monitoring System started off as
-        a final year project for a group of <a href="http://www.cs.ukc.ac.uk">
-        Computer Science</a> students at the <a href="http://www.ukc.ac.uk">
+        a final year project for a group of <a href="http://www.cs.kent.ac.uk">
+        Computer Science</a> students at the <a href="http://www.kent.ac.uk">
         University of Kent at Canterbury</a>, UK. The project was completed at
         4pm on 29 March 2001. It consisted of five lever-arch folders containing
         mostly source code and documentation. The CVS repository was tagged to
             <IMG SRC=http://www.google.com/logos/Logo_40wht.gif border=0 ALT=Google align=middle width="128" height="53"></A>
            </td>
            <td valign="middle">
-            <input type=hidden name=domains value="i-scream.org.uk">
-            <input type=hidden name=sitesearch value="i-scream.org.uk">
+            <input type=hidden name=domains value="i-scream.org">
+            <input type=hidden name=sitesearch value="i-scream.org">
             <INPUT TYPE=text name=q size=35 maxlength=255 value="">
             <INPUT type=submit name=sa VALUE="Search">
-            <INPUT type=hidden name=cof VALUE="T:#000066;LW:502;ALC:#3333cc;L:http://www.i-scream.org.uk/i-scream.gif;LC:#0000ff;LH:37;BGC:#ffffff;AH:left;VLC:#3333cc;AWFID:d646a9fd69e7d9cb;">
+            <INPUT type=hidden name=cof VALUE="T:#000066;LW:502;ALC:#3333cc;L:http://www.i-scream.org/i-scream.gif;LC:#0000ff;LH:37;BGC:#ffffff;AH:left;VLC:#3333cc;AWFID:d646a9fd69e7d9cb;">
            </td>
           </tr>
          </TABLE>
index 1422e4bc859252d6da5c3d4b6782e746f5fc4eaf..90ff6713b54d164f350a5faf7783cca9af261f0b 100644 (file)
@@ -40,15 +40,15 @@ visual frontend to the CVS Repository. It allows you to browse around the
 repository, viewing any version of a file, and the differences between different
 versions. There is also a link to download the latest version of any section.</p>
 
-<p><a href="http://www.i-scream.org.uk/cgi-bin/cvs/viewcvs.cgi">http://www.i-scream.org.uk/cgi-bin/cvs/viewcvs.cgi</a></p>
+<p><a href="http://cvs.i-scream.org/">http://cvs.i-scream.org/</a></p>
 
 <p>We also have a facility to allow people to keep tabs on what's changed
 recently. The following are available:</p>
 
-<p>Commits today: <a href="http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=today">http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=today</a><br>
-Commits this week: <a href="http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=thisweek">http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=thisweek</a><br>
-Commits in the past 7 days: <a href="http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=days&days=7">http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=days&days=7</a><br>
-Commits made since 29/03/2001: <a href="http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=since&date=2001/03/29">http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=since&date=2001/03/29</a></p>
+<p>Commits today: <a href="http://www.i-scream.org/cgi-bin/cvslog.cgi?period=today">http://www.i-scream.org/cgi-bin/cvslog.cgi?period=today</a><br>
+Commits this week: <a href="http://www.i-scream.org/cgi-bin/cvslog.cgi?period=thisweek">http://www.i-scream.org/cgi-bin/cvslog.cgi?period=thisweek</a><br>
+Commits in the past 7 days: <a href="http://www.i-scream.org/cgi-bin/cvslog.cgi?period=days&days=7">http://www.i-scream.org/cgi-bin/cvslog.cgi?period=days&days=7</a><br>
+Commits made since 29/03/2001: <a href="http://www.i-scream.org/cgi-bin/cvslog.cgi?period=since&date=2001/03/29">http://www.i-scream.org/cgi-bin/cvslog.cgi?period=since&date=2001/03/29</a></p>
 
 <h3>Anonymous CVS Access (read-only)</h3>
 
@@ -58,8 +58,8 @@ out a portion of the CVS repository. To see what is available it is recommended
 that you first look at the web frontend.</p>
 </font>
 
-<pre>cvs -d :pserver:anonymous@cvs.i-scream.org.uk:/cvs/i-scream login
-cvs -d :pserver:anonymous@cvs.i-scream.org.uk:/cvs/i-scream checkout [module]</pre>
+<pre>cvs -d :pserver:anonymous@cvs.i-scream.org:/cvs/i-scream login
+cvs -d :pserver:anonymous@cvs.i-scream.org:/cvs/i-scream checkout [module]</pre>
 
 <font face="Arial" size="2">
 <p>When asked for a password, simply press enter.
@@ -73,7 +73,7 @@ on most clients. First the following environment variables need to be set.</p>
 </font>
 
 <pre>CVS_RSH = ssh
-CVSROOT = :ext:username@cvs.i-scream.org.uk:/cvs/i-scream</pre>
+CVSROOT = :ext:username@cvs.i-scream.org:/cvs/i-scream</pre>
 
 <font face="Arial" size="2">
 <p>You should know your username and password
@@ -92,7 +92,7 @@ for maintaining an up-to-date local copy. You will probably want to create a
 supfile that looks something like this;</p>
 </font>
 
-<pre>*default host=cvsup.i-scream.org.uk
+<pre>*default host=cvsup.i-scream.org
 *default base=/home/user/sup
 *default prefix=/home/user/i-scream
 *default release=cvs
@@ -109,11 +109,11 @@ given above, which gets the latest copy of the i-scream source code.</p>
 <h3>CVS Statistics</h3>
 
 <p>There are some statistics available on the cms module of the CVS
-repository, generated by <a href="http://cvsstat.sourceforge.net/">cvsstat</a>,
+repository, generated by <a href="http://cvsplot.sourceforge.net/">cvsplot</a>,
 that allow you to see the progress of development. They're not that exciting,
 but do show when the work was done.</p>
 
-<p><a href="http://www.i-scream.org.uk/cvsstat">http://www.i-scream.org.uk/cvsstat</a></p>
+<p><a href="http://www.i-scream.org/cvsplot">http://www.i-scream.org/cvsplot</a></p>
 
 </font>
 
index 1422e4bc859252d6da5c3d4b6782e746f5fc4eaf..90ff6713b54d164f350a5faf7783cca9af261f0b 100644 (file)
@@ -40,15 +40,15 @@ visual frontend to the CVS Repository. It allows you to browse around the
 repository, viewing any version of a file, and the differences between different
 versions. There is also a link to download the latest version of any section.</p>
 
-<p><a href="http://www.i-scream.org.uk/cgi-bin/cvs/viewcvs.cgi">http://www.i-scream.org.uk/cgi-bin/cvs/viewcvs.cgi</a></p>
+<p><a href="http://cvs.i-scream.org/">http://cvs.i-scream.org/</a></p>
 
 <p>We also have a facility to allow people to keep tabs on what's changed
 recently. The following are available:</p>
 
-<p>Commits today: <a href="http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=today">http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=today</a><br>
-Commits this week: <a href="http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=thisweek">http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=thisweek</a><br>
-Commits in the past 7 days: <a href="http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=days&days=7">http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=days&days=7</a><br>
-Commits made since 29/03/2001: <a href="http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=since&date=2001/03/29">http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=since&date=2001/03/29</a></p>
+<p>Commits today: <a href="http://www.i-scream.org/cgi-bin/cvslog.cgi?period=today">http://www.i-scream.org/cgi-bin/cvslog.cgi?period=today</a><br>
+Commits this week: <a href="http://www.i-scream.org/cgi-bin/cvslog.cgi?period=thisweek">http://www.i-scream.org/cgi-bin/cvslog.cgi?period=thisweek</a><br>
+Commits in the past 7 days: <a href="http://www.i-scream.org/cgi-bin/cvslog.cgi?period=days&days=7">http://www.i-scream.org/cgi-bin/cvslog.cgi?period=days&days=7</a><br>
+Commits made since 29/03/2001: <a href="http://www.i-scream.org/cgi-bin/cvslog.cgi?period=since&date=2001/03/29">http://www.i-scream.org/cgi-bin/cvslog.cgi?period=since&date=2001/03/29</a></p>
 
 <h3>Anonymous CVS Access (read-only)</h3>
 
@@ -58,8 +58,8 @@ out a portion of the CVS repository. To see what is available it is recommended
 that you first look at the web frontend.</p>
 </font>
 
-<pre>cvs -d :pserver:anonymous@cvs.i-scream.org.uk:/cvs/i-scream login
-cvs -d :pserver:anonymous@cvs.i-scream.org.uk:/cvs/i-scream checkout [module]</pre>
+<pre>cvs -d :pserver:anonymous@cvs.i-scream.org:/cvs/i-scream login
+cvs -d :pserver:anonymous@cvs.i-scream.org:/cvs/i-scream checkout [module]</pre>
 
 <font face="Arial" size="2">
 <p>When asked for a password, simply press enter.
@@ -73,7 +73,7 @@ on most clients. First the following environment variables need to be set.</p>
 </font>
 
 <pre>CVS_RSH = ssh
-CVSROOT = :ext:username@cvs.i-scream.org.uk:/cvs/i-scream</pre>
+CVSROOT = :ext:username@cvs.i-scream.org:/cvs/i-scream</pre>
 
 <font face="Arial" size="2">
 <p>You should know your username and password
@@ -92,7 +92,7 @@ for maintaining an up-to-date local copy. You will probably want to create a
 supfile that looks something like this;</p>
 </font>
 
-<pre>*default host=cvsup.i-scream.org.uk
+<pre>*default host=cvsup.i-scream.org
 *default base=/home/user/sup
 *default prefix=/home/user/i-scream
 *default release=cvs
@@ -109,11 +109,11 @@ given above, which gets the latest copy of the i-scream source code.</p>
 <h3>CVS Statistics</h3>
 
 <p>There are some statistics available on the cms module of the CVS
-repository, generated by <a href="http://cvsstat.sourceforge.net/">cvsstat</a>,
+repository, generated by <a href="http://cvsplot.sourceforge.net/">cvsplot</a>,
 that allow you to see the progress of development. They're not that exciting,
 but do show when the work was done.</p>
 
-<p><a href="http://www.i-scream.org.uk/cvsstat">http://www.i-scream.org.uk/cvsstat</a></p>
+<p><a href="http://www.i-scream.org/cvsplot">http://www.i-scream.org/cvsplot</a></p>
 
 </font>
 
index 914bc2ea32e5bd5d5148a2d00a4f496da93b649f..8fbf0f31503f76473a5fced785ef210fe6156d87 100644 (file)
@@ -12,7 +12,7 @@
 count</i> for the source files.<br>
 Only the files in the cms module of cvs are listed.
 This page is updated at 7am daily.</p>
-<p>You can also <a href="/cgi-bin/cvs/viewcvs.cgi/source">browse</a> the cvs
+<p>You can also <a href="http://cvs.i-scream.org/cms">browse</a> the cvs
 repository.</p>
 <h3>file count</h3>
 <p>Count of the number of files since the start of the project.</p>
@@ -23,9 +23,7 @@ repository.</p>
 <p>Textual representation: <a href="linedata.txt">linedata.txt</a></p>
 <p><img border="0" src="linedata.png" width="640" height="480"></p>
 <h3>credits</h3>
-<p>These images were generated using the cvsstat program, which can be found <a href="http://cvsstat.sourceforge.net">here</a>.</p>
-<p>&nbsp;</p>
-<p>Page last updated, 18/06/01, <a href="mailto:dev@i-scream.org.uk">dev@i-scream.org.uk</a>.</p>
+<p>These images were generated using the cvsplot program, which can be found <a href="http://cvsplot.sourceforge.net">here</a>.</p>
 
 </body>
 
index f28efa09e47e7610fa3cb937aa05fb7b28c93144..92301797da4d6fe21916be4669a056bc00b3f5e7 100644 (file)
@@ -40,7 +40,7 @@ this running. It should simply be a case of extracting and running.</p>
 <p>The first stage is to download and install the server application. The 
 latest versions of all i-scream applications can be found at the following 
 URL:</p>
-<p><a href="http://www.i-scream.org.uk/downloads">http://www.i-scream.org.uk/downloads</a></p>
+<p><a href="http://www.i-scream.org/downloads">http://www.i-scream.org/downloads</a></p>
 <p>Once downloaded, the archive should be extracted to a directory of your 
 choice. The server will run on most Java enabled platforms (including 
 Windows, Linux and FreeBSD).</p>
@@ -137,7 +137,7 @@ needs. You may wish to run the database section of the server on the same
 machine as the database, while running the rest on another machine.</p>
 <p>Some discussion about this is available in the server documentation.</p>
 <p>If you have any questions about any of the above, please don't hesitate to 
-contact us at <a href="mailto:dev@i-scream.org.uk">dev@i-scream.org.uk</a>. If you find we've missed something out, 
+contact us at <a href="mailto:dev@i-scream.org">dev@i-scream.org</a>. If you find we've missed something out, 
 again, please let us know.</p>
 <p>Finally, we'd like to thank you for trying this i-scream product. We realise 
 that it's still at an early stage, and we therefore appreciate you taking 
index a8d245e84ae41c371143584c49e341319abf365a..6ff0e5396e5c43549a440631314da45707326280 100644 (file)
@@ -34,7 +34,7 @@ from this website. However, there may be changes in the CVS version which
 are not documented in the code. The link below shows what changes have been
 made since the project completion date.</p>
 
-<a href="http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=since&date=2001/03/29&module=cms">
+<a href="http://www.i-scream.org/cgi-bin/cvslog.cgi?period=since&date=2001/03/29&module=cms">
 Commits to the "cms" CVS module since project completion (29/03/2001)</a>
 
 <hr>
index a4b545df3d4d082eb334e78646e0208345306e43..4c19706e6c2884b135538ffb7d677480cfce0213 100644 (file)
@@ -45,7 +45,7 @@
    more developed than the downloads you'll find below. We recommend you
    start here. This is the codebase from which we'll make a proper release
    sometime in the future.</p>
-   <p><a href="http://snapshots.i-scream.org.uk">Snapshot Server</a></p>
+   <p><a href="http://snapshots.i-scream.org">Snapshot Server</a></p>
    </font>
   </td>
  </tr>
@@ -66,7 +66,7 @@
    <p>You will be asked to enter some basic information before
    downloading, although this is purely optional.  We value feedback
    from people testing the i-scream products, so please feel free to
-   contact us at dev@i-scream.org.uk.</p>
+   contact us at dev@i-scream.org.</p>
    </font>
   </td>
  </tr>
index b0109fbcbd9652c805fea6278bdd732df65ec6b1..c9755af0b5ed2b5fc51f4f98660a0e344763813a 100644 (file)
        <p>
        <hr noshade size="1" color="#000000">
        <h5>other projects</h5>
-       <a href="http://vrmlgraph.i-scream.org.uk">3-D VRML graph drawing</a><br>
+       <a href="http://vrmlgraph.i-scream.org">3-D VRML graph drawing</a><br>
        <a href="http://www.jibble.org/pircbot.php">PircBot IRC Bot</a><br>
        <a href="http://www.jibble.org/jibblewebserver.php">Jibble Web Server</a><br>
-       <a href="http://www.cs.ukc.ac.uk/people/staff/tdb/#acl">Java ACL's for TCP/UDP</a><br>
+       <a href="http://www.cs.kent.ac.uk/people/staff/tdb/#acl">Java ACL's for TCP/UDP</a><br>
        <p>
        <hr noshade size="1" color="#000000">
        <h5>internal papers</h5>
        <hr noshade size="1" color="#000000">
        <h5>links</h5>
        <a href="http://www.jacorb.org/">JacORB</a><br>
-       <a href="http://www.cs.ukc.ac.uk/">UKC - Computer Science</a><br>
+       <a href="http://www.cs.kent.ac.uk/">UKC - Computer Science</a><br>
        <a href="http://www.w3.org/XML/">W3 XML Information</a><br>
        <a href="http://java.sun.com/xml/download.html">JAXP</a>
        <p>
        <hr noshade size="1" color="#000000">
        <h5>contact us</h5>
-       <a href="mailto:dev@i-scream.org.uk">dev@i-scream.org.uk</a>
+       <a href="mailto:dev@i-scream.org">dev@i-scream.org</a>
        <p>
        <hr noshade size="1" color="#000000">
-       <a href="http://www.toucan-online.co.uk/">
-        <img border="0" src="/toucan.gif" width="88" height="31">
-       </a>
-       <br>
        <a href="http://sourceforge.net">
         <img src="http://sourceforge.net/sflogo.php?group_id=24439" width="88" height="31" border="0" alt="SourceForge Logo">
        </a>
index 8319eb203a3661d369c05afbecf91e902ab994db..1de0279097adcb64dd2e5ad35ea1d1db7c191ba5 100644 (file)
@@ -32,19 +32,19 @@ users of i-scream products. At the present time the lists are generic to all
 products, but if the volume of e-mail rises it may become necessary to create
 per-project mailing lists. Here are a current lists.</p>
 
-<h3>dev@i-scream.org.uk</h3>
+<h3>dev@i-scream.org</h3>
 
 <p>State: Closed<br>
 Purpose: A discussion forum for developers only. This can also be used to
 contact the development team as a whole.</p>
 
-<h3>commits@i-scream.org.uk</h3>
+<h3>commits@i-scream.org</h3>
 
 <p>State: Open for subscription, but no posts should be sent here.<br>
 Purpose: Daily commit logs from the i-scream CVS repository are sent to this
 list. If you wish to keep up on development, join this list.</p>
 
-<h3>users@i-scream.org.uk</h3>
+<h3>users@i-scream.org</h3>
 
 <p>State: Open for subscription and posts.<br>
 Purpose: For discussion between users, developers, and anyone else. This is the
@@ -52,7 +52,7 @@ place to ask questions and get support.</p>
 
 <h3>Subscribing</h3>
 
-<p>If you wish to join one of the open lists, send a subscribe e-mail to <a href="mailto:majordomo@i-scream.org.uk">majordomo@i-scream.org.uk</a>
+<p>If you wish to join one of the open lists, send a subscribe e-mail to <a href="mailto:majordomo@i-scream.org">majordomo@i-scream.org</a>
 and your subscription will automatically be processed. If you send
 &quot;help&quot; to the same address, you will be given a list of supported
 operations.</p>
index 8319eb203a3661d369c05afbecf91e902ab994db..1de0279097adcb64dd2e5ad35ea1d1db7c191ba5 100644 (file)
@@ -32,19 +32,19 @@ users of i-scream products. At the present time the lists are generic to all
 products, but if the volume of e-mail rises it may become necessary to create
 per-project mailing lists. Here are a current lists.</p>
 
-<h3>dev@i-scream.org.uk</h3>
+<h3>dev@i-scream.org</h3>
 
 <p>State: Closed<br>
 Purpose: A discussion forum for developers only. This can also be used to
 contact the development team as a whole.</p>
 
-<h3>commits@i-scream.org.uk</h3>
+<h3>commits@i-scream.org</h3>
 
 <p>State: Open for subscription, but no posts should be sent here.<br>
 Purpose: Daily commit logs from the i-scream CVS repository are sent to this
 list. If you wish to keep up on development, join this list.</p>
 
-<h3>users@i-scream.org.uk</h3>
+<h3>users@i-scream.org</h3>
 
 <p>State: Open for subscription and posts.<br>
 Purpose: For discussion between users, developers, and anyone else. This is the
@@ -52,7 +52,7 @@ place to ask questions and get support.</p>
 
 <h3>Subscribing</h3>
 
-<p>If you wish to join one of the open lists, send a subscribe e-mail to <a href="mailto:majordomo@i-scream.org.uk">majordomo@i-scream.org.uk</a>
+<p>If you wish to join one of the open lists, send a subscribe e-mail to <a href="mailto:majordomo@i-scream.org">majordomo@i-scream.org</a>
 and your subscription will automatically be processed. If you send
 &quot;help&quot; to the same address, you will be given a list of supported
 operations.</p>
index f458d70049c63d0b19ab0d6f8f5eae3aac99993a..a27e598a1c91885deb6e6932dab596b81fffa691 100644 (file)
@@ -33,7 +33,7 @@
        <center><h3>Who We Are</h3></center>
 
        <p align="left">
-        We were a group of four 3rd year <a href="http://www.cs.ukc.ac.uk">
+        We were a group of four 3rd year <a href="http://www.cs.kent.ac.uk">
         Computer Science</a> students at the University of Kent. As
         part of our final year we had to undertake a project that
         was worth a quarter of our final year mark. We now continue
 
      
        <p align="left">
-        <b>Tim Bishop</b> - tim&#64;i-scream.org.uk
+        <b>Tim Bishop</b> - tim&#64;i-scream.org
         <ul>
          <li><a href="http://www.bishnet.net/tim/">Homepage</a>
-         <li><a href="http://www.cs.ukc.ac.uk/people/staff/tdb/">Work</a>
+         <li><a href="http://www.cs.kent.ac.uk/people/staff/tdb/">Work</a>
          <li><a href="http://www.bishnet.net/tim/cv.shtml">View my C.V.</a>
         </ul>
        </p>
        
        <p align="left">
-        <b>Alex Moore</b> - aj&#64;i-scream.org.uk
+        <b>Alex Moore</b> - aj&#64;i-scream.org
        </p>
        
        <p align="left">
-        <b>Paul Mutton</b> - paul&#64;i-scream.org.uk
+        <b>Paul Mutton</b> - paul&#64;i-scream.org
         <ul>
          <li><a href="http://www.jibble.org/">Homepage</a>
          <li><a href="http://www.jibble.org/cv.php">View my C.V.</a>
-         <li><a href="http://www.cs.ukc.ac.uk/people/rpg/pjm2/">Research</a>
+         <li><a href="http://www.cs.kent.ac.uk/people/rpg/pjm2/">Research</a>
         </ul>
        </p>
 
        <p align="left">
-        <b>Pete Saunders</b> - pajs&#64;i-scream.org.uk
+        <b>Pete Saunders</b> - pajs&#64;i-scream.org
         <ul>
-         <li><a href="http://www.cs.ukc.ac.uk/people/staff/pajs/">Work</a>
+         <li><a href="http://www.cs.kent.ac.uk/people/staff/pajs/">Work</a>
         </ul>
        </p>
        
        <p align="left">
-        Group Mailing List - <a href="mailto:dev@i-scream.org.uk">dev@i-scream.org.uk</a>
+        Group Mailing List - <a href="mailto:dev@i-scream.org">dev@i-scream.org</a>
        </p>
        
        </font>
index f458d70049c63d0b19ab0d6f8f5eae3aac99993a..a27e598a1c91885deb6e6932dab596b81fffa691 100644 (file)
@@ -33,7 +33,7 @@
        <center><h3>Who We Are</h3></center>
 
        <p align="left">
-        We were a group of four 3rd year <a href="http://www.cs.ukc.ac.uk">
+        We were a group of four 3rd year <a href="http://www.cs.kent.ac.uk">
         Computer Science</a> students at the University of Kent. As
         part of our final year we had to undertake a project that
         was worth a quarter of our final year mark. We now continue
 
      
        <p align="left">
-        <b>Tim Bishop</b> - tim&#64;i-scream.org.uk
+        <b>Tim Bishop</b> - tim&#64;i-scream.org
         <ul>
          <li><a href="http://www.bishnet.net/tim/">Homepage</a>
-         <li><a href="http://www.cs.ukc.ac.uk/people/staff/tdb/">Work</a>
+         <li><a href="http://www.cs.kent.ac.uk/people/staff/tdb/">Work</a>
          <li><a href="http://www.bishnet.net/tim/cv.shtml">View my C.V.</a>
         </ul>
        </p>
        
        <p align="left">
-        <b>Alex Moore</b> - aj&#64;i-scream.org.uk
+        <b>Alex Moore</b> - aj&#64;i-scream.org
        </p>
        
        <p align="left">
-        <b>Paul Mutton</b> - paul&#64;i-scream.org.uk
+        <b>Paul Mutton</b> - paul&#64;i-scream.org
         <ul>
          <li><a href="http://www.jibble.org/">Homepage</a>
          <li><a href="http://www.jibble.org/cv.php">View my C.V.</a>
-         <li><a href="http://www.cs.ukc.ac.uk/people/rpg/pjm2/">Research</a>
+         <li><a href="http://www.cs.kent.ac.uk/people/rpg/pjm2/">Research</a>
         </ul>
        </p>
 
        <p align="left">
-        <b>Pete Saunders</b> - pajs&#64;i-scream.org.uk
+        <b>Pete Saunders</b> - pajs&#64;i-scream.org
         <ul>
-         <li><a href="http://www.cs.ukc.ac.uk/people/staff/pajs/">Work</a>
+         <li><a href="http://www.cs.kent.ac.uk/people/staff/pajs/">Work</a>
         </ul>
        </p>
        
        <p align="left">
-        Group Mailing List - <a href="mailto:dev@i-scream.org.uk">dev@i-scream.org.uk</a>
+        Group Mailing List - <a href="mailto:dev@i-scream.org">dev@i-scream.org</a>
        </p>
        
        </font>