Changeset 16409 in osm for applications/editors
- Timestamp:
- 2009-07-09T14:36:03+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build.xml
r16382 r16409 35 35 <ant antfile="build.xml" target="dist" dir="terracer"/> 36 36 <ant antfile="build.xml" target="dist" dir="usertools"/> 37 <ant antfile="build.xml" target="dist" dir="utilsplugin"/>38 <ant antfile="build.xml" target="dist" dir="validator"/>37 <!-- <ant antfile="build.xml" target="dist" dir="utilsplugin"/> 38 --> <ant antfile="build.xml" target="dist" dir="validator"/> 39 39 <ant antfile="build.xml" target="dist" dir="waydownloader"/> 40 40 <ant antfile="build.xml" target="dist" dir="wmsplugin"/> -
applications/editors/josm/plugins/routing/build.xml
r16294 r16409 44 44 <attribute name="Plugin-Description" value="Provides routing capabilities."/> 45 45 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Routing"/> 46 <attribute name="Plugin-Mainversion" value="17 25"/>46 <attribute name="Plugin-Mainversion" value="1755"/> 47 47 <attribute name="Plugin-Stage" value="50"/> 48 48 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> -
applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/RoutingPlugin.java
r15707 r16409 160 160 161 161 public void addLayer() { 162 OsmDataLayer osmLayer = Main.ma in.editLayer();162 OsmDataLayer osmLayer = Main.map.mapView.getEditLayer(); 163 163 RoutingLayer layer = new RoutingLayer(tr("Routing") + " [" + osmLayer.name + "]", osmLayer); 164 164 layers.add(layer); -
applications/editors/josm/plugins/surveyor/build.xml
r16290 r16409 37 37 <attribute name="Plugin-Description" value="Allow adding markers/nodes on current gps positions."/> 38 38 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Surveyor"/> 39 <attribute name="Plugin-Mainversion" value="17 22"/>39 <attribute name="Plugin-Mainversion" value="1755"/> 40 40 <attribute name="Plugin-Requires" value="livegps"/> 41 41 <attribute name="Plugin-Stage" value="60"/> -
applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/AutoSaveEditLayerTimerTask.java
r14406 r16409 39 39 @Override 40 40 public void run() { 41 if(Main.map == null || Main.map.mapView == null || Main.map.mapView. editLayer== null) {41 if(Main.map == null || Main.map.mapView == null || Main.map.mapView.getEditLayer() == null) { 42 42 return; 43 43 } 44 OsmDataLayer layer = Main.map.mapView. editLayer;44 OsmDataLayer layer = Main.map.mapView.getEditLayer(); 45 45 try { 46 46 DataSet dataset = layer.data; -
applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/action/SetNodeAction.java
r13497 r16409 70 70 node.put("created_by", "JOSM-surveyor-plugin"); 71 71 synchronized(LiveGpsLock.class) { 72 Main.ma in.editLayer().data.nodes.add(node);72 Main.map.mapView.getEditLayer().data.nodes.add(node); 73 73 Main.ds.setSelected(node); 74 74 } -
applications/editors/josm/plugins/validator/build.xml
r16294 r16409 26 26 <attribute name="Plugin-Description" value="An OSM data validator. It checks for problems in data, and provides fixes for the common ones. Spellcheck integrated for tag names."/> 27 27 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Validator"/> 28 <attribute name="Plugin-Mainversion" value="17 25"/>28 <attribute name="Plugin-Mainversion" value="1755"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/ErrorLayer.java
r13497 r16409 132 132 */ 133 133 public void layerRemoved(Layer oldLayer) { 134 if (oldLayer == Main.map.mapView. editLayer) {134 if (oldLayer == Main.map.mapView.getEditLayer()) { 135 135 Main.map.mapView.removeLayer(this); 136 136 } else if (oldLayer == this) {
Note:
See TracChangeset
for help on using the changeset viewer.