Changeset 2260 for trunk/java-client


Ignore:
Timestamp:
2001-04-03T01:12:38+12:00 (23 years ago)
Author:
say1
Message:

added lots of Changelog stuff

Location:
trunk/java-client
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/java-client/Makefile

    r2259 r2260  
    3737    javadoc -private -version -author -use -d docs -header "Documentation for the <a href=\"http://www.corba.org/\">CORBA</a> interface to the <a href=\"http://www.nzdl.org/\">NZDL</a>'s Greenstone Digital Library software." -footer "This software is distributed under the <a href=\"http://www.gnu.org/copyleft/gpl.html\">GPL</a>" -windowtitle  "Greenstone Digital Library Software from the NZDL" -link "http://www.scms.waikato.ac.nz/help/reference/jdk1.2/docs/api/" gnu.getopt org.nzdl.gsdl org.nzdl.gsdl.service org.nzdl.gsdl.util org.nzdl.gsdl.corba.gsdlInterface org.nzdl.gsdl.SimpleGraphicalClient -overview overview.html
    3838    cp org/nzdl/gsdl/service/nzdl-service-package.png docs/org/nzdl/gsdl/service/
     39    /home/say1/java/cvs2cl.pl
    3940
    4041clean :
  • trunk/java-client/org/nzdl/gsdl/SimpleGraphicalClient/CSFrame.java

    r2225 r2260  
    8080
    8181    editMenu.add( prefAction = new EditAction("Preferences", PREF_ID, this));
     82    editMenu.add( prefAction = new EditAction("View Change Log", LOG_ID, this));
    8283
    8384   
     
    173174         switch (menuItemID) {
    174175                case PREF_ID:
    175                      PreferencesDialog prefDialog = new PreferencesDialog(frame, "Preferences", false); // make this the instance of CSFrame
     176                     PreferencesDialog prefDialog = new PreferencesDialog(frame, "Preferences", false);
     177                     break;
     178                case LOG_ID:
     179                     ChangeLogDialog logDialog = new ChangeLogDialog(frame, "ChangeLog", false);
    176180                     break;
    177181                default:
  • trunk/java-client/org/nzdl/gsdl/SimpleGraphicalClient/Constants.java

    r2256 r2260  
    4848
    4949  final static int PREF_ID              = 201;
     50  final static int LOG_ID               = 202;
    5051
    5152
  • trunk/java-client/org/nzdl/gsdl/SimpleGraphicalClient/Makefile

    r2196 r2260  
    1 CLASSES = PreferencesDialog.class\
     1CLASSES = ChangeLogDialog.class\
     2PreferencesDialog.class\
    23  CSFrame.class \
    34  CSModel.class\
Note: See TracChangeset for help on using the changeset viewer.