Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3928617D7F for ; Mon, 26 Jan 2015 22:04:44 +0000 (UTC) Received: (qmail 54523 invoked by uid 500); 26 Jan 2015 22:04:44 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 54434 invoked by uid 500); 26 Jan 2015 22:04:44 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 53817 invoked by uid 99); 26 Jan 2015 22:04:44 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Jan 2015 22:04:44 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id AB45EE0D4D; Mon, 26 Jan 2015 22:04:38 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: piotrz@apache.org To: commits@flex.apache.org Date: Mon, 26 Jan 2015 22:04:46 -0000 Message-Id: <8761c3d28dd44dbbaa18e7c9b24dd642@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [09/56] [abbrv] [partial] git commit: [flex-utilities] [refs/heads/develop] - trying to merge TourDeFlex develop release into master http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/5ed4d983/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-DragAndDrop/srcview/source/final-sample/sample2.mxml.html ---------------------------------------------------------------------- diff --git a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-DragAndDrop/srcview/source/final-sample/sample2.mxml.html b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-DragAndDrop/srcview/source/final-sample/sample2.mxml.html index a77af0e..8592fd0 100644 --- a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-DragAndDrop/srcview/source/final-sample/sample2.mxml.html +++ b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-DragAndDrop/srcview/source/final-sample/sample2.mxml.html @@ -14,56 +14,56 @@ See the License for the specific language governing permissions and limitations under the License. --> - - - - - -sample2.mxml - - - -
<?xml version="1.0" encoding="utf-8"?>
-<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="horizontal" verticalAlign="top"
-    horizontalAlign="center" backgroundGradientColors="[0x000000,0x323232]" paddingTop="0">
-            
-    <mx:Script>
-    import mx.managers.DragManager;
-    </mx:Script>
-    
-    <mx:Panel title="Fruit" height="100%" color="0xffffff" borderAlpha="0.15">
-        <mx:List height="100%" dragEnabled="true" color="black">
-            <mx:Array>
-                <mx:String>Orange</mx:String>
-                <mx:String>Apple</mx:String>
-                <mx:String>Pear</mx:String>
-                <mx:String>Banana</mx:String>
-            </mx:Array>
-        </mx:List>
-    </mx:Panel>
-
-    <mx:Panel id="fruitDetails" title="drag fruit here" color="0xffffff" borderAlpha="0.15" width="100%" height="100%"
-        paddingBottom="10" paddingTop="10" paddingRight="10" paddingLeft="10">
-        <mx:dragEnter>
-        if (event.dragSource.hasFormat('items'))
-        {
-            var dropTarget:Panel = event.currentTarget as Panel;
-            DragManager.acceptDragDrop(dropTarget);
-        }
-        </mx:dragEnter>
-        <mx:dragOver>
-        
-        </mx:dragOver>
-        <mx:dragDrop>
-        var data:Object = event.dragSource.dataForFormat('items');
-        var p:Panel = new Panel();
-        p.title = new String(data);
-        p.percentWidth = 100;
-        p.percentHeight = 25;
-        p.setStyle("color","black");
-        fruitDetails.addChild(p);
-        </mx:dragDrop>
-    </mx:Panel>
-    
-</mx:Application>
- + + + + + +sample2.mxml + + + +
<?xml version="1.0" encoding="utf-8"?>
+<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="horizontal" verticalAlign="top"
+    horizontalAlign="center" backgroundGradientColors="[0x000000,0x323232]" paddingTop="0">
+            
+    <mx:Script>
+    import mx.managers.DragManager;
+    </mx:Script>
+    
+    <mx:Panel title="Fruit" height="100%" color="0xffffff" borderAlpha="0.15">
+        <mx:List height="100%" dragEnabled="true" color="black">
+            <mx:Array>
+                <mx:String>Orange</mx:String>
+                <mx:String>Apple</mx:String>
+                <mx:String>Pear</mx:String>
+                <mx:String>Banana</mx:String>
+            </mx:Array>
+        </mx:List>
+    </mx:Panel>
+
+    <mx:Panel id="fruitDetails" title="drag fruit here" color="0xffffff" borderAlpha="0.15" width="100%" height="100%"
+        paddingBottom="10" paddingTop="10" paddingRight="10" paddingLeft="10">
+        <mx:dragEnter>
+        if (event.dragSource.hasFormat('items'))
+        {
+            var dropTarget:Panel = event.currentTarget as Panel;
+            DragManager.acceptDragDrop(dropTarget);
+        }
+        </mx:dragEnter>
+        <mx:dragOver>
+        
+        </mx:dragOver>
+        <mx:dragDrop>
+        var data:Object = event.dragSource.dataForFormat('items');
+        var p:Panel = new Panel();
+        p.title = new String(data);
+        p.percentWidth = 100;
+        p.percentHeight = 25;
+        p.setStyle("color","black");
+        fruitDetails.addChild(p);
+        </mx:dragDrop>
+    </mx:Panel>
+    
+</mx:Application>
+ http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/5ed4d983/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-DragAndDrop/srcview/source/sample1.mxml.html ---------------------------------------------------------------------- diff --git a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-DragAndDrop/srcview/source/sample1.mxml.html b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-DragAndDrop/srcview/source/sample1.mxml.html index ed4faba..61b1677 100644 --- a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-DragAndDrop/srcview/source/sample1.mxml.html +++ b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-DragAndDrop/srcview/source/sample1.mxml.html @@ -14,57 +14,57 @@ See the License for the specific language governing permissions and limitations under the License. --> - - - - - -sample1.mxml - - - -
<?xml version="1.0" encoding="utf-8"?>
-<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
-               xmlns:s="library://ns.adobe.com/flex/spark" 
-               xmlns:mx="library://ns.adobe.com/flex/mx" 
-               skinClass="TDFGradientBackgroundSkin" 
-               viewSourceURL="srcview/index.html">
-    
-    <s:layout>
-        <s:HorizontalLayout verticalAlign="middle" horizontalAlign="center" />
-    </s:layout>
-    
-    <fx:Declarations>
-        <s:ArrayList id="arr1">
-            <fx:String>Orange</fx:String>
-            <fx:String>Apple</fx:String>
-            <fx:String>Pear</fx:String>
-        </s:ArrayList>
-        
-        <s:ArrayList id="arr2">
-            <fx:String>Banana</fx:String>
-        </s:ArrayList>
-    </fx:Declarations>
-    
-    <s:Panel title="Drag and Drop Samples" 
-             width="600" height="100%"
-             color="0x000000" 
-             borderAlpha="0.15">
-        
-        <s:layout>
-            <s:HorizontalLayout horizontalAlign="center" 
-                              paddingLeft="10" paddingRight="10" 
-                              paddingTop="10" paddingBottom="10"/>
-        </s:layout>
-        
-        <s:List allowMultipleSelection="true" dropEnabled="true" dragEnabled="true" dragMoveEnabled="true" 
-                dataProvider="{arr1}"/>
-        
-        <s:Label text="Drag Items between lists" color="0x000000"/>
-        
-        <s:List allowMultipleSelection="true" dropEnabled="true" dragEnabled="true" dragMoveEnabled="true" 
-                dataProvider="{arr2}"/>
-    </s:Panel>
-    
-</s:Application>
- + + + + + +sample1.mxml + + + +
<?xml version="1.0" encoding="utf-8"?>
+<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
+               xmlns:s="library://ns.adobe.com/flex/spark" 
+               xmlns:mx="library://ns.adobe.com/flex/mx" 
+               skinClass="TDFGradientBackgroundSkin" 
+               viewSourceURL="srcview/index.html">
+    
+    <s:layout>
+        <s:HorizontalLayout verticalAlign="middle" horizontalAlign="center" />
+    </s:layout>
+    
+    <fx:Declarations>
+        <s:ArrayList id="arr1">
+            <fx:String>Orange</fx:String>
+            <fx:String>Apple</fx:String>
+            <fx:String>Pear</fx:String>
+        </s:ArrayList>
+        
+        <s:ArrayList id="arr2">
+            <fx:String>Banana</fx:String>
+        </s:ArrayList>
+    </fx:Declarations>
+    
+    <s:Panel title="Drag and Drop Samples" 
+             width="600" height="100%"
+             color="0x000000" 
+             borderAlpha="0.15">
+        
+        <s:layout>
+            <s:HorizontalLayout horizontalAlign="center" 
+                              paddingLeft="10" paddingRight="10" 
+                              paddingTop="10" paddingBottom="10"/>
+        </s:layout>
+        
+        <s:List allowMultipleSelection="true" dropEnabled="true" dragEnabled="true" dragMoveEnabled="true" 
+                dataProvider="{arr1}"/>
+        
+        <s:Label text="Drag Items between lists" color="0x000000"/>
+        
+        <s:List allowMultipleSelection="true" dropEnabled="true" dragEnabled="true" dragMoveEnabled="true" 
+                dataProvider="{arr2}"/>
+    </s:Panel>
+    
+</s:Application>
+ http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/5ed4d983/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-DragAndDrop/srcview/source/sample2.mxml.html ---------------------------------------------------------------------- diff --git a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-DragAndDrop/srcview/source/sample2.mxml.html b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-DragAndDrop/srcview/source/sample2.mxml.html index 202cdcc..b34e972 100644 --- a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-DragAndDrop/srcview/source/sample2.mxml.html +++ b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-DragAndDrop/srcview/source/sample2.mxml.html @@ -14,75 +14,75 @@ See the License for the specific language governing permissions and limitations under the License. --> - - - - - -sample2.mxml - - - -
<?xml version="1.0" encoding="utf-8"?>
-<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
-               xmlns:s="library://ns.adobe.com/flex/spark" 
-               xmlns:mx="library://ns.adobe.com/flex/mx" 
-               skinClass="TDFGradientBackgroundSkin" 
-               viewSourceURL="srcview/index.html">
-    
-    <fx:Script>
-        <![CDATA[
-            import mx.managers.DragManager;
-        ]]>
-    </fx:Script>
-    
-    <fx:Declarations>
-        <s:ArrayList id="arr1">
-            <fx:String>Orange</fx:String>
-            <fx:String>Apple</fx:String>
-            <fx:String>Pear</fx:String>
-            <fx:String>Banana</fx:String>
-        </s:ArrayList>
-    </fx:Declarations>
-    
-    <s:layout>
-        <s:HorizontalLayout verticalAlign="middle" horizontalAlign="center" />
-    </s:layout>
-    
-    <s:Panel title="Fruit" height="100%" color="0x000000" borderAlpha="0.15">
-        <s:List height="100%" dragEnabled="true" color="0x000000" dataProvider="{arr1}" />
-    </s:Panel>
-    
-    <s:Panel id="fruitDetails" title="drag fruit here" width="600" height="100%"
-             color="0x000000" 
-             borderAlpha="0.15">
-        
-        <s:layout>
-            <s:VerticalLayout horizontalAlign="center" 
-                                paddingLeft="10" paddingRight="10" 
-                                paddingTop="10" paddingBottom="10"/>
-        </s:layout>
-        
-        <s:dragEnter>
-            if (event.dragSource.hasFormat('itemsByIndex'))
-            {
-                var dropTarget:Panel = event.currentTarget as Panel;
-                DragManager.acceptDragDrop(dropTarget);
-            }
-        </s:dragEnter>
-        <s:dragOver>
-            
-        </s:dragOver>
-        <s:dragDrop>
-            var data:Object = event.dragSource.dataForFormat('itemsByIndex');
-            var p:Panel = new Panel();
-            p.title = new String(data);
-            p.percentWidth = 100;
-            p.percentHeight = 25;
-            p.setStyle("color","black");
-            fruitDetails.addElement(p);
-        </s:dragDrop>
-    </s:Panel>
-    
-</s:Application>
- + + + + + +sample2.mxml + + + +
<?xml version="1.0" encoding="utf-8"?>
+<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
+               xmlns:s="library://ns.adobe.com/flex/spark" 
+               xmlns:mx="library://ns.adobe.com/flex/mx" 
+               skinClass="TDFGradientBackgroundSkin" 
+               viewSourceURL="srcview/index.html">
+    
+    <fx:Script>
+        <![CDATA[
+            import mx.managers.DragManager;
+        ]]>
+    </fx:Script>
+    
+    <fx:Declarations>
+        <s:ArrayList id="arr1">
+            <fx:String>Orange</fx:String>
+            <fx:String>Apple</fx:String>
+            <fx:String>Pear</fx:String>
+            <fx:String>Banana</fx:String>
+        </s:ArrayList>
+    </fx:Declarations>
+    
+    <s:layout>
+        <s:HorizontalLayout verticalAlign="middle" horizontalAlign="center" />
+    </s:layout>
+    
+    <s:Panel title="Fruit" height="100%" color="0x000000" borderAlpha="0.15">
+        <s:List height="100%" dragEnabled="true" color="0x000000" dataProvider="{arr1}" />
+    </s:Panel>
+    
+    <s:Panel id="fruitDetails" title="drag fruit here" width="600" height="100%"
+             color="0x000000" 
+             borderAlpha="0.15">
+        
+        <s:layout>
+            <s:VerticalLayout horizontalAlign="center" 
+                                paddingLeft="10" paddingRight="10" 
+                                paddingTop="10" paddingBottom="10"/>
+        </s:layout>
+        
+        <s:dragEnter>
+            if (event.dragSource.hasFormat('itemsByIndex'))
+            {
+                var dropTarget:Panel = event.currentTarget as Panel;
+                DragManager.acceptDragDrop(dropTarget);
+            }
+        </s:dragEnter>
+        <s:dragOver>
+            
+        </s:dragOver>
+        <s:dragDrop>
+            var data:Object = event.dragSource.dataForFormat('itemsByIndex');
+            var p:Panel = new Panel();
+            p.title = new String(data);
+            p.percentWidth = 100;
+            p.percentHeight = 25;
+            p.setStyle("color","black");
+            fruitDetails.addElement(p);
+        </s:dragDrop>
+    </s:Panel>
+    
+</s:Application>
+ http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/5ed4d983/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/sample1.html ---------------------------------------------------------------------- diff --git a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/sample1.html b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/sample1.html index f748af9..67ff53c 100644 --- a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/sample1.html +++ b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/sample1.html @@ -14,32 +14,32 @@ See the License for the specific language governing permissions and limitations under the License. --> - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/5ed4d983/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/SourceIndex.xml ---------------------------------------------------------------------- diff --git a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/SourceIndex.xml b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/SourceIndex.xml index faa846d..21227fb 100644 --- a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/SourceIndex.xml +++ b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/SourceIndex.xml @@ -1,4 +1,4 @@ - + - - Source of Sample-Adobe-EmailValidator - - - - - - - - - - - - - - - - + + Source of Sample-Adobe-EmailValidator + + + + + + + + + + + + + + + + http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/5ed4d983/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/SourceStyles.css ---------------------------------------------------------------------- diff --git a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/SourceStyles.css b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/SourceStyles.css index 16d5c8c..85d85fe 100644 --- a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/SourceStyles.css +++ b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/SourceStyles.css @@ -14,142 +14,142 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -body { - font-family: Courier New, Courier, monospace; - font-size: medium; -} - -.CSS@font-face { - color: #990000; - font-weight: bold; -} - -.CSS@import { - color: #006666; - font-weight: bold; -} - -.CSS@media { - color: #663333; - font-weight: bold; -} - -.CSS@namespace { - color: #923196; -} - -.CSSComment { - color: #999999; -} - -.CSSDefault_Text { -} - -.CSSDelimiters { -} - -.CSSProperty_Name { - color: #330099; -} - -.CSSProperty_Value { - color: #3333cc; -} - -.CSSSelector { - color: #ff00ff; -} - -.CSSString { - color: #990000; -} - -.MXMLASDoc { - color: #3f5fbf; -} - -.MXMLComment { - color: #800000; -} - -.MXMLComponent_Tag { - color: #0000ff; -} - -.MXMLDefault_Text { -} - -.MXMLProcessing_Instruction { -} - -.MXMLSpecial_Tag { - color: #006633; -} - -.MXMLString { - color: #990000; -} - -.ActionScriptASDoc { - color: #3f5fbf; -} - -.ActionScriptBracket/Brace { -} - -.ActionScriptComment { - color: #009900; - font-style: italic; -} - -.ActionScriptDefault_Text { -} - -.ActionScriptMetadata { - color: #0033ff; - font-weight: bold; -} - -.ActionScriptOperator { -} - -.ActionScriptReserved { - color: #0033ff; - font-weight: bold; -} - -.ActionScriptString { - color: #990000; - font-weight: bold; -} - -.ActionScriptclass { - color: #9900cc; - font-weight: bold; -} - -.ActionScriptfunction { - color: #339966; - font-weight: bold; -} - -.ActionScriptinterface { - color: #9900cc; - font-weight: bold; -} - -.ActionScriptpackage { - color: #9900cc; - font-weight: bold; -} - -.ActionScripttrace { - color: #cc6666; - font-weight: bold; -} - -.ActionScriptvar { - color: #6699cc; - font-weight: bold; -} - +body { + font-family: Courier New, Courier, monospace; + font-size: medium; +} + +.CSS@font-face { + color: #990000; + font-weight: bold; +} + +.CSS@import { + color: #006666; + font-weight: bold; +} + +.CSS@media { + color: #663333; + font-weight: bold; +} + +.CSS@namespace { + color: #923196; +} + +.CSSComment { + color: #999999; +} + +.CSSDefault_Text { +} + +.CSSDelimiters { +} + +.CSSProperty_Name { + color: #330099; +} + +.CSSProperty_Value { + color: #3333cc; +} + +.CSSSelector { + color: #ff00ff; +} + +.CSSString { + color: #990000; +} + +.MXMLASDoc { + color: #3f5fbf; +} + +.MXMLComment { + color: #800000; +} + +.MXMLComponent_Tag { + color: #0000ff; +} + +.MXMLDefault_Text { +} + +.MXMLProcessing_Instruction { +} + +.MXMLSpecial_Tag { + color: #006633; +} + +.MXMLString { + color: #990000; +} + +.ActionScriptASDoc { + color: #3f5fbf; +} + +.ActionScriptBracket/Brace { +} + +.ActionScriptComment { + color: #009900; + font-style: italic; +} + +.ActionScriptDefault_Text { +} + +.ActionScriptMetadata { + color: #0033ff; + font-weight: bold; +} + +.ActionScriptOperator { +} + +.ActionScriptReserved { + color: #0033ff; + font-weight: bold; +} + +.ActionScriptString { + color: #990000; + font-weight: bold; +} + +.ActionScriptclass { + color: #9900cc; + font-weight: bold; +} + +.ActionScriptfunction { + color: #339966; + font-weight: bold; +} + +.ActionScriptinterface { + color: #9900cc; + font-weight: bold; +} + +.ActionScriptpackage { + color: #9900cc; + font-weight: bold; +} + +.ActionScripttrace { + color: #cc6666; + font-weight: bold; +} + +.ActionScriptvar { + color: #6699cc; + font-weight: bold; +} + http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/5ed4d983/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/SourceTree.html ---------------------------------------------------------------------- diff --git a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/SourceTree.html b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/SourceTree.html index 80281a9..9fc7773 100644 --- a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/SourceTree.html +++ b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/SourceTree.html @@ -14,116 +14,116 @@ See the License for the specific language governing permissions and limitations under the License. --> - - - - - - - - - - - - - - - - - - -
-

- To view this page ensure that Adobe Flash Player version - 10.0.0 or greater is installed. -

- -
- - - - + + + + + + + + + + + + + + + + + + +
+

+ To view this page ensure that Adobe Flash Player version + 10.0.0 or greater is installed. +

+ +
+ + + + http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/5ed4d983/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/index.html ---------------------------------------------------------------------- diff --git a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/index.html b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/index.html index c6b32f3..5297d7d 100644 --- a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/index.html +++ b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/index.html @@ -14,19 +14,19 @@ See the License for the specific language governing permissions and limitations under the License. --> - - - - - -Source of Sample-Adobe-EmailValidator - - - - - - - <body> - </body> - - + + + + + +Source of Sample-Adobe-EmailValidator + + + + + + + <body> + </body> + + http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/5ed4d983/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/source/TDFGradientBackgroundSkin.mxml.html ---------------------------------------------------------------------- diff --git a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/source/TDFGradientBackgroundSkin.mxml.html b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/source/TDFGradientBackgroundSkin.mxml.html index a5c4b7a..08e0ab0 100644 --- a/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/source/TDFGradientBackgroundSkin.mxml.html +++ b/TourDeFlex/TourDeFlex_content/flex4.0/Sample-Adobe-EmailValidator/srcview/source/TDFGradientBackgroundSkin.mxml.html @@ -14,44 +14,44 @@ See the License for the specific language governing permissions and limitations under the License. --> - - - - - -TDFGradientBackgroundSkin.mxml - - - -
<?xml version="1.0" encoding="utf-8"?>
-<s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009" 
-             xmlns:mx="library://ns.adobe.com/flex/mx" 
-             xmlns:s="library://ns.adobe.com/flex/spark">
-    
-    <fx:Metadata>
-        [("spark.components.Application")]
-    </fx:Metadata> 
-    
-    <s:states>
-        <s:State name="normal" />
-        <s:State name="disabled" />
-    </s:states>
-    
-    <s:layout>
-        <s:BasicLayout />
-    </s:layout>
-    
-    <s:Rect id="bg" width="100%" height="100%">
-        <s:fill>
-            <s:LinearGradient rotation="90">
-                <s:entries>
-                    <s:GradientEntry color="0x000000" ratio="0.00" />
-                    <s:GradientEntry color="0x323232" ratio="1.0" />
-                </s:entries>
-            </s:LinearGradient>    
-        </s:fill>
-    </s:Rect>
-    
-    <s:Group id="contentGroup" left="0" right="0" top="0" bottom="0" />
-</s:SparkSkin>
- + + + + + +TDFGradientBackgroundSkin.mxml + + + +
<?xml version="1.0" encoding="utf-8"?>
+<s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009" 
+             xmlns:mx="library://ns.adobe.com/flex/mx" 
+             xmlns:s="library://ns.adobe.com/flex/spark">
+    
+    <fx:Metadata>
+        [("spark.components.Application")]
+    </fx:Metadata> 
+    
+    <s:states>
+        <s:State name="normal" />
+        <s:State name="disabled" />
+    </s:states>
+    
+    <s:layout>
+        <s:BasicLayout />
+    </s:layout>
+    
+    <s:Rect id="bg" width="100%" height="100%">
+        <s:fill>
+            <s:LinearGradient rotation="90">
+                <s:entries>
+                    <s:GradientEntry color="0x000000" ratio="0.00" />
+                    <s:GradientEntry color="0x323232" ratio="1.0" />
+                </s:entries>
+            </s:LinearGradient>    
+        </s:fill>
+    </s:Rect>
+    
+    <s:Group id="contentGroup" left="0" right="0" top="0" bottom="0" />
+</s:SparkSkin>
+