Converted all ant files to unix line endings.
git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@113 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/samples/build.xml b/samples/build.xml
index 8152cd0..53cf7a0 100644
--- a/samples/build.xml
+++ b/samples/build.xml
@@ -1,56 +1,56 @@
-<project name="samples" default="build" basedir=".">
- <property name="gwt.root" location=".." />
- <property name="project.tail" value="samples" />
- <import file="${gwt.root}/common.ant.xml" />
-
- <!-- "build" is the default when subprojects are directly targetted -->
- <property name="target" value="build" />
-
- <target name="dynatable" description="Build dynatable">
- <gwt.ant dir="dynatable" />
- </target>
-
- <target name="hello" description="Build hello">
- <gwt.ant dir="hello" />
- </target>
-
- <target name="i18n" description="Build i18n">
- <gwt.ant dir="i18n" />
- </target>
-
- <target name="json" description="Build json">
- <gwt.ant dir="json" />
- </target>
-
- <target name="kitchensink" description="Build kitchensink">
- <gwt.ant dir="kitchensink" />
- </target>
-
- <target name="mail" description="Build mail">
- <gwt.ant dir="mail" />
- </target>
-
- <target name="simplexml" description="Build simplexml">
- <gwt.ant dir="simplexml" />
- </target>
-
- <target name="-do" depends="dynatable, hello, i18n, json, kitchensink, mail, simplexml" description="Run all subprojects" />
-
- <target name="build" description="Builds GWT">
- <antcall target="-do">
- <param name="target" value="build" />
- </antcall>
- </target>
-
- <target name="checkstyle" description="Static analysis of GWT source">
- <antcall target="-do">
- <param name="target" value="checkstyle" />
- </antcall>
- </target>
-
- <target name="test" depends="build" description="Test GWT">
- <antcall target="-do">
- <param name="target" value="test" />
- </antcall>
- </target>
-</project>
+<project name="samples" default="build" basedir=".">
+ <property name="gwt.root" location=".." />
+ <property name="project.tail" value="samples" />
+ <import file="${gwt.root}/common.ant.xml" />
+
+ <!-- "build" is the default when subprojects are directly targetted -->
+ <property name="target" value="build" />
+
+ <target name="dynatable" description="Build dynatable">
+ <gwt.ant dir="dynatable" />
+ </target>
+
+ <target name="hello" description="Build hello">
+ <gwt.ant dir="hello" />
+ </target>
+
+ <target name="i18n" description="Build i18n">
+ <gwt.ant dir="i18n" />
+ </target>
+
+ <target name="json" description="Build json">
+ <gwt.ant dir="json" />
+ </target>
+
+ <target name="kitchensink" description="Build kitchensink">
+ <gwt.ant dir="kitchensink" />
+ </target>
+
+ <target name="mail" description="Build mail">
+ <gwt.ant dir="mail" />
+ </target>
+
+ <target name="simplexml" description="Build simplexml">
+ <gwt.ant dir="simplexml" />
+ </target>
+
+ <target name="-do" depends="dynatable, hello, i18n, json, kitchensink, mail, simplexml" description="Run all subprojects" />
+
+ <target name="build" description="Builds GWT">
+ <antcall target="-do">
+ <param name="target" value="build" />
+ </antcall>
+ </target>
+
+ <target name="checkstyle" description="Static analysis of GWT source">
+ <antcall target="-do">
+ <param name="target" value="checkstyle" />
+ </antcall>
+ </target>
+
+ <target name="test" depends="build" description="Test GWT">
+ <antcall target="-do">
+ <param name="target" value="test" />
+ </antcall>
+ </target>
+</project>
diff --git a/samples/common.ant.xml b/samples/common.ant.xml
index fa5ec0f..6f20812 100755
--- a/samples/common.ant.xml
+++ b/samples/common.ant.xml
@@ -1,68 +1,68 @@
-<project name="samples-common">
- <property name="gwt.root" location="../.." />
- <property name="project.tail" value="samples/${sample.root}" />
- <import file="${gwt.root}/common.ant.xml" />
-
- <property name="sample.package" value="${sample.root}" />
- <property name="sample.main" value="${sample.module}" />
-
- <property.ensure name="gwt.user.jar" location="${gwt.build.lib}/gwt-user.jar" />
- <!-- Platform shouldn't matter here, just picking one -->
- <property.ensure name="gwt.dev.jar" location="${gwt.build.lib}/gwt-dev-linux.jar" />
-
- <target name="compile" description="Compile all java files">
- <mkdir dir="${javac.out}" />
- <gwt.javac>
- <classpath>
- <pathelement location="${gwt.user.jar}" />
- <pathelement location="${gwt.dev.jar}" />
- </classpath>
- </gwt.javac>
- </target>
-
- <target name="gwtc" description="Compile to JavaScript">
- <mkdir dir="${project.build}/www" />
- <java dir="${project.build}" classname="com.google.gwt.dev.GWTCompiler" classpath="src:${gwt.user.jar}:${gwt.dev.jar}" fork="yes" failonerror="true">
- <classpath>
- <pathelement location="${src}" />
- <pathelement location="${gwt.user.jar}" />
- <pathelement location="${gwt.dev.jar}" />
- </classpath>
- <arg value="-out" />
- <arg file="${project.build}/www" />
- <arg value="com.google.gwt.sample.${sample.package}.${sample.module}" />
- </java>
- </target>
-
- <target name="antcall.script" description="Create launch scripts for a particular platform">
- <mkdir dir="${project.build}/scripts/${platform}" />
- <java classname="com.google.gwt.user.tools.ApplicationCreator" classpath="${gwt.user.jar}:${gwt.dev.jar}" failonerror="true">
- <!-- Relative path is important! Paths will be relative in final distro -->
- <sysproperty key="gwt.devjar" value="../../gwt-dev-${platform}.jar" />
- <arg value="-ignore" />
- <arg value="-out" />
- <arg file="${project.build}/scripts/${platform}" />
- <arg value="com.google.gwt.sample.${sample.package}.client.${sample.main}" />
- </java>
- </target>
-
- <target name="scripts" description="Create launch scripts">
- <antcall target="antcall.script">
- <param name="platform" value="linux" />
- </antcall>
- <antcall target="antcall.script">
- <param name="platform" value="windows" />
- </antcall>
- <antcall target="antcall.script">
- <param name="platform" value="mac" />
- </antcall>
- </target>
-
- <target name="build" depends="compile, gwtc, scripts" description="Build and package this project" />
-
- <target name="checkstyle" description="Static analysis of source">
- <gwt.checkstyle>
- <fileset dir="src"/>
- </gwt.checkstyle>
- </target>
-</project>
+<project name="samples-common">
+ <property name="gwt.root" location="../.." />
+ <property name="project.tail" value="samples/${sample.root}" />
+ <import file="${gwt.root}/common.ant.xml" />
+
+ <property name="sample.package" value="${sample.root}" />
+ <property name="sample.main" value="${sample.module}" />
+
+ <property.ensure name="gwt.user.jar" location="${gwt.build.lib}/gwt-user.jar" />
+ <!-- Platform shouldn't matter here, just picking one -->
+ <property.ensure name="gwt.dev.jar" location="${gwt.build.lib}/gwt-dev-linux.jar" />
+
+ <target name="compile" description="Compile all java files">
+ <mkdir dir="${javac.out}" />
+ <gwt.javac>
+ <classpath>
+ <pathelement location="${gwt.user.jar}" />
+ <pathelement location="${gwt.dev.jar}" />
+ </classpath>
+ </gwt.javac>
+ </target>
+
+ <target name="gwtc" description="Compile to JavaScript">
+ <mkdir dir="${project.build}/www" />
+ <java dir="${project.build}" classname="com.google.gwt.dev.GWTCompiler" classpath="src:${gwt.user.jar}:${gwt.dev.jar}" fork="yes" failonerror="true">
+ <classpath>
+ <pathelement location="${src}" />
+ <pathelement location="${gwt.user.jar}" />
+ <pathelement location="${gwt.dev.jar}" />
+ </classpath>
+ <arg value="-out" />
+ <arg file="${project.build}/www" />
+ <arg value="com.google.gwt.sample.${sample.package}.${sample.module}" />
+ </java>
+ </target>
+
+ <target name="antcall.script" description="Create launch scripts for a particular platform">
+ <mkdir dir="${project.build}/scripts/${platform}" />
+ <java classname="com.google.gwt.user.tools.ApplicationCreator" classpath="${gwt.user.jar}:${gwt.dev.jar}" failonerror="true">
+ <!-- Relative path is important! Paths will be relative in final distro -->
+ <sysproperty key="gwt.devjar" value="../../gwt-dev-${platform}.jar" />
+ <arg value="-ignore" />
+ <arg value="-out" />
+ <arg file="${project.build}/scripts/${platform}" />
+ <arg value="com.google.gwt.sample.${sample.package}.client.${sample.main}" />
+ </java>
+ </target>
+
+ <target name="scripts" description="Create launch scripts">
+ <antcall target="antcall.script">
+ <param name="platform" value="linux" />
+ </antcall>
+ <antcall target="antcall.script">
+ <param name="platform" value="windows" />
+ </antcall>
+ <antcall target="antcall.script">
+ <param name="platform" value="mac" />
+ </antcall>
+ </target>
+
+ <target name="build" depends="compile, gwtc, scripts" description="Build and package this project" />
+
+ <target name="checkstyle" description="Static analysis of source">
+ <gwt.checkstyle>
+ <fileset dir="src"/>
+ </gwt.checkstyle>
+ </target>
+</project>
diff --git a/samples/dynatable/build.xml b/samples/dynatable/build.xml
index b19ba5f..436aa88 100755
--- a/samples/dynatable/build.xml
+++ b/samples/dynatable/build.xml
@@ -1,5 +1,5 @@
-<project name="dynatable" default="build" basedir=".">
- <property name="sample.root" value="dynatable" />
- <property name="sample.module" value="DynaTable" />
- <import file="../common.ant.xml" />
-</project>
+<project name="dynatable" default="build" basedir=".">
+ <property name="sample.root" value="dynatable" />
+ <property name="sample.module" value="DynaTable" />
+ <import file="../common.ant.xml" />
+</project>
diff --git a/samples/hello/build.xml b/samples/hello/build.xml
index f855f09..5d6836c 100755
--- a/samples/hello/build.xml
+++ b/samples/hello/build.xml
@@ -1,5 +1,5 @@
-<project name="hello" default="build" basedir=".">
- <property name="sample.root" value="hello" />
- <property name="sample.module" value="Hello" />
- <import file="../common.ant.xml" />
-</project>
+<project name="hello" default="build" basedir=".">
+ <property name="sample.root" value="hello" />
+ <property name="sample.module" value="Hello" />
+ <import file="../common.ant.xml" />
+</project>
diff --git a/samples/i18n/build.xml b/samples/i18n/build.xml
index c9f18f4..5e28f84 100755
--- a/samples/i18n/build.xml
+++ b/samples/i18n/build.xml
@@ -1,5 +1,5 @@
-<project name="i18n" default="build" basedir=".">
- <property name="sample.root" value="i18n" />
- <property name="sample.module" value="I18N" />
- <import file="../common.ant.xml" />
-</project>
+<project name="i18n" default="build" basedir=".">
+ <property name="sample.root" value="i18n" />
+ <property name="sample.module" value="I18N" />
+ <import file="../common.ant.xml" />
+</project>
diff --git a/samples/json/build.xml b/samples/json/build.xml
index e8dfe0a..feb838f 100755
--- a/samples/json/build.xml
+++ b/samples/json/build.xml
@@ -1,5 +1,5 @@
-<project name="json" default="build" basedir=".">
- <property name="sample.root" value="json" />
- <property name="sample.module" value="JSON" />
- <import file="../common.ant.xml" />
-</project>
+<project name="json" default="build" basedir=".">
+ <property name="sample.root" value="json" />
+ <property name="sample.module" value="JSON" />
+ <import file="../common.ant.xml" />
+</project>
diff --git a/samples/kitchensink/build.xml b/samples/kitchensink/build.xml
index 78354c8..6056a9e 100755
--- a/samples/kitchensink/build.xml
+++ b/samples/kitchensink/build.xml
@@ -1,5 +1,5 @@
-<project name="kitchensink" default="build" basedir=".">
- <property name="sample.root" value="kitchensink" />
- <property name="sample.module" value="KitchenSink" />
- <import file="../common.ant.xml" />
-</project>
+<project name="kitchensink" default="build" basedir=".">
+ <property name="sample.root" value="kitchensink" />
+ <property name="sample.module" value="KitchenSink" />
+ <import file="../common.ant.xml" />
+</project>
diff --git a/samples/mail/build.xml b/samples/mail/build.xml
index 0cc2b4a..f95fe01 100755
--- a/samples/mail/build.xml
+++ b/samples/mail/build.xml
@@ -1,5 +1,5 @@
-<project name="mail" default="build" basedir=".">
- <property name="sample.root" value="mail" />
- <property name="sample.module" value="Mail" />
- <import file="../common.ant.xml" />
-</project>
+<project name="mail" default="build" basedir=".">
+ <property name="sample.root" value="mail" />
+ <property name="sample.module" value="Mail" />
+ <import file="../common.ant.xml" />
+</project>
diff --git a/samples/simplexml/build.xml b/samples/simplexml/build.xml
index a1ed93b..1d915f2 100755
--- a/samples/simplexml/build.xml
+++ b/samples/simplexml/build.xml
@@ -1,5 +1,5 @@
-<project name="simplexml" default="build" basedir=".">
- <property name="sample.root" value="simplexml" />
- <property name="sample.module" value="SimpleXML" />
- <import file="../common.ant.xml" />
-</project>
+<project name="simplexml" default="build" basedir=".">
+ <property name="sample.root" value="simplexml" />
+ <property name="sample.module" value="SimpleXML" />
+ <import file="../common.ant.xml" />
+</project>