Index: applications/editors/josm/plugins/DirectUpload/LICENSE
===================================================================
--- applications/editors/josm/plugins/DirectUpload/LICENSE	(revision 12778)
+++ applications/editors/josm/plugins/DirectUpload/LICENSE	(revision 12780)
@@ -1,12 +1,12 @@
 
-		    GNU GENERAL PUBLIC LICENSE
-		       Version 2, June 1991
+            GNU GENERAL PUBLIC LICENSE
+               Version 2, June 1991
 
  Copyright (C) 1989, 1991 Free Software Foundation, Inc.
-	51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+    51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.
 
-			    Preamble
+                Preamble
 
   The licenses for most software are designed to take away your
@@ -59,5 +59,5 @@
 
 
-		    GNU GENERAL PUBLIC LICENSE
+            GNU GENERAL PUBLIC LICENSE
    TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
 
@@ -261,5 +261,5 @@
 of promoting the sharing and reuse of software generally.
 
-			    NO WARRANTY
+                NO WARRANTY
 
   11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
@@ -283,8 +283,8 @@
 POSSIBILITY OF SUCH DAMAGES.
 
-		     END OF TERMS AND CONDITIONS
-
-
-	    How to Apply These Terms to Your New Programs
+             END OF TERMS AND CONDITIONS
+
+
+        How to Apply These Terms to Your New Programs
 
   If you develop a new program, and you want it to be of the greatest
Index: applications/editors/josm/plugins/DirectUpload/README
===================================================================
--- applications/editors/josm/plugins/DirectUpload/README	(revision 12778)
+++ applications/editors/josm/plugins/DirectUpload/README	(revision 12780)
@@ -1,3 +1,3 @@
-Directly uploads GPX from active layer in JOSM to OpenStreetMap Server. 
+Directly uploads GPX from active layer in JOSM to OpenStreetMap Server.
 This currently uses OSM Api 0.5.
 
Index: applications/editors/josm/plugins/DirectUpload/build.xml
===================================================================
--- applications/editors/josm/plugins/DirectUpload/build.xml	(revision 12778)
+++ applications/editors/josm/plugins/DirectUpload/build.xml	(revision 12780)
@@ -1,69 +1,56 @@
 <project name="DirectUpload" default="dist" basedir=".">
-
-  <!-- compilation properties -->
-  <property name="josm.build.dir"	value="../../core"/>
-  <property name="josm.home.dir"	value="${user.home}/.josm"/>
-  <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"/>
-
-  <!-- point to your JOSM directory -->
-  <property name="josm" location="../../core/dist/josm-custom.jar" />
-
-  <property name="ant.build.javac.target" value="1.5"/>
-  
-  <target name="init">
-    <mkdir dir="${plugin.build.dir}"/>
-  </target>
-
-  <target name="compile" depends="init">
-    <echo message="creating ${plugin.jar}"/>
-    <javac srcdir="src" classpath="${josm}" destdir="build" debug="true" encoding="UTF-8">
-      <compilerarg value="-Xlint:deprecation"/>
-      <include name="**/*.java" />
-    </javac>
-  </target>
-
-
-  <target name="dist" depends="clean, compile">
-    <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="org.openstreetmap.josm.plugins.DirectUpload.UploadDataGuiPlugin" />
-	<attribute name="Plugin-Description" value="Uploads GPS traces to openstreetmap.org" />
-	<attribute name="Plugin-Author" value="Subhodip Biswas :subhodipbiswas@gmail.com" />
-	<attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
-        <attribute name="Plugin-Mainversion" value="1180"/>
-	<attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
-      </manifest>
-    </jar>
-  </target>
-
-  <!-- clean target -->
-  <target name="clean">
-    <delete dir="${plugin.build.dir}" />
-    <delete file="${plugin.jar}" />
-  </target>
-
-  <target name="install" depends="dist">
-    <copy file="${plugin.jar}" todir="${user.home}/.josm/plugins"/>
-  </target>
-
-  <target name="test" depends="install">
-    <java jar="${josm}" fork="true">
-    </java>
-  </target>
-	
+<!-- compilation properties -->
+    <property name="josm.build.dir"   value="../../core"/>
+    <property name="josm.home.dir"    value="${user.home}/.josm"/>
+    <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"/>
+<!-- point to your JOSM directory -->
+    <property name="josm" location="../../core/dist/josm-custom.jar" />
+    <property name="ant.build.javac.target" value="1.5"/>
+    <target name="init">
+        <mkdir dir="${plugin.build.dir}"/>
+    </target>
+    <target name="compile" depends="init">
+        <echo message="creating ${plugin.jar}"/>
+        <javac srcdir="src" classpath="${josm}" destdir="build" debug="true" encoding="UTF-8">
+            <compilerarg value="-Xlint:deprecation"/>
+            <include name="**/*.java" />
+        </javac>
+    </target>
+    <target name="dist" depends="clean, compile">
+        <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="org.openstreetmap.josm.plugins.DirectUpload.UploadDataGuiPlugin" />
+                <attribute name="Plugin-Description" value="Uploads GPS traces to openstreetmap.org" />
+                <attribute name="Plugin-Author" value="Subhodip Biswas :subhodipbiswas@gmail.com" />
+                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
+                <attribute name="Plugin-Mainversion" value="1180"/>
+                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
+            </manifest>
+        </jar>
+    </target>
+<!-- clean target -->
+    <target name="clean">
+        <delete dir="${plugin.build.dir}" />
+        <delete file="${plugin.jar}" />
+    </target>
+    <target name="install" depends="dist">
+        <copy file="${plugin.jar}" todir="${user.home}/.josm/plugins"/>
+    </target>
+    <target name="test" depends="install">
+        <java jar="${josm}" fork="true"></java>
+    </target>
 </project>
Index: applications/editors/josm/plugins/DirectUpload/nbproject/build-impl.xml
===================================================================
--- applications/editors/josm/plugins/DirectUpload/nbproject/build-impl.xml	(revision 12778)
+++ applications/editors/josm/plugins/DirectUpload/nbproject/build-impl.xml	(revision 12780)
@@ -22,7 +22,7 @@
 <project xmlns:j2seproject1="http://www.netbeans.org/ns/j2se-project/1" xmlns:j2seproject3="http://www.netbeans.org/ns/j2se-project/3" xmlns:jaxrpc="http://www.netbeans.org/ns/j2se-project/jax-rpc" basedir=".." default="default" name="DirectUpload-impl">
     <target depends="test,jar,javadoc" description="Build and test whole project." name="default"/>
-    <!-- 
+    <!--
                 ======================
-                INITIALIZATION SECTION 
+                INITIALIZATION SECTION
                 ======================
             -->
