Changeset 2507


Ignore:
Timestamp:
2001-06-07T17:13:11+12:00 (23 years ago)
Author:
sjboddie
Message:

Tidied up the phind client a little more. It now belongs to the
org.nzdl.gsdl.Phind package and is compiled as a jar file. The jar file
itself is now included in the CVS tree in a new bin/java directory.

Location:
trunk/gsdl
Files:
19 added
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/macros/document.dm

    r2487 r2507  
    7474
    7575_phindapplet_ {
    76 <APPLET CODEBASE="_httpprefix_/src/phind/client" CODE="Phind.class" WIDTH=500 HEIGHT=400>
     76<APPLET CODEBASE="_httpprefix_/bin/java" CODE="org.nzdl.gsdl.Phind.Phind.class" ARCHIVE="Phind.jar" WIDTH=500 HEIGHT=400>
    7777  <PARAM NAME=library      VALUE="_gwcgi_">
    7878  <PARAM NAME=phindcgi     VALUE="_gwcgi_?a=phind">
  • trunk/gsdl/perllib/classify/phind.pm

    r2500 r2507  
    136136    }
    137137
    138     # Ensure the Phind Java applet is in place
    139     $src =  &util::filename_cat($ENV{'GSDLHOME'}, "src", "phind", "client");
    140     $file1 = &util::filename_cat($src, "Phind.class");
    141 
    142     if (!(-e $file1)) {
    143     print STDERR "The phind Java classes are not compiled.  ";
    144     print STDERR "To compile them, change to the directory\n";
    145     print STDERR "   $src\n";
    146     print STDERR "and use your Java compiler to compile Phind.java.\n";
    147     print STDERR "(if you have Java 1.2 installed, type \"javac Phind.java\")\n\n";
    148     exit(1);
    149     }
    150 
    151138    # Parse classifier arguments
    152139    my $builddir = "";
Note: See TracChangeset for help on using the changeset viewer.