Changeset 11569 in osm
- Timestamp:
- 2008-10-31T10:25:47+01:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/openstreetbugs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/openstreetbugs/build.xml
r11160 r11569 1 1 <project name="openstreetbugs" default="dist" basedir="."> 2 2 3 <property file="build.properties"/> 4 3 <property file="build.properties" /> 4 5 5 <!-- compilation properties --> 6 6 <property name="josm.build.dir" value="${josm.base.dir}/build" /> … … 35 35 <fileset dir="images" /> 36 36 </copy> 37 37 38 38 <!-- copy language files --> 39 39 <copy todir="${plugin.build.dir}"> … … 53 53 </manifest> 54 54 </jar> 55 55 56 56 <copy todir="${josm.dist.dir}" file="${plugin.jar}" /> 57 57 </target> … … 63 63 64 64 <target name="install" depends="dist"> 65 <condition property="isWindows"> 66 <os family="windows" /> 67 </condition> 68 <condition property="isUnix"> 69 <os family="unix" /> 70 </condition> 71 <antcall target="install_win" /> 72 <antcall target="install_linux" /> 73 </target> 74 75 <target name="install_win" if="isWindows"> 76 <property environment="env"/> 77 <copy file="${plugin.jar}" todir="${env.APPDATA}/JOSM/plugins" /> 78 </target> 79 80 <target name="install_linux" if="isUnix"> 65 81 <copy file="${plugin.jar}" todir="${user.home}/.josm/plugins" /> 66 82 </target> … … 69 85 <java jar="${josm}" fork="true"> 70 86 <arg value="${osmfile}" /> 71 <jvmarg value="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=7777"/> 87 <jvmarg value="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=7777" /> 72 88 </java> 73 89 </target> -
applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/OsbPlugin.java
r11260 r11569 71 71 72 72 public OsbPlugin() { 73 super(); 73 74 initConfig(); 74 75 dataSet = new DataSet(); 75 76 uploadHook = new OsbUploadHook(); 76 77 dialog = new OsbDialog(this); 77 78 78 OsbLayer.listeners.add(dialog); 79 OsbLayer.listeners.add(this); 79 80 } 80 81
Note:
See TracChangeset
for help on using the changeset viewer.