Changeset 20482 in osm for applications/editors
- Timestamp:
- 2010-03-14T21:29:25+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/wayselector
- Files:
-
- 8 added
- 2 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wayselector/README
r20480 r20482 1 README 1 README 2 2 ====== 3 3 4 Readme for your plugin 4 The way selector plugin allows easy selection of sequential ways that 5 have been divided into segments. 6 7 Created by Marko Mäkelä for selecting the mainland natural=coastline 8 within an area without selecting any islands. Thanks to Harry Wood 9 for the way downloader plugin, which was a useful resource for learning. 10 11 Usage: Select one or more ways and activate the plugin from the Tools 12 menu or by the keyboard shortcut. The selection of each selected way 13 will be extended until the non-branching sequence of ways ends. You 14 may select one or more ways at the branches and activate the plugin 15 again, until you have selected all the desired ways. 16 17 When this plugin is activated, the selection may include other 18 primitives than ways. This plugin only operates on the selected ways. -
applications/editors/josm/plugins/wayselector/build.xml
r20480 r20482 28 28 ** 29 29 --> 30 <project name=" myPluginName" default="dist" basedir=".">30 <project name="wayselector" default="dist" basedir="."> 31 31 32 32 <!-- enter the SVN commit message --> 33 <property name="commit.message" value=" Commit message" />33 <property name="commit.message" value="Initial release of the Way Selector plugin" /> 34 34 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 35 <property name="plugin.main.version" value=" " />35 <property name="plugin.main.version" value="3095" /> 36 36 37 37 … … 60 60 <!-- 61 61 ********************************************************** 62 ** compile - comp lies the source tree62 ** compile - compiles the source tree 63 63 ********************************************************** 64 64 --> 65 65 <target name="compile" depends="init"> 66 66 <echo message="compiling sources for ${plugin.jar} ... "/> 67 <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}" >67 <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}" includeantruntime="false"> 68 68 <compilerarg value="-Xlint:deprecation"/> 69 69 <compilerarg value="-Xlint:unchecked"/> … … 100 100 --> 101 101 <manifest> 102 <attribute name="Author" value=" ..."/>103 <attribute name="Plugin-Class" value=" ..."/>102 <attribute name="Author" value="Marko Mäkelä"/> 103 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.wayselector.WaySelectorPlugin"/> 104 104 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 105 <attribute name="Plugin-Description" value=" ..."/>106 <attribute name="Plugin-Link" value=" ..."/>105 <attribute name="Plugin-Description" value="Select a sequence of non-branching connected ways"/> 106 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/WaySelectorPlugin"/> 107 107 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/> 108 108 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> … … 157 157 158 158 <!-- 159 ************************** Publishing the plugin *********************************** 159 ************************** Publishing the plugin *********************************** 160 160 --> 161 161 <!-- 162 ** extracts the JOSM release for the JOSM version in ../core and saves it in the 162 ** extracts the JOSM release for the JOSM version in ../core and saves it in the 163 163 ** property ${coreversion.info.entry.revision} 164 164 ** … … 209 209 210 210 <!-- 211 ** commits the plugin.jar 211 ** commits the plugin.jar 212 212 --> 213 213 <target name="commit-dist"> 214 214 <echo> 215 215 ***** Properties of published ${plugin.jar} ***** 216 Commit message : '${commit.message}' 216 Commit message : '${commit.message}' 217 217 Plugin-Mainversion: ${plugin.main.version} 218 218 JOSM build version: ${coreversion.info.entry.revision} 219 219 Plugin-Version : ${version.entry.commit.revision} 220 ***** / Properties of published ${plugin.jar} ***** 221 220 ***** / Properties of published ${plugin.jar} ***** 221 222 222 Now commiting ${plugin.jar} ... 223 223 </echo> 224 <exec append="true" output="svn.log" executable="svn" failifexecutionfails=" false">224 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="true" failonerror="true"> 225 225 <env key="LANG" value="C"/> 226 226 <arg value="-m '${commit.message}'"/>
Note:
See TracChangeset
for help on using the changeset viewer.