Changeset 7678


Ignore:
Timestamp:
2004-06-30T16:24:44+12:00 (20 years ago)
Author:
kjdon
Message:

wget version and path not passed in to constructor anymore

File:
1 edited

Legend:

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

    r7675 r7678  
    136136     * @param exec_path A <strong>String</strong> containing the path or url to the webserver serving the greenstone collections.
    137137     * @param perl_path The path to the PERL executable, as a <strong>String</strong>.
     138     * @param mirroring_enabled If true will override the config.xml fiel setting for mirroring.
     139     * @param site_name The name of the Greenstone 3 site currently in use.
    138140     */
    139     public Configuration(String gsdl_path, String gsdl3_path, String exec_path, String perl_path, boolean mirroring_enabled, String wget_version_str, String wget_path, String site_name) {
     141    public Configuration(String gsdl_path, String gsdl3_path, String exec_path, String perl_path, boolean mirroring_enabled, String site_name) {
    140142    super();
    141143    this.gsdl_path = gsdl_path;
     
    143145    this.exec_path = exec_path;
    144146    this.mirroring_enabled = mirroring_enabled;
    145     this.wget_version_str = wget_version_str;
    146     this.wget_path = wget_path;
    147147    this.site_name = site_name;
    148148
Note: See TracChangeset for help on using the changeset viewer.