Index: applications/editors/josm/plugins/openstreetbugs/LICENSE.txt
===================================================================
--- applications/editors/josm/plugins/openstreetbugs/LICENSE.txt	(revision 12778)
+++ applications/editors/josm/plugins/openstreetbugs/LICENSE.txt	(revision 12780)
@@ -7,9 +7,9 @@
 1. Redistributions of source code must retain the above copyright notice,
    this list of conditions and the following disclaimer.
-2. Redistributions in binary form must reproduce the above copyright notice, 
-   this list of conditions and the following disclaimer in the documentation 
+2. Redistributions in binary form must reproduce the above copyright notice,
+   this list of conditions and the following disclaimer in the documentation
    and/or other materials provided with the distribution.
-3. Neither the name of the project nor the names of its 
-   contributors may be used to endorse or promote products derived from this 
+3. Neither the name of the project nor the names of its
+   contributors may be used to endorse or promote products derived from this
    software without specific prior written permission.
 
Index: applications/editors/josm/plugins/openstreetbugs/build.xml
===================================================================
--- applications/editors/josm/plugins/openstreetbugs/build.xml	(revision 12778)
+++ applications/editors/josm/plugins/openstreetbugs/build.xml	(revision 12780)
@@ -1,95 +1,78 @@
 <project name="openstreetbugs" default="dist" basedir=".">
-
-        <!-- the path to JOSM source code (project directory) -->
-	<property name="josm.base.dir" value="../../core" />
-
-	<property name="josm.dist.dir" value="../../dist" />
-
-	<!--a osm file, which will be loaded, when running the test target -->
-	<property name="osmfile" value="/tmp/hoe.osm" />
-
-	<!-- compilation properties -->
-	<property name="josm.build.dir" value="${josm.base.dir}/build" />
-	<property name="josm.home.dir" value="${user.home}/.josm" />
-	<property name="josm" location="${josm.base.dir}/dist/josm-custom.jar" />
-	<property name="lib.dir" value="lib" />
-	<property name="plugin.build.dir" value="build" />
-	<property name="plugin.name" value="${ant.project.name}" />
-	<property name="plugin.jar" value="${plugin.build.dir}/${plugin.name}.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="${plugin.build.dir}" debug="true">
-			<include name="**/*.java" />
-		</javac>
-	</target>
-
-	<target name="dist" depends="clean, compile">
-
-		<!-- copy images to jar -->
-		<copy todir="${plugin.build.dir}/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"/>
-		<!-- create the jar file -->
-		<jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
-			<manifest>
-				<attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.osb.OsbPlugin" />
-				<attribute name="Plugin-Description" value="Imports issues from OpenStreetBugs" />
-				<attribute name="Plugin-Date" value="${version.entry.commit.date}" />
-				<attribute name="Plugin-Version" value="${version.entry.commit.revision}" />
-				<attribute name="Plugin-Mainversion" value="1180"/>
-				<attribute name="Author" value="Henrik Niehaus" />
-			</manifest>
-		</jar>
-
-		<copy todir="${josm.dist.dir}" file="${plugin.jar}" />
-	</target>
-
-	<!-- clean target -->
-	<target name="clean">
-		<delete dir="build" />
-	</target>
-
-	<target name="install" depends="dist">
-		<condition property="isWindows">
-			<os family="windows" />
-		</condition>
-		<condition property="isUnix">
-			<os family="unix" />
-		</condition>
-		<antcall target="install_win" />
-		<antcall target="install_linux" />
-	</target>
-
-	<target name="install_win" if="isWindows">
-		<property environment="env"/>
-		<copy file="${plugin.jar}" todir="${env.APPDATA}/JOSM/plugins" />
-	</target>
-
-	<target name="install_linux" if="isUnix">
-		<copy file="${plugin.jar}" todir="${user.home}/.josm/plugins" />
-	</target>
-
-	<target name="test" depends="install">
-		<java jar="${josm}" fork="true">
-			<arg value="${osmfile}" />
-			<jvmarg value="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=7777" />
-		</java>
-	</target>
-
+<!-- the path to JOSM source code (project directory) -->
+    <property name="josm.base.dir" value="../../core" />
+    <property name="josm.dist.dir" value="../../dist" />
+<!--a osm file, which will be loaded, when running the test target -->
+    <property name="osmfile" value="/tmp/hoe.osm" />
+<!-- compilation properties -->
+    <property name="josm.build.dir" value="${josm.base.dir}/build" />
+    <property name="josm.home.dir" value="${user.home}/.josm" />
+    <property name="josm" location="${josm.base.dir}/dist/josm-custom.jar" />
+    <property name="lib.dir" value="lib" />
+    <property name="plugin.build.dir" value="build" />
+    <property name="plugin.name" value="${ant.project.name}" />
+    <property name="plugin.jar" value="${plugin.build.dir}/${plugin.name}.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="${plugin.build.dir}" debug="true">
+            <include name="**/*.java" />
+        </javac>
+    </target>
+    <target name="dist" depends="clean, compile">
+<!-- copy images to jar -->
+        <copy todir="${plugin.build.dir}/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"/>
+<!-- create the jar file -->
+        <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
+            <manifest>
+                <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.osb.OsbPlugin" />
+                <attribute name="Plugin-Description" value="Imports issues from OpenStreetBugs" />
+                <attribute name="Plugin-Date" value="${version.entry.commit.date}" />
+                <attribute name="Plugin-Version" value="${version.entry.commit.revision}" />
+                <attribute name="Plugin-Mainversion" value="1180"/>
+                <attribute name="Author" value="Henrik Niehaus" />
+            </manifest>
+        </jar>
+        <copy todir="${josm.dist.dir}" file="${plugin.jar}" />
+    </target>
+<!-- clean target -->
+    <target name="clean">
+        <delete dir="build" />
+    </target>
+    <target name="install" depends="dist">
+        <condition property="isWindows">
+            <os family="windows" />
+        </condition>
+        <condition property="isUnix">
+            <os family="unix" />
+        </condition>
+        <antcall target="install_win" />
+        <antcall target="install_linux" />
+    </target>
+    <target name="install_win" if="isWindows">
+        <property environment="env"/>
+        <copy file="${plugin.jar}" todir="${env.APPDATA}/JOSM/plugins" />
+    </target>
+    <target name="install_linux" if="isUnix">
+        <copy file="${plugin.jar}" todir="${user.home}/.josm/plugins" />
+    </target>
+    <target name="test" depends="install">
+        <java jar="${josm}" fork="true">
+            <arg value="${osmfile}" />
+            <jvmarg value="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=7777" />
+        </java>
+    </target>
 </project>
