Ignore:
Timestamp:
2008-10-24T17:45:51+13:00 (16 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/gui/ExplodeMetadataDatabasePrompt.java

    r13820 r17612  
    274274        String collection_name = CollectionManager.getLoadedCollectionName();
    275275        String collection_directory_path = CollectionManager.getCollectionDirectoryPath(collection_name);
    276         String metadata_file_relative_path = RemoteGreenstoneServer.getPathRelativeToDirectory(metadata_file, collection_directory_path);
     276        String metadata_file_relative_path = Gatherer.remoteGreenstoneServer.getPathRelativeToDirectory(
     277                                                          metadata_file, collection_directory_path);
    277278        command_parts_list.add("-file");
    278279        command_parts_list.add(metadata_file_relative_path);
     
    345346        if (Gatherer.isGsdlRemote) {
    346347            Utility.delete(metadata_file.getParentFile());
    347             RemoteGreenstoneServer.downloadCollectionFile(CollectionManager.getLoadedCollectionName(), metadata_file.getParentFile());
     348            Gatherer.remoteGreenstoneServer.downloadCollectionFile(
     349                             CollectionManager.getLoadedCollectionName(), metadata_file.getParentFile());
    348350        }
    349351
Note: See TracChangeset for help on using the changeset viewer.