Ignore:
Timestamp:
2009-02-24T13:48:08+13:00 (15 years ago)
Author:
kjdon
Message:

GLI three modes change: systems mode is no more.

Location:
gli/trunk/src/org/greenstone/gatherer/shell
Files:
4 edited

Legend:

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

    r12294 r18589  
    122122    private int expected_stages = 0;
    123123
    124     private int threshold = Configuration.SYSTEMS_MODE;
     124    private int threshold = Configuration.LIBRARIAN_MODE;
    125125    /** The current state we are in. The state will change depending on the next flag recieved. */
    126126    private int state = BASE;
  • gli/trunk/src/org/greenstone/gatherer/shell/GImportProgressMonitor.java

    r16855 r18589  
    6767    private int num_docs;
    6868
    69     private int threshold = Configuration.SYSTEMS_MODE;
     69    private int threshold = Configuration.LIBRARIAN_MODE;
    7070    /** The progress bar this monitor updates. */
    7171    private GProgressBar progress_bar;
  • gli/trunk/src/org/greenstone/gatherer/shell/GScheduleProgressMonitor.java

    r16127 r18589  
    7979    private int expected_stages = 0;
    8080
    81     private int threshold = Configuration.SYSTEMS_MODE;
     81    private int threshold = Configuration.LIBRARIAN_MODE;
    8282    /** The current state we are in. The state will change depending on the next flag recieved. */
    8383    private int state = BASE;
  • gli/trunk/src/org/greenstone/gatherer/shell/GShell.java

    r18396 r18589  
    557557   
    558558    // If we were cancelled, and we are lower details modes, fire off one last message.
    559     if(status == CANCELLED && Configuration.getMode() <= Configuration.SYSTEMS_MODE) {
     559    if(status == CANCELLED && Configuration.getMode() <= Configuration.LIBRARIAN_MODE) {
    560560        GShellEvent current_event = new GShellEvent(this, 0, type, Dictionary.get("GShell.Build.BuildCancelled"), status);
    561561        Object[] concerned = listeners.getListenerList();
Note: See TracChangeset for help on using the changeset viewer.