Ignore:
Timestamp:
2010-05-06T13:07:31+12:00 (14 years ago)
Author:
ak19
Message:

Modified BaseProperty so that the "start" commands for different operating systems is stored statically which is helpful for BrowserLauncher

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/server/BaseProperty.java

    r18868 r22054  
    1212    public final String WEB_PORT;
    1313
    14     public final String WIN_9X_OPEN_COMMAND = "command.com /c start %1";
    15     public final String WIN_OPEN_COMMAND = "cmd.exe /c start \"\" %1";
    16     public final String MAC_OPEN_COMMAND = "open %1";
     14    public static final String WIN_9X_OPEN_COMMAND = "command.com /c start %1";
     15    public static final String WIN_OPEN_COMMAND = "cmd.exe /c start \"\" %1";
     16    public static final String MAC_OPEN_COMMAND = "open %1";
    1717
    1818    public final String BROWSER_PATH = "browser.path";
Note: See TracChangeset for help on using the changeset viewer.