aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2009-01-22 13:09:18 +0000
committerRichard Worth <rdworth@gmail.com>2009-01-22 13:09:18 +0000
commit6b80dc29c8a888029f71edb73aee4e166f54214b (patch)
tree8a2e8267048e326fba45c639dbb030dc5572d2af
parentf394771349e33dd4df57c48db9e0418e0f1e381f (diff)
downloadjquery-ui-6b80dc29c8a888029f71edb73aee4e166f54214b.tar.gz
jquery-ui-6b80dc29c8a888029f71edb73aee4e166f54214b.zip
Merged remove-spaces target (ui/build.xml) into new whitespace target (build/build.xml). Deleted ui/build.xml
-rw-r--r--build/build.xml8
-rw-r--r--ui/build.xml24
2 files changed, 8 insertions, 24 deletions
diff --git a/build/build.xml b/build/build.xml
index 863ef6f98..fbacebfac 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -198,4 +198,12 @@
</delete>
</target>
+ <target name="whitespace">
+ <replaceregexp match="[\t ]+$" replace="" flags="g" byline="true">
+ <fileset dir="${src.dir}" includes="*.js"/>
+ <fileset dir="${src.dir}/i18n/" includes="*.js"/>
+ </replaceregexp>
+ <echo message="All trailing spaces removed." />
+ </target>
+
</project>
diff --git a/ui/build.xml b/ui/build.xml
deleted file mode 100644
index 604148447..000000000
--- a/ui/build.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-
-<!--
- jQuery UI Tasks
- @author Eduardo Lundgren (eduardolundgren@gmail.com)
--->
-
-<project name="jquery-ui" default="remove-spaces" basedir=".">
-
- <target name="load.properties">
- <property file="ant.properties" />
- <property name="ui.dir" value="." />
- <property name="src.dir" value="${ui.dir}/" />
- </target>
-
- <target name="remove-spaces" depends="load.properties">
- <replaceregexp match="[\t ]+$" replace="" flags="g" byline="true">
- <fileset dir="${src.dir}" includes="*.js"/>
- <fileset dir="${src.dir}/i18n/" includes="*.js"/>
- </replaceregexp>
- <echo message="All trailing spaces removed." />
- </target>
-
-</project> \ No newline at end of file