Ignore:
Timestamp:
2008-10-24T17:45:51+13:00 (15 years ago)
Author:
ak19
Message:

Turned class RemoteGreenstoneServer.java from an all-static class into a regular OOP class. It is now also split into three files (the other two being ActionQueue.java and RemoteGreenstoneServerAction.java).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gli/trunk/src/org/greenstone/gatherer/greenstone3/ServletConfiguration.java

    r14592 r17612  
    7070
    7171    if (Gatherer.isGsdlRemote){
    72         if (RemoteGreenstoneServer.downloadWebXMLFile().equals("")) {
     72        if (Gatherer.remoteGreenstoneServer.downloadWebXMLFile().equals("")) {
    7373        System.err.println("Error: Could not download web.xml.");
    7474        System.exit(0);
     
    8989    this.sites = new ArrayList();
    9090    if (Gatherer.isGsdlRemote){
    91         String sites_on_server = RemoteGreenstoneServer.getSiteNames();
     91        String sites_on_server = Gatherer.remoteGreenstoneServer.getSiteNames();
    9292        if (sites_on_server.equals("")) {
    9393        // !! Something went wrong : could not get names of the sites
Note: See TracChangeset for help on using the changeset viewer.