Ignore:
Timestamp:
2023-01-28T13:27:39+13:00 (15 months ago)
Author:
kjdon
Message:

added a -webswing argument to Gatherer, so its knows if its webswing, in the same way it knows if its using remote gs

File:
1 edited

Legend:

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

    r36229 r37188  
    6969  static final public String CONFIG_XML_3 = "config3.xml";
    7070  static final public String CONFIG_REMOTE_XML = "configRemote.xml";
    71 
     71    static final public String CONFIG_WEBSWING_XML = "configWebswing.xml";
    7272    static final public String TEMPLATE_CONFIG_PREFIX = "xml/";
    7373     static final public String FEDORA_CONFIG_PREFIX = "fedora-";
     
    641641    String gli_title = getString("GLI.Title", GENERAL_SETTING);
    642642    String title = (gli_title=="") ? Gatherer.PROGRAM_NAME : gli_title;
    643 
     643    if (Gatherer.isWebswing) {
     644        title += " (webswing)";
     645    }
    644646    return title;
    645647    }
Note: See TracChangeset for help on using the changeset viewer.