Propchange: websites/staging/flex/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sat Aug 23 08:50:20 2014
@@ -1 +1 @@
-1619599
+1619988

Propchange: websites/staging/flex/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sat Aug 23 08:50:20 2014
@@ -1 +1 @@
-1619599
+1619988

Added: websites/staging/flex/trunk/content/tourdeflex/AC_OETags.js
==============================================================================
--- websites/staging/flex/trunk/content/tourdeflex/AC_OETags.js (added)
+++ websites/staging/flex/trunk/content/tourdeflex/AC_OETags.js Sat Aug 23 
08:50:20 2014
@@ -0,0 +1,282 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ *     contributor license agreements.  See the NOTICE file distributed with
+ *     this work for additional information regarding copyright ownership.
+ *     The ASF licenses this file to You under the Apache License, Version 2.0
+ *     (the "License"); you may not use this file except in compliance with
+ *     the License.  You may obtain a copy of the License at
+ *
+ *         http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *     Unless required by applicable law or agreed to in writing, software
+ *     distributed under the License is distributed on an "AS IS" BASIS,
+ *     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *     See the License for the specific language governing permissions and
+ *     limitations under the License.
+ */
+var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
+var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : 
false;
+var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
+
+function ControlVersion()
+{
+       var version;
+       var axo;
+       var e;
+
+       // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't 
in the registry
+
+       try {
+               // version will be set for 7.X or greater players
+               axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
+               version = axo.GetVariable("$version");
+       } catch (e) {
+       }
+
+       if (!version)
+       {
+               try {
+                       // version will be set for 6.X players only
+                       axo = new 
ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
+                       
+                       // installed player is some revision of 6.0
+                       // GetVariable("$version") crashes for versions 6.0.22 
through 6.0.29,
+                       // so we have to be careful. 
+                       
+                       // default to the first public version
+                       version = "WIN 6,0,21,0";
+
+                       // throws if AllowScripAccess does not exist 
(introduced in 6.0r47)             
+                       axo.AllowScriptAccess = "always";
+
+                       // safe to call for 6.0r47 or greater
+                       version = axo.GetVariable("$version");
+
+               } catch (e) {
+               }
+       }
+
+       if (!version)
+       {
+               try {
+                       // version will be set for 4.X or 5.X player
+                       axo = new 
ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
+                       version = axo.GetVariable("$version");
+               } catch (e) {
+               }
+       }
+
+       if (!version)
+       {
+               try {
+                       // version will be set for 3.X player
+                       axo = new 
ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
+                       version = "WIN 3,0,18,0";
+               } catch (e) {
+               }
+       }
+
+       if (!version)
+       {
+               try {
+                       // version will be set for 2.X player
+                       axo = new 
ActiveXObject("ShockwaveFlash.ShockwaveFlash");
+                       version = "WIN 2,0,0,11";
+               } catch (e) {
+                       version = -1;
+               }
+       }
+       
+       return version;
+}
+
+// JavaScript helper required to detect Flash Player PlugIn version information
+function GetSwfVer(){
+       // NS/Opera version >= 3 check for Flash plugin in plugin array
+       var flashVer = -1;
+       
+       if (navigator.plugins != null && navigator.plugins.length > 0) {
+               if (navigator.plugins["Shockwave Flash 2.0"] || 
navigator.plugins["Shockwave Flash"]) {
+                       var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? 
" 2.0" : "";
+                       var flashDescription = navigator.plugins["Shockwave 
Flash" + swVer2].description;                       
+                       var descArray = flashDescription.split(" ");
+                       var tempArrayMajor = descArray[2].split(".");
+                       var versionMajor = tempArrayMajor[0];
+                       var versionMinor = tempArrayMajor[1];
+                       if ( descArray[3] != "" ) {
+                               tempArrayMinor = descArray[3].split("r");
+                       } else {
+                               tempArrayMinor = descArray[4].split("r");
+                       }
+                       var versionRevision = tempArrayMinor[1] > 0 ? 
tempArrayMinor[1] : 0;
+                       var flashVer = versionMajor + "." + versionMinor + "." 
+ versionRevision;
+               }
+       }
+       // MSN/WebTV 2.6 supports Flash 4
+       else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) 
flashVer = 4;
+       // WebTV 2.5 supports Flash 3
+       else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) 
flashVer = 3;
+       // older WebTV supports Flash 2
+       else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) 
flashVer = 2;
+       else if ( isIE && isWin && !isOpera ) {
+               flashVer = ControlVersion();
+       }       
+       return flashVer;
+}
+
+// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that 
version or greater is available
+function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
+{
+       versionStr = GetSwfVer();
+       if (versionStr == -1 ) {
+               return false;
+       } else if (versionStr != 0) {
+               if(isIE && isWin && !isOpera) {
+                       // Given "WIN 2,0,0,11"
+                       tempArray         = versionStr.split(" ");      // 
["WIN", "2,0,0,11"]
+                       tempString        = tempArray[1];                       
// "2,0,0,11"
+                       versionArray      = tempString.split(",");      // 
['2', '0', '0', '11']
+               } else {
+                       versionArray      = versionStr.split(".");
+               }
+               var versionMajor      = versionArray[0];
+               var versionMinor      = versionArray[1];
+               var versionRevision   = versionArray[2];
+
+               // is the major.revision >= requested major.revision AND the 
minor version >= requested minor
+               if (versionMajor > parseFloat(reqMajorVer)) {
+                       return true;
+               } else if (versionMajor == parseFloat(reqMajorVer)) {
+                       if (versionMinor > parseFloat(reqMinorVer))
+                               return true;
+                       else if (versionMinor == parseFloat(reqMinorVer)) {
+                               if (versionRevision >= parseFloat(reqRevision))
+                                       return true;
+                       }
+               }
+               return false;
+       }
+}
+
+function AC_AddExtension(src, ext)
+{
+  if (src.indexOf('?') != -1)
+    return src.replace(/\?/, ext+'?'); 
+  else
+    return src + ext;
+}
+
+function AC_Generateobj(objAttrs, params, embedAttrs) 
+{ 
+    var str = '';
+    if (isIE && isWin && !isOpera)
+    {
+               str += '<object ';
+               for (var i in objAttrs)
+                       str += i + '="' + objAttrs[i] + '" ';
+               for (var i in params)
+                       str += '><param name="' + i + '" value="' + params[i] + 
'" /> ';
+               str += '></object>';
+    } else {
+               str += '<embed ';
+               for (var i in embedAttrs)
+                       str += i + '="' + embedAttrs[i] + '" ';
+               str += '> </embed>';
+    }
+
+    document.write(str);
+}
+
+function AC_FL_RunContent(){
+  var ret = 
+    AC_GetArgs
+    (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
+     , "application/x-shockwave-flash"
+    );
+  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
+}
+
+function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
+  var ret = new Object();
+  ret.embedAttrs = new Object();
+  ret.params = new Object();
+  ret.objAttrs = new Object();
+  for (var i=0; i < args.length; i=i+2){
+    var currArg = args[i].toLowerCase();    
+
+    switch (currArg){  
+      case "classid":
+        break;
+      case "pluginspage":
+        ret.embedAttrs[args[i]] = args[i+1];
+        break;
+      case "src":
+      case "movie":    
+        args[i+1] = AC_AddExtension(args[i+1], ext);
+        ret.embedAttrs["src"] = args[i+1];
+        ret.params[srcParamName] = args[i+1];
+        break;
+      case "onafterupdate":
+      case "onbeforeupdate":
+      case "onblur":
+      case "oncellchange":
+      case "onclick":
+      case "ondblClick":
+      case "ondrag":
+      case "ondragend":
+      case "ondragenter":
+      case "ondragleave":
+      case "ondragover":
+      case "ondrop":
+      case "onfinish":
+      case "onfocus":
+      case "onhelp":
+      case "onmousedown":
+      case "onmouseup":
+      case "onmouseover":
+      case "onmousemove":
+      case "onmouseout":
+      case "onkeypress":
+      case "onkeydown":
+      case "onkeyup":
+      case "onload":
+      case "onlosecapture":
+      case "onpropertychange":
+      case "onreadystatechange":
+      case "onrowsdelete":
+      case "onrowenter":
+      case "onrowexit":
+      case "onrowsinserted":
+      case "onstart":
+      case "onscroll":
+      case "onbeforeeditfocus":
+      case "onactivate":
+      case "onbeforedeactivate":
+      case "ondeactivate":
+      case "type":
+      case "codebase":
+      case "id":
+        ret.objAttrs[args[i]] = args[i+1];
+        break;
+      case "width":
+      case "height":
+      case "align":
+      case "vspace": 
+      case "hspace":
+      case "class":
+      case "title":
+      case "accesskey":
+      case "name":
+      case "tabindex":
+        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
+        break;
+      default:
+        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
+    }
+  }
+  ret.objAttrs["classid"] = classid;
+  if (mimeType) ret.embedAttrs["type"] = mimeType;
+  return ret;
+}
+
+

