Ignore:
Timestamp:
2001-05-04T11:15:58+12:00 (23 years ago)
Author:
sjboddie
Message:

Altered the help text a little for mkcol.pl, import.pl, buildcol.pl, and
build so that they now suggest using the "more" pager if the help text
scrolls off the screen (brought about by usability studies under DOS).
Note that this means some debug info that was once printed to STDERR is
now being printed to STDOUT.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/util.pm

    r2193 r2359  
    566566        $collection = $ENV{'GSDLCOLLECTION'};
    567567    } else {
    568         print STDERR "No collection specified\n";
     568        print STDOUT "No collection specified\n";
    569569        return "";
    570570    }
     
    572572   
    573573    if ($collection eq "modelcol") {
    574     print STDERR "You can't use modelcol.\n";
     574    print STDOUT "You can't use modelcol.\n";
    575575    return "";
    576576    }
     
    583583    # make sure this collection exists
    584584    if (!-e $ENV{'GSDLCOLLECTDIR'}) {
    585     print STDERR "Invalid collection ($collection).\n";
     585    print STDOUT "Invalid collection ($collection).\n";
    586586    return "";
    587587    }
Note: See TracChangeset for help on using the changeset viewer.