Changeset 18503 in osm for applications/editors/josm


Ignore:
Timestamp:
2009-11-07T17:23:17+01:00 (15 years ago)
Author:
jttt
Message:

Rebuild necessary after changes in selection handling in Dataset

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
  • applications/editors/josm/plugins/addrinterpolation/build.xml

    r18413 r18503  
    9191                <attribute name="Plugin-Description" value="Group common Address Interpolation inputs in a single dialog,"/>
    9292                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/AddrInterpolation"/>
    93                 <attribute name="Plugin-Mainversion" value="2381"/>
     93                <attribute name="Plugin-Mainversion" value="2401"/>
    9494                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    9595            </manifest>
  • applications/editors/josm/plugins/czechaddress/build.xml

    r18413 r18503  
    5252            <attribute name="Plugin-Description" value="Creating and handling address nodes and buildings within Czech Republic."/>
    5353            <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/Cz:JOSM/Plugins/CzechAddress"/>
    54             <attribute name="Plugin-Mainversion" value="2381"/>
     54            <attribute name="Plugin-Mainversion" value="2401"/>
    5555            <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    5656        </manifest>
  • applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/intelligence/Capitalizator.java

    r18409 r18503  
    11package org.openstreetmap.josm.plugins.czechaddress.intelligence;
    22
     3import java.util.Collection;
    34import java.util.HashMap;
    45import java.util.List;
     
    1213import java.util.logging.Level;
    1314import java.util.logging.Logger;
     15
    1416import org.openstreetmap.josm.data.osm.OsmPrimitive;
    1517import org.openstreetmap.josm.plugins.czechaddress.StringUtils;
     
    2729    Logger logger =  Logger.getLogger(Capitalizator.class.getName());
    2830
    29     public Capitalizator(List<OsmPrimitive> prims, List<Street> elems) {
     31    public Capitalizator(Collection<OsmPrimitive> prims, List<Street> elems) {
    3032
    3133        int expResults = elems.size()/2;
     
    5860
    5961        private AddressElement elem;
    60         private List<OsmPrimitive> prims;
     62        private Collection<OsmPrimitive> prims;
    6163
    62         public StreetMatcher(AddressElement elem, List<OsmPrimitive> prims) {
     64        public StreetMatcher(AddressElement elem, Collection<OsmPrimitive> prims) {
    6365            this.elem = elem;
    6466            this.prims = prims;
  • applications/editors/josm/plugins/openstreetbugs/build.xml

    r18482 r18503  
    2626                <attribute name="Plugin-Description" value="Imports issues from OpenStreetBugs"/>
    2727                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/OpenStreetBugs"/>
    28                 <attribute name="Plugin-Mainversion" value="2396"/>
     28                <attribute name="Plugin-Mainversion" value="2401"/>
    2929                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    3030            </manifest>
  • applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/OsbPlugin.java

    r18482 r18503  
    7272        uploadHook = new OsbUploadHook();
    7373        dialog = new OsbDialog(this);
    74         OsbLayer.listeners.add(dialog);
    75         OsbLayer.listeners.add(this);
     74        Layer.listeners.add(dialog);
     75        Layer.listeners.add(this);
    7676    }
    7777
     
    241241        this.dataSet = dataSet;
    242242    }
    243    
     243
    244244    public OsbDialog getDialog() {
    245245        return dialog;
  • applications/editors/josm/plugins/remotecontrol/build.xml

    r18417 r18503  
    2626                <attribute name="Plugin-Description" value="Let other applications send commands to JOSM."/>
    2727                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/RemoteControl"/>
    28                 <attribute name="Plugin-Mainversion" value="2381"/>
     28                <attribute name="Plugin-Mainversion" value="2401"/>
    2929                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    3030            </manifest>
  • applications/editors/josm/plugins/surveyor/build.xml

    r18490 r18503  
    3737                <attribute name="Plugin-Description" value="Allow adding markers/nodes on current gps positions."/>
    3838                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Surveyor"/>
    39                 <attribute name="Plugin-Mainversion" value="2396"/>
     39                <attribute name="Plugin-Mainversion" value="2401"/>
    4040                <attribute name="Plugin-Requires" value="livegps"/>
    4141                <attribute name="Plugin-Stage" value="60"/>
  • applications/editors/josm/plugins/utilsplugin/build.xml

    r18415 r18503  
    2525                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    2626                <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="2381"/>
     27                <attribute name="Plugin-Mainversion" value="2401"/>
    2828                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    2929            </manifest>
  • applications/editors/josm/plugins/waydownloader

    • Property svn:ignore
      •  

        old new  
        11build
         2
         3dist
  • applications/editors/josm/plugins/waydownloader/build.xml

    r18417 r18503  
    9191                <attribute name="Plugin-Description" value="Easy downloading along a long set of interconnected ways"/>
    9292                <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/WayDownloaderPlugin"/>
    93                 <attribute name="Plugin-Mainversion" value="2381"/>
     93                <attribute name="Plugin-Mainversion" value="2401"/>
    9494                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    9595            </manifest>
Note: See TracChangeset for help on using the changeset viewer.