Ignore:
Timestamp:
2009-11-01T13:19:59+01:00 (15 years ago)
Author:
stoecker
Message:

updated some stuff to current JOSM

Location:
applications/editors/josm/plugins/wmsplugin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/wmsplugin/build.xml

    r17817 r18404  
    1818** To build against the core in ../../core, create a correct manifest and deploy to
    1919** SVN, run
    20 **    - set the property commit.message 
     20**    - set the property commit.message
    2121**    - set the property josm.reference.release to lowest JOSM release number this
    2222**      plugin build is compatible with
     
    3232    <property name="ant.build.javac.target" value="1.5"/>
    3333        <property name="commit.message"         value="fixing JOSM issue #3186" />
    34         <property name="josm.reference.release" value="2196" />
    35        
     34        <property name="josm.reference.release" value="2323" />
     35
    3636    <target name="init">
    3737        <mkdir dir="${plugin.build.dir}"/>
     
    8585        <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
    8686    </target>
    87        
     87
    8888        <target name="core-info">
    8989                <exec append="false" output="core.info.xml" executable="svn" failifexecutionfails="false">
     
    9898                </target>
    9999
    100                
     100
    101101                <target name="commit-current">
    102102                        <echo>Commiting the plugin source ...</echo>
     
    106106                                    <arg value="-m &quot;${commit.message}&quot;"/>
    107107                                    <arg value="."/>
    108                     </exec>         
     108                    </exec>
    109109                </target>
    110110
    111                
     111
    112112                <target name="update-current">
    113113                        <echo>Updating basedir ...</echo>
     
    116116                                    <arg value="up"/>
    117117                                    <arg value="."/>
    118                     </exec>         
     118                    </exec>
    119119                        <echo>Updating ${plugin.jar} ...</echo>
    120120                    <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false">
     
    122122                                    <arg value="up"/>
    123123                                    <arg value="${plugin.jar}"/>
    124                     </exec>         
     124                    </exec>
    125125                </target>
    126                
     126
    127127                <target name="commit-dist">
    128128                                <echo>Commiting ${plugin.jar} ...</echo>
     
    132132                                                <arg value="-m &quot;${commit.message}&quot;"/>
    133133                                            <arg value="${plugin.jar}"/>
    134                             </exec>         
     134                            </exec>
    135135                </target>
    136                
     136
    137137                <target name="deploy" depends="core-info,commit-current,update-current,clean,dist,commit-dist">
    138138                </target>
  • applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSPlugin.java

    r17556 r18404  
    11package wmsplugin;
    22
    3 import static org.openstreetmap.josm.tools.I18n.marktr;
     3import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
    44import static org.openstreetmap.josm.tools.I18n.tr;
    55
     
    5151    static int overlapEast = 14;
    5252    static int overlapNorth = 4;
    53    
     53
    5454    // remember state of menu item to restore on changed preferences
    5555    static private boolean menuEnabled = false;
    56    
     56
    5757    protected void initExporterAndImporter() {
    5858        ExtensionFileFilter.exporters.add(new WMSLayerExporter());
     
    9494        TreeSet<String> keys = new TreeSet<String>(prefs.keySet());
    9595
    96         // Here we load the settings for "overlap" checkbox and spinboxes. 
    97          
    98         try { 
    99             doOverlap = Boolean.valueOf(prefs.get("wmsplugin.url.overlap"));             
    100         } catch (Exception e) {} // If sth fails, we drop to default settings. 
    101  
    102         try { 
    103             overlapEast = Integer.valueOf(prefs.get("wmsplugin.url.overlapEast"));             
    104         } catch (Exception e) {} // If sth fails, we drop to default settings. 
    105  
    106         try { 
    107             overlapNorth = Integer.valueOf(prefs.get("wmsplugin.url.overlapNorth"));             
    108         } catch (Exception e) {} // If sth fails, we drop to default settings. 
     96        // Here we load the settings for "overlap" checkbox and spinboxes.
     97
     98        try {
     99            doOverlap = Boolean.valueOf(prefs.get("wmsplugin.url.overlap"));
     100        } catch (Exception e) {} // If sth fails, we drop to default settings.
     101
     102        try {
     103            overlapEast = Integer.valueOf(prefs.get("wmsplugin.url.overlapEast"));
     104        } catch (Exception e) {} // If sth fails, we drop to default settings.
     105
     106        try {
     107            overlapNorth = Integer.valueOf(prefs.get("wmsplugin.url.overlapNorth"));
     108        } catch (Exception e) {} // If sth fails, we drop to default settings.
    109109
    110110        // And then the names+urls of WMS servers
     
    169169
    170170        if (wmsJMenu == null)
    171             wmsJMenu = menu.addMenu(marktr("WMS"), KeyEvent.VK_W, menu.defaultMenuPos);
     171            wmsJMenu = menu.addMenu(tr("WMS"), KeyEvent.VK_W, menu.defaultMenuPos, ht("/Plugin/WMS"));
    172172        else
    173173            wmsJMenu.removeAll();
Note: See TracChangeset for help on using the changeset viewer.