Changeset 8062 for trunk/gli


Ignore:
Timestamp:
2004-08-26T11:51:09+12:00 (20 years ago)
Author:
kjdon
Message:

changed the library url warnign message for gs3

Location:
trunk/gli
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/classes/dictionary.properties

    r7694 r8062  
    866866MissingEXEC.Message:Warning! You will not be able to view your new collections within the Librarian Interface unless you specify the path to the locally running Greenstone Library Webserver. You can enter this now in the text field below, or later by going to Preferences and choosing the Connection tab. Remember that a valid url must start with the protocol "http://", and will probably end with the executable name ("library" for Greenstone local library server, "gsdl" for other web servers).
    867867MissingEXEC.Title:Missing Greenstone Library Address
     868#***** Missing EXEC_GS3 *****
     869MissingEXEC_GS3.Message:Warning! You will not be able to view your new collections within the Librarian Interface unless you specify the path to the Greenstone context in the locally running Tomcat Webserver. You can enter this now in the text field below, or later by going to Preferences and choosing the Connection tab. Remember that a valid url must start with the protocol "http://". The default address is http://localhost:8080/gsdl3.
     870MissingEXEC_GS3.Title:Missing Greenstone Library Address
    868871#***** Missing GSDL *****
    869872MissingGSDL.Message:Warning! You will not be able to access all of the Librarian Interface's features without a local copy of Greenstone Digital Library also installed. If you believe you are recieving this message in error please check your installation, and the paths specified in Librarian Interface batch or script file.
  • trunk/gli/src/org/greenstone/gatherer/Gatherer.java

    r7991 r8062  
    574574     */
    575575    static public void missingEXEC() {
    576     WarningDialog dialog = new WarningDialog("warning.MissingEXEC", "general.exec_address");
     576    String message_name;
     577    if (GS3) {
     578        message_name = "warning.MissingEXEC_GS3";
     579    } else {
     580        message_name = "warning.MissingEXEC";
     581    }
     582    WarningDialog dialog = new WarningDialog(message_name, "general.exec_address" );
    577583    dialog.setValueField(new URLField(Gatherer.config.getColor("coloring.editable_foreground", false), Gatherer.config.getColor("coloring.editable_background", false), Gatherer.config.getColor("coloring.error_foreground", false), Gatherer.config.getColor("coloring.error_background", false)));
    578584    dialog.display();
Note: See TracChangeset for help on using the changeset viewer.