Index: applications/editors/josm/plugins/wmsplugin/README
===================================================================
--- applications/editors/josm/plugins/wmsplugin/README	(revision 12778)
+++ applications/editors/josm/plugins/wmsplugin/README	(revision 12780)
@@ -10,5 +10,5 @@
 
 This plugin has been created by tim <chippy2005@gmail.com>
-and has received major contributions from Frederik Ramm 
+and has received major contributions from Frederik Ramm
 <frederik@remote.org>. It is based on the "Landsat" plugin
 by Nick Whitelegg <Nick.Whitelegg@solent.ac.uk> and includes
Index: applications/editors/josm/plugins/wmsplugin/build.xml
===================================================================
--- applications/editors/josm/plugins/wmsplugin/build.xml	(revision 12778)
+++ applications/editors/josm/plugins/wmsplugin/build.xml	(revision 12780)
@@ -1,72 +1,62 @@
 <project name="wmsplugin" default="dist" basedir=".">
-
-  <!-- josm "user home" directory depends on the platform used (windows has a different place than unix/linux) -->
-  <property environment="env"/>
-  <condition property="josm.home.dir" value="${env.APPDATA}/JOSM" else="${user.home}/.josm">
-    <and>
-      <os family="windows"/>
-    </and>
-  </condition>
-
-  <!-- compilation properties -->
-  <property name="josm.build.dir"	value="../../core"/>
-  <property name="josm.plugins.dir" value="${josm.home.dir}/plugins"/>
-  <property name="josm"			location="../../core/dist/josm-custom.jar" />
-  <property name="plugin.build.dir"	value="build"/>
-  <property name="plugin.dist.dir"	value="../../dist"/>
-  <property name="plugin.name"		value="${ant.project.name}"/>
-  <property name="plugin.jar"		value="../../dist/${plugin.name}.jar"/>
-
-  <property name="ant.build.javac.target" value="1.5"/>
-
-  <target name="init">
-    <mkdir dir="build"></mkdir>
-    <mkdir dir="dist"></mkdir>
-  </target>
-
-  <target name="compile" depends="init">
-    <echo message="creating ${plugin.jar}"/>
-    <javac srcdir="src" classpath="${josm}" debug="true" destdir="build">
-      <compilerarg value="-Xlint:deprecation"/>
-      <compilerarg value="-Xlint:unchecked"/>
-      <include name="**/*.java" />
-    </javac>
-  </target>
-
-  <target name="dist" depends="compile">
-    <copy todir="${plugin.build.dir}/resources">
-      <fileset dir="resources"/>
-    </copy>
-    <copy todir="build/images" >
-      <fileset dir="images" />
-    </copy>
-    <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
-      <env key="LANG" value="C"/>
-      <arg value="info"/>
-      <arg value="--xml"/>
-      <arg value="."/>
-    </exec>
-    <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
-    <delete file="REVISION"/>
-
-    <jar destfile="${plugin.jar}" basedir="build">
-      <manifest>
-        <attribute name="Plugin-Class" value="wmsplugin.WMSPlugin" />
-        <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
-        <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
-        <attribute name="Plugin-Description" value="Allows external WMS resources to be displayed." />
-        <attribute name="Plugin-Mainversion" value="1180" />
-      </manifest>
-    </jar>
-  </target>
-
-  <target name="clean">
-    <delete dir="${plugin.build.dir}" />
-    <delete file="${plugin.jar}" />
-  </target>
-  
-  <target name="install" depends="dist">
-    <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
-  </target>
-  
+<!-- josm "user home" directory depends on the platform used (windows has a different place than unix/linux) -->
+    <property environment="env"/>
+    <condition property="josm.home.dir" value="${env.APPDATA}/JOSM" else="${user.home}/.josm">
+        <and>
+            <os family="windows"/>
+        </and>
+    </condition>
+<!-- compilation properties -->
+    <property name="josm.build.dir"   value="../../core"/>
+    <property name="josm.plugins.dir" value="${josm.home.dir}/plugins"/>
+    <property name="josm"         location="../../core/dist/josm-custom.jar" />
+    <property name="plugin.build.dir" value="build"/>
+    <property name="plugin.dist.dir"  value="../../dist"/>
+    <property name="plugin.name"      value="${ant.project.name}"/>
+    <property name="plugin.jar"       value="../../dist/${plugin.name}.jar"/>
+    <property name="ant.build.javac.target" value="1.5"/>
+    <target name="init">
+        <mkdir dir="build"></mkdir>
+        <mkdir dir="dist"></mkdir>
+    </target>
+    <target name="compile" depends="init">
+        <echo message="creating ${plugin.jar}"/>
+        <javac srcdir="src" classpath="${josm}" debug="true" destdir="build">
+            <compilerarg value="-Xlint:deprecation"/>
+            <compilerarg value="-Xlint:unchecked"/>
+            <include name="**/*.java" />
+        </javac>
+    </target>
+    <target name="dist" depends="compile">
+        <copy todir="${plugin.build.dir}/resources">
+            <fileset dir="resources"/>
+        </copy>
+        <copy todir="build/images" >
+            <fileset dir="images" />
+        </copy>
+        <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
+            <env key="LANG" value="C"/>
+            <arg value="info"/>
+            <arg value="--xml"/>
+            <arg value="."/>
+        </exec>
+        <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
+        <delete file="REVISION"/>
+        <jar destfile="${plugin.jar}" basedir="build">
+            <manifest>
+                <attribute name="Plugin-Class" value="wmsplugin.WMSPlugin" />
+                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
+                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
+                <attribute name="Plugin-Description" value="Allows external WMS resources to be displayed." />
+                <attribute name="Plugin-Mainversion" value="1180" />
+            </manifest>
+        </jar>
+    </target>
+    <target name="clean">
+        <delete dir="${plugin.build.dir}" />
+        <delete file="${plugin.jar}" />
+    </target>
+    <target name="install" depends="dist">
+        <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
+    </target>
 </project>
Index: applications/editors/josm/plugins/wmsplugin/resources/ymap.html
===================================================================
--- applications/editors/josm/plugins/wmsplugin/resources/ymap.html	(revision 12778)
+++ applications/editors/josm/plugins/wmsplugin/resources/ymap.html	(revision 12780)
@@ -9,5 +9,5 @@
             url = url.substring(queryStringPos + 1);
             var variables = url.split ("&");
-            for (i = 0; i < variables.length; i++) 
+            for (i = 0; i < variables.length; i++)
             {
                 if( !variables[i] )
Index: applications/editors/josm/plugins/wmsplugin/src/readme.txt
===================================================================
--- applications/editors/josm/plugins/wmsplugin/src/readme.txt	(revision 12778)
+++ applications/editors/josm/plugins/wmsplugin/src/readme.txt	(revision 12780)
@@ -2,9 +2,9 @@
  Jcoord
  readme.txt
- 
+
  (c) 2006 Jonathan Stott
- 
+
  Created on 11-Feb-2006
- 
+
  1.0 - 11 Feb 2006
   - Initial version created from PHPcoord v2.2
@@ -14,5 +14,5 @@
 various co-ordinate systems and converting between them. Currently, OSGB
 (Ordnance Survey of Great Britain) grid references, UTM (Universal Transverse
-Mercator) references and latitude/longitude are supported. A function is 
+Mercator) references and latitude/longitude are supported. A function is
 also provided to find the surface distance between two points of latitude
 and longitude.
