You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2014/10/27 06:55:38 UTC

[2/3] git commit: [flex-utilities] [refs/heads/apache-tour-de-flex-1.2] - update to use squiggly 1.1

update to use squiggly 1.1


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/5571b7b5
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/5571b7b5
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/5571b7b5

Branch: refs/heads/apache-tour-de-flex-1.2
Commit: 5571b7b5063c0246ca9654e367559c907645a48d
Parents: fb055bf
Author: Justin Mclean <jm...@apache.org>
Authored: Mon Oct 27 16:54:26 2014 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Mon Oct 27 16:54:26 2014 +1100

----------------------------------------------------------------------
 TourDeFlex/TourDeFlex3/build.xml | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/5571b7b5/TourDeFlex/TourDeFlex3/build.xml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/build.xml b/TourDeFlex/TourDeFlex3/build.xml
index 3186ccb..07af642 100644
--- a/TourDeFlex/TourDeFlex3/build.xml
+++ b/TourDeFlex/TourDeFlex3/build.xml
@@ -441,13 +441,13 @@
 	<property name="download.dir" value="temp"/>
 	<property name="unpack.dir" value="squiggly"/>
 	<property name="mirror.url" value="http://flex.apache.org/single-mirror-url.cgi" />
-    <property name="squiggly.folder" value="flex/squiggly/1.0" />
+    <property name="squiggly.folder" value="flex/squiggly/1.1" />
  
-	<condition property="squiggly.file" value="apache-flex-squiggly-1.0-bin.zip">
+	<condition property="squiggly.file" value="apache-flex-squiggly-1.1-bin.zip">
     	<os family="windows" />
     </condition>
 	
-    <condition property="squiggly.file" value="apache-flex-squiggly-1.0-bin.tar.gz">
+    <condition property="squiggly.file" value="apache-flex-squiggly-1.1-bin.tar.gz">
     	<or>
     		<os family="mac" />
     		<os family="unix" />
@@ -455,12 +455,13 @@
     </condition>
 	
 	<target name="compile-squiggly" description="compile apache squiggly examples" depends="squiggly-download">
+		<compile-mxml example="/apache/Squiggly1_1"/>
 		<compile-mxml-libs example="/apache/squiggly/SpellingExample"/>
 		<compile-mxml-libs example="/apache/squiggly/SpellingExExample"/>
 	</target>
 	
     <target name="squiggly-check" description="Checks if Squiggly has been downloaded.">
-        <available file="${basedir}/libs/ApacheflexSpellingEngine.swc" property="sqigggly.present"/>
+        <available file="${basedir}/libs/ApacheFlexSpellingEngine.swc" property="sqigggly.present"/>
     </target>
         	
     <target name="squiggly-download" depends="squiggly-check" unless="sqigggly.present" description="Downloads squiggly SDK">
@@ -477,7 +478,7 @@
             dest="${download.dir}/${squiggly.file}" 
             verbose="true"/>
     	
-    	<!-- TOSO upzip on windows -->
+    	<!-- TODO upzip on windows -->
     	<mkdir dir="${unpack.dir}"/>
     	<untar dest="${unpack.dir}" src="${download.dir}/${squiggly.file}" compression="gzip" />