Ignore:
Timestamp:
2009-01-12T11:40:15+13:00 (15 years ago)
Author:
kjdon
Message:

updated the rtl-gli branch with files from trunk. Result of a merge 14807:18318, and fixed some conflicts. I think this is the last commit following merging the files. Haven't tried to compile yet... here goes...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gli/branches/rtl-gli/src/org/greenstone/gatherer/gui/NewCollectionDetailsPrompt.java

    r18297 r18364  
    248248    content_pane.add(bottom_pane, BorderLayout.SOUTH);
    249249    // Final dialog setup & positioning.
     250    getRootPane().setDefaultButton(create_button);
    250251    Dimension screen_size = Configuration.screen_size;
    251252    setLocation((screen_size.width - SIZE.width) / 2, (screen_size.height - SIZE.height) / 2);
     
    288289    // Remote collections that aren't shared have the user's username prefixed to the collection name
    289290    if (Gatherer.isGsdlRemote && personal_collection_button.isSelected()) {
    290         name_buffer = new StringBuffer(RemoteGreenstoneServer.getUsername() + "-" + name_buffer.toString());
     291        name_buffer = new StringBuffer(Gatherer.remoteGreenstoneServer.getUsername() + "-" + name_buffer.toString());
    291292    }
    292293
Note: See TracChangeset for help on using the changeset viewer.