Added: websites/staging/flex/trunk/content/tourdeflex/SourceTab.mxml
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/flex/trunk/content/tourdeflex/SourceTab.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: websites/staging/flex/trunk/content/tourdeflex/SourceTab.swf
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/flex/trunk/content/tourdeflex/SourceTab.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: websites/staging/flex/trunk/content/tourdeflex/explorer.html
==============================================================================
--- websites/staging/flex/trunk/content/tourdeflex/explorer.html (added)
+++ websites/staging/flex/trunk/content/tourdeflex/explorer.html Sat Aug 23 
08:50:20 2014
@@ -0,0 +1,65 @@
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one or more
+  ~     contributor license agreements.  See the NOTICE file distributed with
+  ~     this work for additional information regarding copyright ownership.
+  ~     The ASF licenses this file to You under the Apache License, Version 2.0
+  ~     (the "License"); you may not use this file except in compliance with
+  ~     the License.  You may obtain a copy of the License at
+  ~
+  ~         http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~     Unless required by applicable law or agreed to in writing, software
+  ~     distributed under the License is distributed on an "AS IS" BASIS,
+  ~     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 
implied.
+  ~     See the License for the specific language governing permissions and
+  ~     limitations under the License.
+  -->
+<html lang="en">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<title>Apache Flex Tour De Flex Component Explorer</title>
+<script src="AC_OETags.js" language="javascript"></script>
+<style>
+body { margin: 0px; overflow:hidden }
+</style>
+</head>
+
+<body scroll='no'>
+<script language="JavaScript" type="text/javascript">
+<!--
+               AC_FL_RunContent(
+                                       "src", "explorer",
+                                       "width", "100%",
+                                       "height", "100%",
+                                       "align", "middle",
+                                       "id", "explorer",
+                                       "quality", "high",
+                                       "bgcolor", "#869ca7",
+                                       "name", "explorer",
+                                       "allowScriptAccess","sameDomain",
+                                       "type", "application/x-shockwave-flash",
+                                       "pluginspage", 
"http://www.adobe.com/go/getflashplayer";
+       );
+// -->
+</script>
+<noscript>
+       <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
+                       id="explorer" width="100%" height="100%"
+                       
codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab";>
+                       <param name="movie" value="explorer.swf" />
+                       <param name="quality" value="high" />
+                       <param name="bgcolor" value="#869ca7" />
+                       <param name="allowScriptAccess" value="sameDomain" />
+                       <embed src="explorer.swf" quality="high" 
bgcolor="#869ca7"
+                               width="100%" height="100%" name="explorer" 
align="middle"
+                               play="true"
+                               loop="false"
+                               quality="high"
+                               allowScriptAccess="sameDomain"
+                               type="application/x-shockwave-flash"
+                               
pluginspage="http://www.adobe.com/go/getflashplayer";>
+                       </embed>
+       </object>
+</noscript>
+</body>
+</html>

