Changeset 18503 in osm for applications/editors/josm
- Timestamp:
- 2009-11-07T17:23:17+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 1 added
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/addrinterpolation
-
Property svn:ignore
set to
build
-
Property svn:ignore
set to
-
applications/editors/josm/plugins/addrinterpolation/build.xml
r18413 r18503 91 91 <attribute name="Plugin-Description" value="Group common Address Interpolation inputs in a single dialog,"/> 92 92 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/AddrInterpolation"/> 93 <attribute name="Plugin-Mainversion" value="2 381"/>93 <attribute name="Plugin-Mainversion" value="2401"/> 94 94 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 95 95 </manifest> -
applications/editors/josm/plugins/czechaddress/build.xml
r18413 r18503 52 52 <attribute name="Plugin-Description" value="Creating and handling address nodes and buildings within Czech Republic."/> 53 53 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/Cz:JOSM/Plugins/CzechAddress"/> 54 <attribute name="Plugin-Mainversion" value="2 381"/>54 <attribute name="Plugin-Mainversion" value="2401"/> 55 55 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 56 56 </manifest> -
applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/intelligence/Capitalizator.java
r18409 r18503 1 1 package org.openstreetmap.josm.plugins.czechaddress.intelligence; 2 2 3 import java.util.Collection; 3 4 import java.util.HashMap; 4 5 import java.util.List; … … 12 13 import java.util.logging.Level; 13 14 import java.util.logging.Logger; 15 14 16 import org.openstreetmap.josm.data.osm.OsmPrimitive; 15 17 import org.openstreetmap.josm.plugins.czechaddress.StringUtils; … … 27 29 Logger logger = Logger.getLogger(Capitalizator.class.getName()); 28 30 29 public Capitalizator( List<OsmPrimitive> prims, List<Street> elems) {31 public Capitalizator(Collection<OsmPrimitive> prims, List<Street> elems) { 30 32 31 33 int expResults = elems.size()/2; … … 58 60 59 61 private AddressElement elem; 60 private List<OsmPrimitive> prims;62 private Collection<OsmPrimitive> prims; 61 63 62 public StreetMatcher(AddressElement elem, List<OsmPrimitive> prims) {64 public StreetMatcher(AddressElement elem, Collection<OsmPrimitive> prims) { 63 65 this.elem = elem; 64 66 this.prims = prims; -
applications/editors/josm/plugins/openstreetbugs/build.xml
r18482 r18503 26 26 <attribute name="Plugin-Description" value="Imports issues from OpenStreetBugs"/> 27 27 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/OpenStreetBugs"/> 28 <attribute name="Plugin-Mainversion" value="2 396"/>28 <attribute name="Plugin-Mainversion" value="2401"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/OsbPlugin.java
r18482 r18503 72 72 uploadHook = new OsbUploadHook(); 73 73 dialog = new OsbDialog(this); 74 OsbLayer.listeners.add(dialog);75 OsbLayer.listeners.add(this);74 Layer.listeners.add(dialog); 75 Layer.listeners.add(this); 76 76 } 77 77 … … 241 241 this.dataSet = dataSet; 242 242 } 243 243 244 244 public OsbDialog getDialog() { 245 245 return dialog; -
applications/editors/josm/plugins/remotecontrol/build.xml
r18417 r18503 26 26 <attribute name="Plugin-Description" value="Let other applications send commands to JOSM."/> 27 27 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/RemoteControl"/> 28 <attribute name="Plugin-Mainversion" value="2 381"/>28 <attribute name="Plugin-Mainversion" value="2401"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/surveyor/build.xml
r18490 r18503 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="2 396"/>39 <attribute name="Plugin-Mainversion" value="2401"/> 40 40 <attribute name="Plugin-Requires" value="livegps"/> 41 41 <attribute name="Plugin-Stage" value="60"/> -
applications/editors/josm/plugins/utilsplugin/build.xml
r18415 r18503 25 25 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 26 26 <attribute name="Plugin-Description" value="Several utilities that make your life easier: e.g. simplify way, join areas, jump to position."/> 27 <attribute name="Plugin-Mainversion" value="2 381"/>27 <attribute name="Plugin-Mainversion" value="2401"/> 28 28 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 29 29 </manifest> -
applications/editors/josm/plugins/waydownloader
- Property svn:ignore
-
old new 1 1 build 2 3 dist
-
- Property svn:ignore
-
applications/editors/josm/plugins/waydownloader/build.xml
r18417 r18503 91 91 <attribute name="Plugin-Description" value="Easy downloading along a long set of interconnected ways"/> 92 92 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/WayDownloaderPlugin"/> 93 <attribute name="Plugin-Mainversion" value="2 381"/>93 <attribute name="Plugin-Mainversion" value="2401"/> 94 94 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 95 95 </manifest>
Note:
See TracChangeset
for help on using the changeset viewer.