Changeset 5293


Ignore:
Timestamp:
2003-08-27T14:59:05+12:00 (21 years ago)
Author:
mdewsnip
Message:

Added some code to ignore the progress messages output by RecPlug with the "show_progress" option.

File:
1 edited

Legend:

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

    r5250 r5293  
    336336     */
    337337    public synchronized void message(GShellEvent event) {
     338    // Ignore the messages from RecPlug with 'show_progress' set (used for progress bars)
     339    if (event.getMessage().startsWith("import.pl> RecPlug - ")) {
     340        return;
     341    }
     342
    338343    document.appendLine(event.getMessage());
    339344    }
Note: See TracChangeset for help on using the changeset viewer.