Added: websites/staging/flex/trunk/content/tourdeflex/explorer.mxml
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/flex/trunk/content/tourdeflex/explorer.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: websites/staging/flex/trunk/content/tourdeflex/explorer.swf
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/flex/trunk/content/tourdeflex/explorer.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: websites/staging/flex/trunk/content/tourdeflex/explorer.xml
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/flex/trunk/content/tourdeflex/explorer.xml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: websites/staging/flex/trunk/content/tourdeflex/loaderPanel.mxml
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/flex/trunk/content/tourdeflex/loaderPanel.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: websites/staging/flex/trunk/content/tourdeflex/loaderPanel.swf
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/flex/trunk/content/tourdeflex/loaderPanel.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/BubbleChartExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/BubbleChartExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/BubbleChartExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/BubbleChartExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/CandlestickChartExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/CandlestickChartExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/CandlestickChartExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/CandlestickChartExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/Column_BarChartExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/Column_BarChartExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/Column_BarChartExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/Column_BarChartExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/DateTimeAxisExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/DateTimeAxisExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/DateTimeAxisExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/DateTimeAxisExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/GridLinesExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/GridLinesExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/GridLinesExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/GridLinesExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/HLOCChartExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/HLOCChartExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/HLOCChartExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/HLOCChartExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/Line_AreaChartExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/Line_AreaChartExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/Line_AreaChartExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/Line_AreaChartExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/LogAxisExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/LogAxisExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/LogAxisExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/LogAxisExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/PieChartExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/PieChartExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/PieChartExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/PieChartExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/PlotChartExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/PlotChartExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/PlotChartExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/PlotChartExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/SeriesInterpolateExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/SeriesInterpolateExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/SeriesInterpolateExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/SeriesInterpolateExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/SeriesSlideExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/SeriesSlideExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/SeriesSlideExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/SeriesSlideExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/SeriesZoomExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/SeriesZoomExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/SeriesZoomExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/charts/SeriesZoomExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/AccordionExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/AccordionExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/AccordionExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/AccordionExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/DividedBoxExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/DividedBoxExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/DividedBoxExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/DividedBoxExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/FormExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/FormExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/FormExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/FormExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/GridLayoutExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/GridLayoutExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/GridLayoutExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/GridLayoutExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/HBoxExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/HBoxExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/HBoxExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/HBoxExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/HDividedBoxExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/HDividedBoxExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/HDividedBoxExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/HDividedBoxExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleApplicationControlBarExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleApplicationControlBarExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleApplicationControlBarExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleApplicationControlBarExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleBoxExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleBoxExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleBoxExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleBoxExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleCanvasExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleCanvasExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleCanvasExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleCanvasExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleControlBarExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleControlBarExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleControlBarExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleControlBarExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimplePanelExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimplePanelExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimplePanelExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimplePanelExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleTitleWindowExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleTitleWindowExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleTitleWindowExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/SimpleTitleWindowExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/TabNavigatorExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/TabNavigatorExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/TabNavigatorExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/TabNavigatorExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/TileLayoutExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/TileLayoutExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/TileLayoutExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/TileLayoutExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/TitleWindowApp.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/TitleWindowApp.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/TitleWindowApp.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/TitleWindowApp.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/VBoxExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/VBoxExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/VBoxExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/VBoxExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/VDividedBoxExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/VDividedBoxExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/VDividedBoxExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/VDividedBoxExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/ViewStackExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/ViewStackExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/ViewStackExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/ViewStackExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/assets/ApacheFlexLogo.png
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/containers/assets/ApacheFlexLogo.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/AdvancedDataGridExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/AdvancedDataGridExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/AdvancedDataGridExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/AdvancedDataGridExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/ButtonBarExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/ButtonBarExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/ButtonBarExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/ButtonBarExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/ButtonExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/ButtonExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/ButtonExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/ButtonExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/CheckBoxExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/CheckBoxExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/CheckBoxExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/CheckBoxExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/ColorPickerExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/ColorPickerExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/ColorPickerExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/ColorPickerExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/DateChooserExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/DateChooserExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/DateChooserExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/DateChooserExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/DateFieldExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/DateFieldExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/DateFieldExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/DateFieldExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/HScrollBarExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/HScrollBarExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/HScrollBarExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/HScrollBarExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/HorizontalListExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/HorizontalListExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/HorizontalListExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/HorizontalListExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/LabelExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/LabelExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/LabelExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/LabelExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/LinkBarExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/LinkBarExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/LinkBarExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/LinkBarExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/LinkButtonExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/LinkButtonExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/LinkButtonExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/LinkButtonExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: websites/staging/flex/trunk/content/tourdeflex/mx/controls/Local.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/Local.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: websites/staging/flex/trunk/content/tourdeflex/mx/controls/Local.swf
==============================================================================
Binary file - no diff available.

