Index: applications/editors/josm/plugins/DirectDownload/build.xml
===================================================================
--- applications/editors/josm/plugins/DirectDownload/build.xml	(revision 25199)
+++ applications/editors/josm/plugins/DirectDownload/build.xml	(revision 26174)
@@ -1,3 +1,3 @@
-<?xml version="1.0" encoding="UTF-8"?>
+<?xml version="1.0" encoding="utf-8"?>
 <!--
 ** This is a template build file for a JOSM  plugin.
@@ -29,24 +29,20 @@
 -->
 <project name="DirectDownload" default="dist" basedir=".">
-
     <!-- enter the SVN commit message -->
-    <property name="commit.message" value="Commit message" />
+    <property name="commit.message" value="Commit message"/>
     <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
-    <property name="plugin.main.version" value="3835" />
-
-
+    <property name="plugin.main.version" value="3835"/>
     <!--
       ************************************************
       ** should not be necessary to change the following properties
      -->
-    <property name="josm"                   location="../../core/dist/josm-custom.jar"/>
-    <property name="plugin.build.dir"       value="build"/>
-    <property name="plugin.src.dir"         value="src"/>
+    <property name="josm" location="../../core/dist/josm-custom.jar"/>
+    <property name="plugin.build.dir" value="build"/>
+    <property name="plugin.src.dir" value="src"/>
     <!-- this is the directory where the plugin jar is copied to -->
-    <property name="plugin.dist.dir"        value="../../dist"/>
+    <property name="plugin.dist.dir" value="../../dist"/>
     <property name="ant.build.javac.target" value="1.5"/>
-    <property name="plugin.dist.dir"        value="../../dist"/>
-    <property name="plugin.jar"             value="${plugin.dist.dir}/${ant.project.name}.jar"/>
-
+    <property name="plugin.dist.dir" value="../../dist"/>
+    <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/>
     <!--
     **********************************************************
@@ -57,5 +53,4 @@
         <mkdir dir="${plugin.build.dir}"/>
     </target>
-
     <!--
     **********************************************************
@@ -70,5 +65,4 @@
         </javac>
     </target>
-
     <!--
     **********************************************************
@@ -84,8 +78,11 @@
             <fileset dir="images"/>
         </copy>
+        <copy todir="${plugin.build.dir}/data">
+            <fileset dir="data"/>
+        </copy>
         <copy todir="${plugin.build.dir}">
             <fileset dir=".">
-                <include name="README" />
-                <include name="LICENSE" />
+                <include name="README"/>
+                <include name="LICENSE"/>
             </fileset>
         </copy>
@@ -104,5 +101,5 @@
                 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
                 <attribute name="Plugin-Description" value="Download your GPX tracks from openstreetmap.org"/>
-<!--
+                <!--
                 <attribute name="Plugin-Icon" value="..."/>
                 <attribute name="Plugin-Link" value="..."/>
@@ -113,5 +110,4 @@
         </jar>
     </target>
-
     <!--
     **********************************************************
@@ -122,5 +118,4 @@
     -->
     <target name="revision">
-
         <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
             <env key="LANG" value="C"/>
@@ -132,5 +127,4 @@
         <delete file="REVISION"/>
     </target>
-
     <!--
     **********************************************************
@@ -142,5 +136,4 @@
         <delete file="${plugin.jar}"/>
     </target>
-
     <!--
     **********************************************************
@@ -157,6 +150,4 @@
         <copy file="${plugin.jar}" todir="${josm.plugins.dir}"/>
     </target>
-
-
     <!--
     ************************** Publishing the plugin *********************************** 
@@ -177,7 +168,6 @@
         <echo>Building against core revision ${coreversion.info.entry.revision}.</echo>
         <echo>Plugin-Mainversion is set to ${plugin.main.version}.</echo>
-        <delete file="core.info.xml" />
-    </target>
-
+        <delete file="core.info.xml"/>
+    </target>
     <!--
         ** commits the source tree for this plugin
@@ -192,5 +182,4 @@
         </exec>
     </target>
-
     <!--
         ** updates (svn up) the source tree for this plugin
@@ -210,5 +199,4 @@
         </exec>
     </target>
-
     <!--
         ** commits the plugin.jar 
@@ -232,10 +220,9 @@
         </exec>
     </target>
-
     <!-- ** make sure svn is present as a command line tool ** -->
     <target name="ensure-svn-present">
         <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false" failonerror="false" resultproperty="svn.exit.code">
-            <env key="LANG" value="C" />
-            <arg value="--version" />
+            <env key="LANG" value="C"/>
+            <arg value="--version"/>
         </exec>
         <fail message="Fatal: command 'svn --version' failed. Please make sure svn is installed on your system.">
@@ -243,5 +230,5 @@
             <condition>
                 <not>
-                    <isset property="svn.exit.code" />
+                    <isset property="svn.exit.code"/>
                 </not>
             </condition>
@@ -250,9 +237,8 @@
             <!-- error code from SVN? Most likely svn is not what we are looking on this system -->
             <condition>
-                <isfailure code="${svn.exit.code}" />
+                <isfailure code="${svn.exit.code}"/>
             </condition>
         </fail>
     </target>
-
     <target name="publish" depends="ensure-svn-present,core-info,commit-current,update-current,clean,dist,commit-dist">
     </target>
