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).

Location:
gli/trunk/src/org/greenstone/gatherer/cdm
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • gli/trunk/src/org/greenstone/gatherer/cdm/CollectionConfiguration.java

    r17031 r17612  
    37073707        // If we're using a remote Greenstone server, upload the new 'collectionConfig.xml' file
    37083708        if (Gatherer.isGsdlRemote) {
    3709             RemoteGreenstoneServer.uploadCollectionFile (collection_name, collect_cfg_file);
     3709            Gatherer.remoteGreenstoneServer.uploadCollectionFile (collection_name, collect_cfg_file);
    37103710        }
    37113711       
     
    37993799            // If we're using a remote Greenstone server, upload the new collect.cfg file
    38003800            if (Gatherer.isGsdlRemote) {
    3801                 RemoteGreenstoneServer.uploadCollectionFile (collection_name, collect_cfg_file);
     3801                Gatherer.remoteGreenstoneServer.uploadCollectionFile (collection_name, collect_cfg_file);
    38023802            }
    38033803        }
  • gli/trunk/src/org/greenstone/gatherer/cdm/GeneralManager.java

    r17211 r17612  
    344344                // If we're using a remote Greenstone server, upload the image
    345345                if (Gatherer.isGsdlRemote) {
    346                 RemoteGreenstoneServer.uploadCollectionFile(CollectionManager.getLoadedCollectionName(), collection_image_file);
     346                Gatherer.remoteGreenstoneServer.uploadCollectionFile(
     347                                   CollectionManager.getLoadedCollectionName(), collection_image_file);
    347348                }
    348349            }
  • gli/trunk/src/org/greenstone/gatherer/cdm/MacrosManager.java

    r13591 r17612  
    217217        // Users need to wait until the upload has finished before pressing Preview Collection!
    218218        if (Gatherer.isGsdlRemote) {
    219             RemoteGreenstoneServer.uploadCollectionFile(CollectionManager.getLoadedCollectionName(), extra_dm_file);
     219            Gatherer.remoteGreenstoneServer.uploadCollectionFile(CollectionManager.getLoadedCollectionName(), extra_dm_file);
    220220        }
    221221        }
Note: See TracChangeset for help on using the changeset viewer.