aboutsummaryrefslogtreecommitdiffstats
path: root/ui/build.xml
blob: 604148447fb87b7c7402f2a1a0e29787fd99f643 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?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>