I added that page last night. You probably need to clear cache or do a shift+refresh.
Thanks, Om On Mon, Feb 18, 2013 at 12:31 AM, Justin Mclean <jus...@classsoftware.com>wrote: > Hi, > > Probably you're aware but looks like the links here: > http://flex.apache.org/about-binaries.html > > Are broken. > > Thanks, > Justin > > On 18/02/2013, at 6:57 PM, bigosma...@apache.org wrote: > > > Author: bigosmallm > > Date: Mon Feb 18 07:57:09 2013 > > New Revision: 1447143 > > > > URL: http://svn.apache.org/r1447143 > > Log: > > Add tracking of installation success. When installation succeeds, the > page flex.apache.org/track-installer.html is loaded. > > > > Added: > > > > flex/utilities/trunk/installer/src/org/apache/flex/packageflexsdk/view/components/Tracker.mxml > (with props) > > Modified: > > > flex/utilities/trunk/common/src/org/apache/flex/utilities/common/Constants.as > > flex/utilities/trunk/installer/src/InstallApacheFlex.mxml > > > > flex/utilities/trunk/installer/src/org/apache/flex/packageflexsdk/resource/RuntimeLocale.as > > flex/utilities/trunk/installer/src/sdk-installer-config-2.0.xml > > > > Modified: > flex/utilities/trunk/common/src/org/apache/flex/utilities/common/Constants.as > > URL: > http://svn.apache.org/viewvc/flex/utilities/trunk/common/src/org/apache/flex/utilities/common/Constants.as?rev=1447143&r1=1447142&r2=1447143&view=diff > > > ============================================================================== > > --- > flex/utilities/trunk/common/src/org/apache/flex/utilities/common/Constants.as > (original) > > +++ > flex/utilities/trunk/common/src/org/apache/flex/utilities/common/Constants.as > Mon Feb 18 07:57:09 2013 > > @@ -38,7 +38,8 @@ public class Constants > > public static const APPLICATION_EXTENSION_WIN:String = ".exe"; > > > > public static const CONFIG_XML_NAME:String = > "sdk-installer-config-2.0.xml"; > > - public static const DISCLAIMER_PATH:String = "installer.html"; > > + public static const DISCLAIMER_PATH:String = "about-binaries.html"; > > + public static const INSTALLER_TRACK_SUCCESS:String = > "track-installer.html"; > > > > > > public static const SDK_BINARY_FILE_NAME_PREFIX:String = > "apache-flex-sdk-"; > > > > Modified: flex/utilities/trunk/installer/src/InstallApacheFlex.mxml > > URL: > http://svn.apache.org/viewvc/flex/utilities/trunk/installer/src/InstallApacheFlex.mxml?rev=1447143&r1=1447142&r2=1447143&view=diff > > > ============================================================================== > > --- flex/utilities/trunk/installer/src/InstallApacheFlex.mxml (original) > > +++ flex/utilities/trunk/installer/src/InstallApacheFlex.mxml Mon Feb 18 > 07:57:09 2013 > > @@ -1471,6 +1471,7 @@ variables are not required because the l > > } > > if(allComponentsInstalled) > > { > > + tracker.trackInstallerSuccess(); > > cleanup(false); > > } > > } > > @@ -2181,6 +2182,7 @@ variables are not required because the l > > > label="{_viewResourceConstants.BTN_LABEL_OPEN_APACHE_FLEX_FOLDER}" > > toolTip="{_flexHome}" > > click="openApacheFlexFolder(event)" /> > > + <components:Tracker id="tracker" width="1" height="1" > visible="false" /> > > </s:Panel> > > <s:HGroup > > left="0" > > @@ -2188,7 +2190,8 @@ variables are not required because the l > > bottom="20" > > paddingLeft="20" > > paddingRight="20" > > - paddingTop="0"> > > + paddingTop="0" > > + verticalAlign="middle"> > > <s:Button id="installLogBtn" > > styleName="genericBtnStyle" > > width="{logButtonWidth}" > > @@ -2196,6 +2199,8 @@ variables are not required because the l > > > label="{_viewResourceConstants.BTN_LABEL_INSTALL_LOG}" > > click="showConsole(event)" /> > > <s:Spacer width="100%" /> > > + <s:Label text="{_viewResourceConstants.INFO_TRACKING}" /> > > + <s:Spacer width="100%" /> > > <s:Button id="closeBtn" > > styleName="genericBtnStyle" > > width="{standardButtonWidth}" > > > > Modified: > flex/utilities/trunk/installer/src/org/apache/flex/packageflexsdk/resource/RuntimeLocale.as > > URL: > http://svn.apache.org/viewvc/flex/utilities/trunk/installer/src/org/apache/flex/packageflexsdk/resource/RuntimeLocale.as?rev=1447143&r1=1447142&r2=1447143&view=diff > > > ============================================================================== > > --- > flex/utilities/trunk/installer/src/org/apache/flex/packageflexsdk/resource/RuntimeLocale.as > (original) > > +++ > flex/utilities/trunk/installer/src/org/apache/flex/packageflexsdk/resource/RuntimeLocale.as > Mon Feb 18 07:57:09 2013 > > @@ -472,6 +472,7 @@ public class RuntimeLocale > > content["LICENSE_URL_FONTSWF"]=" > http://www.adobe.com/products/eulas/pdfs/adobe_flex_software_development_kit-combined-20110916_0930.pdf > "; > > content["LICENSE_BLAZEDS"]="Adobe Flex SDK License"; > > content["LICENSE_URL_BLAZEDS"]=" > http://www.adobe.com/products/eulas/pdfs/adobe_flex_software_development_kit-combined-20110916_0930.pdf > "; > > + content["INFO_TRACKING"]="Information about your use of > this application is being collected using HTTP requests."; > > > > _resourceManager.addResourceBundle(resource); > > } > > > > Added: > flex/utilities/trunk/installer/src/org/apache/flex/packageflexsdk/view/components/Tracker.mxml > > URL: > http://svn.apache.org/viewvc/flex/utilities/trunk/installer/src/org/apache/flex/packageflexsdk/view/components/Tracker.mxml?rev=1447143&view=auto > > > ============================================================================== > > --- > flex/utilities/trunk/installer/src/org/apache/flex/packageflexsdk/view/components/Tracker.mxml > (added) > > +++ > flex/utilities/trunk/installer/src/org/apache/flex/packageflexsdk/view/components/Tracker.mxml > Mon Feb 18 07:57:09 2013 > > @@ -0,0 +1,16 @@ > > +<?xml version="1.0" encoding="utf-8"?> > > +<s:Group xmlns:fx="http://ns.adobe.com/mxml/2009" > > + xmlns:s="library://ns.adobe.com/flex/spark" > > + xmlns:mx="library://ns.adobe.com/flex/mx" width="400" > height="300"> > > + <fx:Script> > > + <![CDATA[ > > + import > org.apache.flex.packageflexsdk.resource.ViewResourceConstants; > > + import org.apache.flex.utilities.common.Constants; > > + public function trackInstallerSuccess():void > > + { > > + trackInstallerHTML.location = > Constants.APACHE_FLEX_URL + Constants.INSTALLER_TRACK_SUCCESS; > > + } > > + ]]> > > + </fx:Script> > > + <mx:HTML id="trackInstallerHTML" width="100%" height="100%" /> > > +</s:Group> > > \ No newline at end of file > > > > Propchange: > flex/utilities/trunk/installer/src/org/apache/flex/packageflexsdk/view/components/Tracker.mxml > > > ------------------------------------------------------------------------------ > > svn:eol-style = native > > > > Modified: flex/utilities/trunk/installer/src/sdk-installer-config-2.0.xml > > URL: > http://svn.apache.org/viewvc/flex/utilities/trunk/installer/src/sdk-installer-config-2.0.xml?rev=1447143&r1=1447142&r2=1447143&view=diff > > > ============================================================================== > > --- flex/utilities/trunk/installer/src/sdk-installer-config-2.0.xml > (original) > > +++ flex/utilities/trunk/installer/src/sdk-installer-config-2.0.xml Mon > Feb 18 07:57:09 2013 > > @@ -34,7 +34,7 @@ limitations under the License. > > > > <!-- Mirror URL CGI --> > > <file name="MirrorURLCGI" path="" > file="single-mirror-url.cgi" /> > > - . > > + > > <!-- Apache Flex binary distribution > > Notes: > > - path is relative to mirror URL > > > > > >