Changeset 2431
- Timestamp:
- 2001-05-16T21:10:28+12:00 (23 years ago)
- Location:
- trunk/gsdl
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gsdl/bin/script/mkcol.pl
r2360 r2431 62 62 print STDOUT " -plugin text perl plugin module to use (there may be multiple\n"; 63 63 print STDOUT " plugin entries)\n"; 64 print STDOUT " -quiet Operate quietly\n"; 64 65 print STDOUT " Note that -creator must be specified. You can make changes to all\n"; 65 66 print STDOUT " options later by editing the collect.cfg configuration file for your\n"; … … 103 104 $destfile = &util::filename_cat ($coldir, $destfile); 104 105 105 print STDOUT "doing replacements for $thisfile\n" ;106 print STDOUT "doing replacements for $thisfile\n" unless $quiet; 106 107 open (INFILE, $thisfile) || 107 108 die "Can't read file $thisfile"; … … 141 142 'title/.+/', \$title, 142 143 'about/.+/', \$about, 143 'plugin/.+', \@plugin 144 'plugin/.+', \@plugin, 145 'quiet', \$quiet, 144 146 )) { 145 147 &print_usage(); … … 243 245 244 246 # start creating the collection 245 print STDOUT "Creating the collection $collection\n" ;247 print STDOUT "Creating the collection $collection\n" unless $quiet; 246 248 &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; 248 250 } 249 251 -
trunk/gsdl/src/recpt/collectoraction.cpp
r2426 r2431 1538 1538 1539 1539 // set up options 1540 text_t options = "- creator \"" + args["bc1contactemail"] + "\"";1540 text_t options = "-quiet -creator \"" + args["bc1contactemail"] + "\""; 1541 1541 options += " -title \"" + args["bc1fullname"] + "\""; 1542 1542 options += " -about \"" + carriage_replace (args["bc1aboutdesc"] + "_collectorextra_", 0) + "\"";
Note:
See TracChangeset
for help on using the changeset viewer.