Changeset 2431


Ignore:
Timestamp:
2001-05-16T21:10:28+12:00 (23 years ago)
Author:
sjboddie
Message:

* empty log message *

Location:
trunk/gsdl
Files:
3 edited

Legend:

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

    r2360 r2431  
    6262    print STDOUT "   -plugin text        perl plugin module to use (there may be multiple\n";
    6363    print STDOUT "                       plugin entries)\n";
     64    print STDOUT "   -quiet              Operate quietly\n";
    6465    print STDOUT "  Note that -creator must be specified. You can make changes to all\n";
    6566    print STDOUT "  options later by editing the collect.cfg configuration file for your\n";
     
    103104        $destfile = &util::filename_cat ($coldir, $destfile);
    104105
    105         print STDOUT "doing replacements for $thisfile\n";
     106        print STDOUT "doing replacements for $thisfile\n" unless $quiet;
    106107        open (INFILE, $thisfile) ||
    107108        die "Can't read file $thisfile";
     
    141142              'title/.+/', \$title,
    142143              'about/.+/', \$about,
    143               'plugin/.+', \@plugin
     144              'plugin/.+', \@plugin,
     145              'quiet', \$quiet,
    144146              )) {
    145147    &print_usage();
     
    243245
    244246    # start creating the collection
    245     print STDOUT "Creating the collection $collection\n";
     247    print STDOUT "Creating the collection $collection\n" unless $quiet;
    246248    &traverse_dir ($mdir, $cdir);
    247     print STDOUT "The new collection is in $cdir.\n";
     249    print STDOUT "The new collection is in $cdir.\n" unless $quiet;
    248250}
    249251
  • trunk/gsdl/src/recpt/collectoraction.cpp

    r2426 r2431  
    15381538
    15391539  // set up options
    1540   text_t options = "-creator \"" + args["bc1contactemail"] + "\"";
     1540  text_t options = "-quiet -creator \"" + args["bc1contactemail"] + "\"";
    15411541  options += " -title \"" + args["bc1fullname"] + "\"";
    15421542  options += " -about \"" + carriage_replace (args["bc1aboutdesc"] + "_collectorextra_", 0) + "\"";
Note: See TracChangeset for help on using the changeset viewer.