Ignore:
Timestamp:
2005-07-06T15:18:57+12:00 (19 years ago)
Author:
mdewsnip
Message:

Some comments by Matthew Whyte.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/util/Zipup.java

    r9894 r10214  
    4040import java.io.File;
    4141
    42 /*
    43   Class to zip up a given directory of a given Greenstone collection.
    44 
    45   Arguments:
    46   gsdlhome, the home of greensone, eg "/research/mgw5/gsdl/"
    47   collecion, thename of the collection, eg "mgw5-test"
    48   dir, the name of the directory to zip up, eg "archives"
    49   [accept_expression], a regular expression of files to exclusively include in the archive
    50   [reject_expression], a regular expression of files to exclude from the archive
    51 
    52   @see org.greenstone.gatherer.util.Utility#zipup
     42/**
     43 * Zip up a given directory of a given Greenstone collection.
     44 * The actual zipping code is contained in {@link Utility.zipup(String, String, String, GShell, String, String)}.
     45 * This class basically contains a main method that requires adequate arguments to call the zipup method.
     46 *
     47 * Arguments:
     48 * <br>gsdlhome, the home of greensone, eg "/research/mgw5/gsdl/"
     49 * <br>collecion, the name of the collection, eg "mgw5-test"
     50 * <br>directory, the name of the directory to zip up, eg "archives"
     51 * <br>[accept_expression], a regular expression of files to exclusively include in the archive. Optional.
     52 * <br>[reject_expression], a regular expression of files to exclude from the archive. Optional.
     53 *
     54 * @see Utility.zipup(String, String, String, GShell, String, String)
    5355 */
    5456public class Zipup {
Note: See TracChangeset for help on using the changeset viewer.