Propchange: websites/staging/flex/trunk/content/tourdeflex/mx/controls/Local.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/MenuBarExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/MenuBarExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/MenuBarExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/MenuBarExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/NumericStepperExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/NumericStepperExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/NumericStepperExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/NumericStepperExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/OLAPDataGridExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/OLAPDataGridExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/OLAPDataGridExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/OLAPDataGridExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/PopUpButtonExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/PopUpButtonExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/PopUpButtonExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/PopUpButtonExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/PopUpButtonMenuExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/PopUpButtonMenuExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/PopUpButtonMenuExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/PopUpButtonMenuExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/RadioButtonExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/RadioButtonExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/RadioButtonExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/RadioButtonExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/RadioButtonGroupExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/RadioButtonGroupExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/RadioButtonGroupExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/RadioButtonGroupExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/RichTextEditorExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/RichTextEditorExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/RichTextEditorExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/RichTextEditorExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleAlert.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleAlert.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleAlert.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleAlert.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleComboBox.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleComboBox.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleComboBox.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleComboBox.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleDataGrid.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleDataGrid.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleDataGrid.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleDataGrid.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleHRule.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleHRule.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleHRule.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleHRule.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleImage.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleImage.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleImage.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleImage.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleImageHSlider.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleImageHSlider.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleImageHSlider.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleImageHSlider.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleImageVSlider.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleImageVSlider.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleImageVSlider.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleImageVSlider.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleList.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleList.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleList.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleList.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleLoader.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleLoader.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleLoader.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleLoader.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleMenuExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleMenuExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleMenuExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleMenuExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleProgressBar.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleProgressBar.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleProgressBar.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleProgressBar.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleVRule.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleVRule.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleVRule.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SimpleVRule.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SpacerExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SpacerExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SpacerExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/SpacerExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TabBarExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TabBarExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TabBarExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TabBarExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TextAreaExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TextAreaExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TextAreaExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TextAreaExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TextExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TextExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TextExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TextExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TextInputExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TextInputExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TextInputExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TextInputExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TileListExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TileListExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TileListExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TileListExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/ToggleButtonBarExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/ToggleButtonBarExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/ToggleButtonBarExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/ToggleButtonBarExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TreeExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TreeExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TreeExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/TreeExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/VScrollBarExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/VScrollBarExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/VScrollBarExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/VScrollBarExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/VideoDisplayExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/VideoDisplayExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/VideoDisplayExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/VideoDisplayExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/assets/ApacheFlexIcon.png
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/assets/ApacheFlexIcon.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/assets/ApacheFlexLogo.png
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/assets/ApacheFlexLogo.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/assets/FlexInstaller.mp4
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/assets/FlexInstaller.mp4
------------------------------------------------------------------------------
    svn:mime-type = video/mp4

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/assets/buttonDisabled.gif
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/assets/buttonDisabled.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/assets/buttonDown.gif
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/assets/buttonDown.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/assets/buttonOver.gif
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/assets/buttonOver.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/assets/buttonUp.gif
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/controls/assets/buttonUp.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/core/RepeaterExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/core/RepeaterExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/core/RepeaterExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/core/RepeaterExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/core/SimpleApplicationExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/core/SimpleApplicationExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/core/SimpleApplicationExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/core/SimpleApplicationExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/AddItemActionEffectExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/AddItemActionEffectExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/AddItemActionEffectExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/AddItemActionEffectExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/AnimatePropertyEffectExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/AnimatePropertyEffectExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/AnimatePropertyEffectExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/AnimatePropertyEffectExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/BlurEffectExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/BlurEffectExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/BlurEffectExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/BlurEffectExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/CompositeEffectExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/CompositeEffectExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/CompositeEffectExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/CompositeEffectExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/DefaultListEffectExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/DefaultListEffectExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/DefaultListEffectExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/DefaultListEffectExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/DefaultTileListEffectExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/DefaultTileListEffectExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/DefaultTileListEffectExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/DefaultTileListEffectExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/DissolveEffectExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/DissolveEffectExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/DissolveEffectExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/DissolveEffectExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/FadeEffectExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/FadeEffectExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/FadeEffectExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/FadeEffectExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/GlowEffectExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/GlowEffectExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/GlowEffectExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/GlowEffectExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/IrisEffectExample.mxml
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/IrisEffectExample.mxml
------------------------------------------------------------------------------
    svn:mime-type = application/xml

Added: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/IrisEffectExample.swf
==============================================================================
Binary file - no diff available.

Propchange: 
websites/staging/flex/trunk/content/tourdeflex/mx/effects/IrisEffectExample.swf
------------------------------------------------------------------------------
    svn:mime-type = application/x-shockwave-flash


Reply via email to