Ignore:
Timestamp:
2004-02-17T10:12:11+13:00 (20 years ago)
Author:
mdewsnip
Message:

Additions for the GsdlCollageApplet: a classifier that displays a collage of the images in a collection. By Katrina Edgar (kde2).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/bin/script/exportcol.pl

    r6788 r6813  
    273273    my $win32sdir = &util::filename_cat ($ENV{'GSDLHOME'}, "bin", "windows", "Win32s");
    274274    my $phindjar = &util::filename_cat ($ENV{'GSDLHOME'}, "bin", "java", "Phind.jar");
     275    my $gsdlcollageappletjar = &util::filename_cat ($ENV{'GSDLHOME'}, "bin", "java", "GsdlCollageApplet.jar");
    275276
    276277    if ((!-d $imagesdir) || (!-d $macrosdir) || (!-d $mappingsdir) || (!-e $maincfg) ||
    277278    (!-e $serverexe) || (!-e $gssetupexe) || (!-e $setupexe) || (!-d $net32dir) ||
    278     (!-d $net16dir) || (!-d $netscapedir) || (!-d $win32sdir) || (!-e $phindjar)) {
     279    (!-d $net16dir) || (!-d $netscapedir) || (!-d $win32sdir) || (!-e $phindjar) ||
     280    (!-e $gsdlcollageappletjar)) {
    279281    &gsprintf($out, "{exportcol.fail}");
    280282    &gsprintf($out, "{exportcol.non_exist_files}\n");
     
    291293    print $out "  $win32sdir\n";
    292294    print $out "  $phindjar\n";
     295    print $out "  $gsdlcollageappletjar\n";
    293296    die "\n";
    294297    }
     
    306309    &util::cp_r ($win32sdir, $topdir);
    307310    &util::cp ($phindjar, $binjavadir);
     311    &util::cp ($gsdlcollageappletjar, $binjavadir);
    308312
    309313    # now change the home.dm macro file to a simple version
Note: See TracChangeset for help on using the changeset viewer.