Changeset 17858 in osm for applications/editors
- Timestamp:
- 2009-09-30T10:11:08+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/remotecontrol
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/remotecontrol/build.xml
r17457 r17858 4 4 <property name="plugin.build.dir" value="build"/> 5 5 <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/> 6 <property name="ant.build.javac.target" value="1.5"/>7 6 <target name="init"> 8 7 <mkdir dir="${plugin.build.dir}"/> … … 10 9 <target name="compile" depends="init"> 11 10 <echo message="creating ${plugin.jar}"/> 12 <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}"> 13 <compilerarg value="-Xlint:deprecation"/> 11 <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}" 12 target="1.5" source="1.5" encoding="UTF-8"> 13 <compilerarg value="-Xlint:deprecation"/> 14 14 <compilerarg value="-Xlint:unchecked"/> 15 15 </javac> … … 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 057"/>28 <attribute name="Plugin-Mainversion" value="2215"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/remotecontrol/src/org/openstreetmap/josm/plugins/remotecontrol/RequestProcessor.java
r17590 r17858 255 255 256 256 DownloadTask osmTask = new DownloadOsmTask(); 257 osmTask.loadUrl(false, URLDecoder.decode(args.get("url"), "UTF-8") );257 osmTask.loadUrl(false, URLDecoder.decode(args.get("url"), "UTF-8"), null); 258 258 } catch (LoadDeniedException ex) { 259 259 System.out.println("RemoteControl: import forbidden by preferences");
Note:
See TracChangeset
for help on using the changeset viewer.