Ignore:
Timestamp:
15.06.2009 20:22:46 (3 years ago)
Author:
Gubaer
Message:

fixed: bug in OsmApi.getOsmApi()
cleanup: exception handling in interfacing with OSM API
new: new action for updating individual elements with the their current state on the server (including new menu item in the file menu)
new: improved user feedback in case of conflicts
new: handles 410 Gone conflicts when uploading a changeset
new: undoable command for "purging" a primitive from the current dataset (necessary if the primitive is already deleted on the server and the user wants to remove it from its local dataset)
new: undoable command for "undeleting" an already deleted primitive on the server (kind of "cloning")
new: after a full upload, checks whether there are primitives in the local dataset which might be deleted on the server.
new: data structures for history data
new: history download support in io package

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MainMenu.java

    r1639 r1670  
    6262import org.openstreetmap.josm.actions.UnselectAllAction; 
    6363import org.openstreetmap.josm.actions.UpdateDataAction; 
     64import org.openstreetmap.josm.actions.UpdateSelectionAction; 
    6465import org.openstreetmap.josm.actions.UploadAction; 
    6566import org.openstreetmap.josm.actions.ZoomInAction; 
     
    9495    public final DownloadAction download = new DownloadAction(); 
    9596    public final JosmAction update = new UpdateDataAction(); 
     97    public final JosmAction updateSelection = new UpdateSelectionAction(); 
    9698    public final JosmAction upload = new UploadAction(); 
    9799    public final JosmAction exit = new ExitAction(); 
     
    194196        add(fileMenu, upload); 
    195197        add(fileMenu, update); 
     198        add(fileMenu, updateSelection); 
    196199        fileMenu.addSeparator(); 
    197200        add(fileMenu, exit); 
Note: See TracChangeset for help on using the changeset viewer.