You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by bi...@apache.org on 2012/07/30 22:21:47 UTC

svn commit: r1367267 - in /incubator/flex/utilities/InstallApacheFlex: .actionScriptProperties src/InstallApacheFlex.mxml

Author: bigosmallm
Date: Mon Jul 30 20:21:47 2012
New Revision: 1367267

URL: http://svn.apache.org/viewvc?rev=1367267&view=rev
Log:
Added Project > Properties > Flex Compiler > Additional compile arguments) : -define=INSTALLER::buildNumber,0 -define=INSTALLER::releaseVersion,'0.7.0'.  This makes sure that the app compiles correctly from the IDE as well.  
Added a 5 minute idletimeout for downloads, since the Adobe download sites as well as some Apache mirrors are extremely slow.

Modified:
    incubator/flex/utilities/InstallApacheFlex/.actionScriptProperties
    incubator/flex/utilities/InstallApacheFlex/src/InstallApacheFlex.mxml

Modified: incubator/flex/utilities/InstallApacheFlex/.actionScriptProperties
URL: http://svn.apache.org/viewvc/incubator/flex/utilities/InstallApacheFlex/.actionScriptProperties?rev=1367267&r1=1367266&r2=1367267&view=diff
==============================================================================
--- incubator/flex/utilities/InstallApacheFlex/.actionScriptProperties (original)
+++ incubator/flex/utilities/InstallApacheFlex/.actionScriptProperties Mon Jul 30 20:21:47 2012
@@ -18,7 +18,7 @@ limitations under the License.
 
 -->
 <actionScriptProperties analytics="false" mainApplicationPath="InstallApacheFlex.mxml" projectUUID="151f0ac8-8811-45cd-b935-d7c2b0949fa3" version="10">
-  <compiler additionalCompilerArguments="" autoRSLOrdering="true" copyDependentFiles="true" flexSDK="Flex 4.6.0" fteInMXComponents="false" generateAccessible="true" htmlExpressInstall="true" htmlGenerate="false" htmlHistoryManagement="false" htmlPlayerVersionCheck="true" includeNetmonSwc="false" outputFolderPath="bin-debug" removeUnusedRSL="true" sourceFolderPath="src" strict="true" targetPlayerVersion="0.0.0" useApolloConfig="true" useDebugRSLSwfs="true" verifyDigests="true" warn="true">
+  <compiler additionalCompilerArguments="-define=INSTALLER::buildNumber,0 -define=INSTALLER::releaseVersion,'0.7.0'" autoRSLOrdering="true" copyDependentFiles="true" flexSDK="Flex 4.6.0" fteInMXComponents="false" generateAccessible="true" htmlExpressInstall="true" htmlGenerate="false" htmlHistoryManagement="false" htmlPlayerVersionCheck="true" includeNetmonSwc="false" outputFolderPath="bin-debug" removeUnusedRSL="true" sourceFolderPath="src" strict="true" targetPlayerVersion="0.0.0" useApolloConfig="true" useDebugRSLSwfs="true" verifyDigests="true" warn="true">
     <compilerSourcePath/>
     <libraryPath defaultLinkType="0">
       <libraryPathEntry kind="4" path="">

Modified: incubator/flex/utilities/InstallApacheFlex/src/InstallApacheFlex.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/utilities/InstallApacheFlex/src/InstallApacheFlex.mxml?rev=1367267&r1=1367266&r2=1367267&view=diff
==============================================================================
--- incubator/flex/utilities/InstallApacheFlex/src/InstallApacheFlex.mxml (original)
+++ incubator/flex/utilities/InstallApacheFlex/src/InstallApacheFlex.mxml Mon Jul 30 20:21:47 2012
@@ -1356,7 +1356,8 @@ variables are not required because the l
 			{
 				var loader:URLLoader = new URLLoader();
 				var req:URLRequest = new URLRequest(url);
-				req.idleTimeout = 60000;
+				//Wait for 5 minutes before aborting download attempt.  Adobe download sites as well as some Apache mirrors are extremely slow.
+				req.idleTimeout = 300000; 
 				
 				loader.dataFormat = URLLoaderDataFormat.BINARY; 
 				loader.addEventListener(Event.COMPLETE, handlerFunction,false,0,true);