[2/3] git commit: [flex-utilities] [refs/heads/develop] - FLEX-34393 installer should remember language

2014-10-19 Thread jmclean
FLEX-34393 installer should remember language


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

Branch: refs/heads/develop
Commit: 3190de228aec290836009b9c7a8834a0050ae1d9
Parents: f923fc1
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Oct 20 09:06:03 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Oct 20 09:06:03 2014 +1100

--
 installer/src/InstallApacheFlex.mxml | 62 +++
 1 file changed, 47 insertions(+), 15 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/3190de22/installer/src/InstallApacheFlex.mxml
--
diff --git a/installer/src/InstallApacheFlex.mxml 
b/installer/src/InstallApacheFlex.mxml
index cbb616d..a10fb4b 100644
--- a/installer/src/InstallApacheFlex.mxml
+++ b/installer/src/InstallApacheFlex.mxml
@@ -145,7 +145,7 @@ variables are not required because the locations of these 
pieces are known.
 import ws.tink.spark.skins.controls.InstallApacheFlexSkin;
 
 // embed us strings so we can always have them if we can't get to the 
locale files
-
[Embed(source=properties/en_US.properties,mimeType=application/octet-stream)]
+[Embed(source=properties/en_US.properties, 
mimeType=application/octet-stream)]
 private var en_US_Properties:Class;
 
 private var cleanedUp:Boolean;
@@ -160,6 +160,7 @@ variables are not required because the locations of these 
pieces are known.
 private var showDevBuilds:Boolean = false;
 private var usingDownloadCache:Boolean;
 private var downloadCacheFolder:String;
+private var userDefaultLanguage:String;
 private var firstTime:Boolean = true;
 private var legacy:Boolean = true;
 private var nocache:Boolean = true;
@@ -393,6 +394,7 @@ variables are not required because the locations of these 
pieces are known.
 var so:SharedObject = SharedObject.getLocal(InstallApacheFlex);
 usingDownloadCache = so.data.usingDownloadCache;
 downloadCacheFolder = so.data.downloadCacheFolder;
+userDefaultLanguage = so.data.userDefaultLanguage;
 }
 
 protected function handleApplicationComplete(event:FlexEvent):void
@@ -460,9 +462,9 @@ variables are not required because the locations of these 
pieces are known.
 
 private function getIndexOfEnUS():int
 {
-for (var i:int = 0; i  _langSelect.dataProvider.length; i++) 
+for (var i:int = 0; i  _langSelect.dataProvider.length; i++)
 {
-if(_langSelect.dataProvider.getItemAt(i).data == en_US)
+if (_langSelect.dataProvider.getItemAt(i).data == en_US)
 {
 return i;
 }
@@ -491,11 +493,22 @@ variables are not required because the locations of these 
pieces are known.
 {
 loadLanguage(en_US, loadUSComplete);
 }
+
 private function loadUSComplete():void
 {
-var userLocale:String = new 
StringTools(LocaleID.DEFAULT).actualLocaleIDName.replace(-, _);
+var userLocale:String;
+
+if (userDefaultLanguage)
+{
+userLocale = userDefaultLanguage;
+}
+else
+{
+userLocale = new 
StringTools(LocaleID.DEFAULT).actualLocaleIDName.replace(-, _);
+}
 
-if (languageOverride) {
+if (languageOverride)
+{
 userLocale = languageOverride;
 }
 
@@ -583,16 +596,28 @@ variables are not required because the locations of these 
pieces are known.
 {
 resourceManager.localeChain = [ 
ViewResourceConstants.DEFAULT_LANGUAGE ];
 
-var userLocale:String = new 
StringTools(LocaleID.DEFAULT).actualLocaleIDName.replace(-, _);
+var userLocale:String;
 
-if (languageOverride) {
+if (userDefaultLanguage)
+{
+userLocale = userDefaultLanguage;
+}
+else
+{
+userLocale = new 
StringTools(LocaleID.DEFAULT).actualLocaleIDName.replace(-, _);
+}
+
+if (languageOverride)
+{
 userLocale = languageOverride;
 }
 log(Using Locale:  + userLocale);
 
 var n:int = supportedLanguages.length;
-for 

git commit: [flex-utilities] [refs/heads/develop] - FLEX-34310 apply patch to add back button to installer

2014-10-19 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop aed9b1e58 - 3ed1b4f7c


FLEX-34310 apply patch to add  back button to installer


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

Branch: refs/heads/develop
Commit: 3ed1b4f7c12ed8abffad0acc479b71ada1a9ba03
Parents: aed9b1e
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Oct 20 10:26:39 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Oct 20 10:26:39 2014 +1100

--
 installer/src/InstallApacheFlex.mxml | 73 +++
 1 file changed, 55 insertions(+), 18 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/3ed1b4f7/installer/src/InstallApacheFlex.mxml
--
diff --git a/installer/src/InstallApacheFlex.mxml 
b/installer/src/InstallApacheFlex.mxml
index a10fb4b..7ce73b1 100644
--- a/installer/src/InstallApacheFlex.mxml
+++ b/installer/src/InstallApacheFlex.mxml
@@ -1096,6 +1096,27 @@ variables are not required because the locations of 
these pieces are known.
 
 protected function handleInstallBtnClick(event:MouseEvent):void
 {
+var airVersionID:String = 
airVersion.selectedItem.versionID;
+var flashVersionID:String = 
flashPlayerVersion.selectedItem.versionID;
+
+log(SDK version  + APACHE_FLEX_BIN_DISTRO_VERSION_DISPLAY);
+
+if (flexVersion.selectedItem.needsAIR)
+{
+if (airVersionID)
+log(AIR version  + airVersionID);
+else
+log(AIR version  + AIR_VERSION);
+}
+
+if (flexVersion.selectedItem.needsFlash)
+{
+if (flashVersionID)
+log(Flash Player version  + flashVersionID);
+else
+log(Flash Player version  + FLASH_PLAYER_VERSION);
+}
+
 if (flexSDKTxtInput.text == ) {
 log(_viewResourceConstants.INFO_ENTER_VALID_FLEX_SDK_PATH);
 } else {
@@ -1118,23 +1139,6 @@ variables are not required because the locations of 
these pieces are known.
 var flashVersionID:String = 
flashPlayerVersion.selectedItem.versionID;
 
 setXMLVariables(); // as AIR and Flash version may of changed
-   
-log(SDK version  + APACHE_FLEX_BIN_DISTRO_VERSION_DISPLAY);
-
-if (flexVersion.selectedItem.needsAIR) {
-
-if (airVersionID)
-log(AIR version  + airVersionID);
-else
-log(AIR version  + AIR_VERSION);
-}
-
-if (flexVersion.selectedItem.needsFlash) {
-if (flashVersionID)
-log(Flash Player version  + flashVersionID);
-else
-log(Flash Player version  + FLASH_PLAYER_VERSION);
-}
 
 if (!legacy)
 {
@@ -1152,7 +1156,24 @@ variables are not required because the locations of 
these pieces are known.
 }
 }
 
-protected function handleFirstStepNextBtnClick(event:MouseEvent):void
+   protected function 
handleFirstStepBackBtnClick(event:MouseEvent):void
+{
+showDefaultState();
+}
+
+protected function handleSecondStepBackBtnClick(event:MouseEvent):void
+{
+showDirectoryState();
+}
+
+protected function showDefaultState():void
+{
+zeroStepGroup.visible = true;
+directoryBtn.enabled = true;
+currentState = default;
+}
+
+   protected function 
handleFirstStepNextBtnClick(event:MouseEvent):void
 {
 // Quick check to see if the selected directory is writable
 try {
@@ -3337,6 +3358,14 @@ variables are not required because the locations of 
these pieces are known.
   click=browseForSDK(event)
   toolTip={_viewResourceConstants.INFO_SELECT_DIRECTORY}/
 s:controlBarContent
+s:Button id=firstStepBackBtn
+  styleName=mainBtnStyle
+  width={_standardButtonWidth}
+  height=32
+  right=10
+  label={_viewResourceConstants.BTN_LABEL_BACK}
+  enabled=true
+  

svn commit: r6796 - in /dev/flex/squiggly/1.1: ./ rc0/

2014-10-19 Thread jmclean
Author: jmclean
Date: Mon Oct 20 02:54:27 2014
New Revision: 6796

Log:
Add Squiggly 1.1 RC0

Added:
dev/flex/squiggly/1.1/
dev/flex/squiggly/1.1/rc0/
dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.tar.gz   (with props)
dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.tar.gz.asc
dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.tar.gz.md5
dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.zip   (with props)
dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.zip.asc
dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.zip.md5
dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-src.tar.gz   (with props)
dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-src.tar.gz.asc
dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-src.tar.gz.md5
dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-src.zip   (with props)
dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-src.zip.asc
dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-src.zip.md5

Added: dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.tar.gz
==
Binary file - no diff available.

Propchange: dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.tar.gz
--
svn:mime-type = application/octet-stream

Added: dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.tar.gz.asc
==
--- dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.tar.gz.asc (added)
+++ dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.tar.gz.asc Mon Oct 
20 02:54:27 2014
@@ -0,0 +1,18 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG/MacGPG2 v2
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJURHNzAAoJEODyhZOu6tFRMx0P/2lziu75U7Y9pmeldxUpTmEf
+IIKHWisuYWLxSWNuuXOddxJMDkuspUjpe3ivk6MSBO2RksepBiLbJHMgnWpWQiYF
+pfu6eLOI+4wHMRNBbDlPtmnrQK2pxOXX86zbw+IwfOruXc5PgVxzKFnNTWcMpg08
+3Dv0999JXi1zYZ9d212tkcdGNYOscFvxjdKc31OIeYv/iHVHRn38z7xf/ceyWbyO
+/cc5JZgucyrZ7X94G8Flu7FH0R6W7/EOKcpZwNQhqy07iKiGYJxMw4c2rw6ULqDs
+b21UMRFpY/s7TYRFkZjp23IKU3TCF+Kd4Z//gmHjFJyDh9F6rFKcEr+Ew+uREUFW
+V/HWG/So1qPay2CAFdPvUkgHFnLXYA7mk1cqdXbPK6f4yrDKhPc1yB2N5TpVV7w8
+iFp1N4ASufqcFk1V5FNDXZU2QMTNXNc2m/m1bRMIKJDJ8/VR+BUiq2ARiqCweunm
+FlKmKNVhV0UWS6XD5ryv4RHR/n3GkozgbyjrN4dlTojurzZm4WSachkr2mLQA4hA
+MgyuKZDvWPU5dXf2s1L3SsUmnHXvl+Pd48V5VyzJJ8N3/abznsSp3iWFYsJ4dVJC
+GiksBUebq72Tf4D9Tqw97Yy9ACwUCqc8zoDpl40rHlTjqLcMP0dlON0G2er+ukAI
+BjEJwyhjeUT2qASAFDhG
+=i8EB
+-END PGP SIGNATURE-

Added: dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.tar.gz.md5
==
--- dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.tar.gz.md5 (added)
+++ dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.tar.gz.md5 Mon Oct 
20 02:54:27 2014
@@ -0,0 +1 @@
+75edb60fe484118c9321efa75308de2c

Added: dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.zip
==
Binary file - no diff available.

Propchange: dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.zip
--
svn:mime-type = application/octet-stream

Added: dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.zip.asc
==
--- dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.zip.asc (added)
+++ dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.zip.asc Mon Oct 20 
02:54:27 2014
@@ -0,0 +1,18 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG/MacGPG2 v2
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJURHNzAAoJEODyhZOu6tFR7qQQAJPxoHpR5xYL+WM5p/Jgw2VW
+PA22JoIm8+onsSHtEad5Nev/JPRbb3fDTOH8Laf4hFmZv1fkrz7Ld2nNbc9IIyHM
+xc7v1lOzBFiTIFmfXY5zYaHljoNwnayiRbHxjtHiVgmO5QPcOyoNpQ8JP6iH8ie+
+U4175Wu6fc+2wKlGmdA78h9PA9WI25obAV1g9tzsNTaXPDrZOGJtoo/l1w76f2gu
+7r4j5jHnUtMqUlQSRFR4j/wDP8FbsFKvQA7y61K+VQb9JBlJNO83onwg4tnfavwt
+3BMhM20EUGG9BD6hV7qjFRxKb4uZ6pbhQhhwN3YVe4oJYZ8Y3iU2HiXxsakAvJSv
+6jE1fOpnNK6rMKzg9npxtpj6wEhE+O6l7wMuV1oNU4+pZA7RXgDPctIEFeMpbdIO
+P0sp9GsxYdNhQPeSbw0xx4EJpDHdfeSPVKbhIkjBmL4oa7Ia2TJh1pCnCAWIt67/
+/2MMtf4gaKAnTiNq17NwljP2P6QGM87I0duPtKz9OV6F+yirD5UWnMDGUlXddbq3
+B+EmJz8gsy1L/ZyjU+9oRzcHB6T+yFPjVRWJV8oA4ctpdaiSTzNq82GV26ZzzFMu
+5z/b9KjASAp+mb3FmN46vFsCc3+RxN0zd9NDAQYVUUL3FYVWYdWlrd7Jbi0pJPIk
+2tjfn2KU3/zgNong5Oqb
+=Km2F
+-END PGP SIGNATURE-

Added: dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.zip.md5
==
--- dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.zip.md5 (added)
+++ dev/flex/squiggly/1.1/rc0/apache-flex-squiggly-1.1-bin.zip.md5 Mon Oct 20 
02:54:27 2014
@@ -0,0 +1 @@
+2ecc30028abae62f56f494898af68ac9

Added: dev/flex/squiggly

svn commit: r6797 - in /dev/flex/squiggly/1.1/rc0: README RELEASE_NOTES

2014-10-19 Thread jmclean
Author: jmclean
Date: Mon Oct 20 02:57:23 2014
New Revision: 6797

Log:
Added read me and release notes

Added:
dev/flex/squiggly/1.1/rc0/README
dev/flex/squiggly/1.1/rc0/RELEASE_NOTES

Added: dev/flex/squiggly/1.1/rc0/README
==
--- dev/flex/squiggly/1.1/rc0/README (added)
+++ dev/flex/squiggly/1.1/rc0/README Mon Oct 20 02:57:23 2014
@@ -0,0 +1,120 @@
+
+  Apache Flex Squiggly is a ActionScript spell checking library.
+
+  This application is based on work donated by Adobe.
+  
+==
+Initial Setup Required
+==

+  
+The environment variable FLEX_HOME needs to be set to the absolute path of 
the Apache
+Flex SDK. If you prefer you can set this in env.properties.
+  
+==
+How to build Squiggly using ant (no IDE is required)
+==
+
+1.  On Linux or Mac un tar/gzip the source distribution:
+   tar -zxvf apache-flex-squiggly-1.1.tar.gz
+   Or if on windows unzip 
+   apache-flex-squiggly-1.1.zip
+
+2.  In the base directory, run:
+ant compile
+
+3. The compiled swcs can be found in the main/libs directory 
+
+4. To optionally create a release source package, run:
+   ant package
+
+5. To remove all of the compiled swcs:
+   ant clean
+   
+==
+Some other useful ant targets
+==
 
+   
+There are several other useful ant targets.
+
+compile-swc compile squiggly swcs
+package package up all source files
+generate-docs   generate asdocs
+package-binary-tar  tar up all source files and swcs
+package-binary-zip  zip up all source files and swcs
+package-source-tar  tar up all source files
+package-source-zip  zip up all source files
+   
+==
+How to check the code out of Git
+==
+
+1.  Check out the the code from the Apache Flex utilities project
+git clone https://git-wip-us.apache.org/repos/asf/flex-utilities.git 
flex-utilities
+cd flex-utilities
+git checkout develop 
+
+2.  Change directory to:
+   cd Squiggly
+   
+==
+How to use the Squiggly SDK
+==
+
+Please read the ASDocs (found in docs directory) first to understand the
+classes in Squiggly.
+
+If you are using the SpellChecker class directly, you need.
+- SpellingEngine.swc in [YourProject]/libs folder, you can find it from ./libs
+- Dictionary files in [YourProject]/src folder
+
+You can obtain en_US, en_CA and en_GB dictionaries under a BSD/MIT-like license
+from SCOWL (and friends):
+   http://wordlist.aspell.net/dicts
+   https://github.com/kevina/wordlist
+   
+For your convenience the en_US and en_GB dictionaries have been included in the
+source and binary releases.  
+
+You can obtain other dictionary files from:
+http://wordlist.aspell.net/other-dicts
+http://extensions.openoffice.org
+http://hunspell.sourceforge.net
+
+But note that many of these dictionaries are under LPGL licenses.
+
+If you are using the simple UI integration feature (SpellUI class), in addition
+to what mentioned above, you also need:
+- SpellingConfig.xml in [YourProject]/src
+- SpellingUI.swc in [YourProject]/src
+- SpellingUIEx.swc (if you need spark support in Flex 4) in [YourProject]/libs 
+
+You can download dictionaries and use those by editing SpellingConfig.xml.
+
+The default name of the config file has changed from AdobeSpellingConfig.xml to
+SpellingConfig.xml.
+
+Here's the content of SpellingConfig.xml, each entry maps the languageCode with
+the relative path for resource files. 
+
+SpellingConfig
+  LanguageResource language=English languageCode=en_US
+ruleFile=dict/en_US/en_US.aff dictionaryFile=dict/en_US/en_US.dic/
+/SpellingConfig
+
+So if you are adding Spanish, you just need to get the dictionary files 
es_ES.aff
+and es_ES.dic and add one line to your config file.
+  LanguageResource language=Spanish languageCode=es_ES
+ ruleFile=dict/es_ES/es_ES.aff dictionaryFile=dict/es_ES/es_ES.dic/
+
+Note that you can put the dictionaries in any location

Git Push Summary

2014-10-19 Thread jmclean
Repository: flex-utilities
Updated Tags:  refs/tags/apache-flex-squiggly-1.1-rc0 [created] 30751215d


git commit: [flex-utilities] [refs/heads/develop] - fix layout so it's more like other examples

2014-10-18 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop 6fd69880c - 57cf097b3


fix layout so it's more like other examples


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

Branch: refs/heads/develop
Commit: 57cf097b3066b393ae19a59f75397fb8b03caf3d
Parents: 6fd6988
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 18 18:02:54 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 18 18:02:54 2014 +1100

--
 .../src/mx/charts/BubbleChartExample.mxml   |  3 +--
 .../src/mx/charts/CandlestickChartExample.mxml  |  6 ++
 .../src/mx/charts/Column_BarChartExample.mxml   | 21 +++-
 .../src/mx/charts/HLOCChartExample.mxml |  3 +--
 .../src/mx/charts/PieChartExample.mxml  |  8 ++--
 .../src/mx/charts/PlotChartExample.mxml | 12 ---
 6 files changed, 17 insertions(+), 36 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/57cf097b/TourDeFlex/TourDeFlex3/src/mx/charts/BubbleChartExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/mx/charts/BubbleChartExample.mxml 
b/TourDeFlex/TourDeFlex3/src/mx/charts/BubbleChartExample.mxml
index d445d68..b30452f 100755
--- a/TourDeFlex/TourDeFlex3/src/mx/charts/BubbleChartExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/mx/charts/BubbleChartExample.mxml
@@ -56,8 +56,7 @@
 yField=Expenses 
 radiusField=Amount
 fill={sc1}
-stroke={stroke1}
-/
+stroke={stroke1} /
 /mx:series
 /mx:BubbleChart
 mx:Legend dataProvider={bubblechart}/

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/57cf097b/TourDeFlex/TourDeFlex3/src/mx/charts/CandlestickChartExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/mx/charts/CandlestickChartExample.mxml 
b/TourDeFlex/TourDeFlex3/src/mx/charts/CandlestickChartExample.mxml
index f85b34f..adcd8a7 100755
--- a/TourDeFlex/TourDeFlex3/src/mx/charts/CandlestickChartExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/mx/charts/CandlestickChartExample.mxml
@@ -61,8 +61,7 @@
 paddingRight=5 
 paddingLeft=5 
 showDataTips=true
-dataProvider={expensesAC}
-
+dataProvider={expensesAC}
 mx:verticalAxis
 mx:LinearAxis id=vaxis baseAtZero=false title=Price/
 /mx:verticalAxis
@@ -84,8 +83,7 @@
 fill={up}
 declineFill={down}
 stroke={wick}
-boxStroke={box}
-/
+boxStroke={box} /
 /mx:series
 /mx:CandlestickChart
 /mx:Panel

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/57cf097b/TourDeFlex/TourDeFlex3/src/mx/charts/Column_BarChartExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/mx/charts/Column_BarChartExample.mxml 
b/TourDeFlex/TourDeFlex3/src/mx/charts/Column_BarChartExample.mxml
index 693407d..a48fe5e 100755
--- a/TourDeFlex/TourDeFlex3/src/mx/charts/Column_BarChartExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/mx/charts/Column_BarChartExample.mxml
@@ -54,8 +54,7 @@
 paddingLeft=5 
 paddingRight=5 
 showDataTips=true 
-dataProvider={medalsAC}
-
+dataProvider={medalsAC}
 mx:horizontalAxis
 mx:CategoryAxis categoryField=Country/
 /mx:horizontalAxis
@@ -66,22 +65,19 @@
 yField=Gold 
 displayName=Gold
 fill={sc1}
-stroke={s1}
-/
+stroke={s1} /
 mx:ColumnSeries 
 xField=Country 
 yField=Silver 
 displayName=Silver
 fill={sc2}
-stroke={s2}
-/
+stroke={s2} /
 mx:ColumnSeries 
 xField=Country 
 yField=Bronze 
 displayName=Bronze
 fill={sc3}
-stroke={s3}
-/
+stroke={s3} /
 /mx:series
 /mx:ColumnChart
 
@@ -101,22 +97,19 @@
 

[1/9] git commit: [flex-utilities] [refs/heads/develop] - FLEX-34485 make example consistent

2014-10-18 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop 57cf097b3 - 186a01bec


FLEX-34485 make example consistent


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

Branch: refs/heads/develop
Commit: 8e31c9fddb225265b874b0314f53af0d352976d9
Parents: 57cf097
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 18 18:18:08 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 18 18:18:08 2014 +1100

--
 .../src/apache/ApacheFlex4_10_0.mxml| 61 +-
 .../src/apache/ApacheFlex4_11_0.mxml| 63 +-
 .../src/apache/ApacheFlex4_12_1.mxml| 67 ++--
 .../src/apache/ApacheFlex4_13_0.mxml| 59 -
 .../src/apache/ApacheFlex4_14_0.mxml| 57 +
 .../TourDeFlex3/src/apache/ApacheFlex4_8_0.mxml | 55 
 .../TourDeFlex3/src/apache/ApacheFlex4_9_0.mxml | 67 ++--
 .../src/apache/containers/CalloutExample.mxml   |  4 +-
 .../apache/controls/MaskedTextInputExample.mxml |  4 +-
 .../controls/SparkRichTextEditorExample.mxml|  8 ++-
 .../formatters/PostCodeFormatterExample.mxml|  4 +-
 .../src/apache/i18n/DateExample.mxml|  4 +-
 .../src/apache/i18n/LocaleExample.mxml  |  9 +--
 .../src/apache/i18n/MillisecondExample.mxml |  6 +-
 .../src/apache/i18n/NumericStepperExample.mxml  |  6 +-
 .../src/apache/i18n/ScientificExample.mxml  |  6 +-
 .../src/apache/i18n/TimeZoneExample.mxml|  6 +-
 17 files changed, 246 insertions(+), 240 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/8e31c9fd/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_10_0.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_10_0.mxml 
b/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_10_0.mxml
index e8fdb6b..1a7f786 100644
--- a/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_10_0.mxml
+++ b/TourDeFlex/TourDeFlex3/src/apache/ApacheFlex4_10_0.mxml
@@ -20,35 +20,36 @@
 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
-   s:layout
-   s:VerticalLayout paddingLeft=20 paddingTop=20 /
-   /s:layout
-   
-   s:HGroup
-   s:Image source=@Embed('/assets/ApacheFlexLogo.png') 
width=50 height=50 /
-   s:VGroup height=100% verticalAlign=middle
-   s:Label text=Apache Flex 4.10 fontSize=20 
fontWeight=bold /
-   s:Label text=Released Aug 6, 2013 / 
-   /s:VGroup 
-   /s:HGroup
 
-   s:RichText width=100%
-   s:p /
-   s:pApache Flex community releases Flex 4.10.0./s:p
-   s:p /
-   s:pDifferences and highlights include:/s:p
-   s:list
-   s:liSupport for latest versions of Flash Player (up 
to 11.8) and AIR runtimes (up to 3.8)/s:li
-   s:liImproved support for older Flash Player versions 
(down to 10.2)/s:li
-   s:liLinux support/s:li
-   s:li15 new Spark components/s:li
-   s:liAdvanced telemetry support/s:li
-   s:li480 dpi mobile skins/s:li
-   s:liOver 200 bugs fixeds/s:li
-   /s:list
-   s:p /
-   s:pFor a full list of changes please see the README./s:p
-   s:p /
-   /s:RichText
-   s:Label text=Content from Wikipedia licenced under a Creative Commons 
Attribution-ShareAlike 3.0 Unported License fontSize=9 /
+   s:Panel title=Apache Flex 4.10 width=100% height=100%   
+   s:layout
+   s:VerticalLayout paddingLeft=10 paddingRight=10 
paddingTop=10 paddingBottom=10/
+   /s:layout
+   s:HGroup
+   s:Image source=@Embed('/assets/ApacheFlexLogo.png') 
width=50 height=50 /
+   s:VGroup height=100% verticalAlign=middle
+   s:Label text=Apache Flex 4.10 fontSize=20 
fontWeight=bold /
+   s:Label text=Released Aug 6, 2013 / 
+   /s:VGroup 
+   /s:HGroup
+   s:RichText width=100%
+   s:p /
+   s:pApache Flex community releases Flex 4.10.0./s:p
+   s:p /
+   s:pDifferences and 

[9/9] git commit: [flex-utilities] [refs/heads/develop] - FLEX-34485 make examples consistent

2014-10-18 Thread jmclean
FLEX-34485 make examples consistent


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

Branch: refs/heads/develop
Commit: 186a01bec095f3b23abf9af18daf40b0481edb73
Parents: e11842b
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 18 18:21:36 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 18 18:21:36 2014 +1100

--
 .../src/spark/charts/AreaChartExample.mxml  |  11 +-
 .../src/spark/charts/BarChartExample.mxml   |  11 +-
 .../src/spark/charts/BubbleChartExample.mxml|  15 +--
 .../spark/charts/CandleStickChartExample.mxml   |  15 +--
 .../src/spark/charts/ColumnChartExample.mxml|  17 +--
 .../src/spark/charts/HLOCChartExample.mxml  |  15 +--
 .../src/spark/charts/LineChartExample.mxml  |  15 +--
 .../src/spark/charts/PieChartExample.mxml   |  15 +--
 .../src/spark/charts/PlotChartExample.mxml  |  15 +--
 .../spark/charts/SeriesInterpolateExample.mxml  |  19 +---
 .../src/spark/charts/SeriesSlideExample.mxml|  19 +---
 .../src/spark/charts/SeriesZoomExample.mxml |  19 +---
 .../src/spark/components/SearchExample.mxml |  16 +--
 .../spark/components/VideoPlayerExample.mxml|  16 +--
 .../components/VideoPlayerModuleLoader.mxml |   3 +-
 .../src/spark/containers/BorderExample.mxml |   9 +-
 .../src/spark/containers/GroupExample.mxml  |  59 +-
 .../src/spark/containers/PanelExample.mxml  |  82 ++---
 .../src/spark/containers/SampleHGroup.mxml  |  16 +--
 .../src/spark/containers/SampleVGroup.mxml  |  15 +--
 .../SampleVerticalHorizontalAlign.mxml  |  58 +-
 .../SkinnableDataContainerExample.mxml  |   9 +-
 .../spark/containers/TabNavigator1Example.mxml  |  19 +---
 .../spark/containers/TabNavigator2Example.mxml  |   2 +-
 .../src/spark/containers/TileGroupExample.mxml  |   7 +-
 .../src/spark/controls/AccordionExample.mxml|  21 ++--
 .../spark/controls/AdvancedDatagridExample.mxml |  19 ++--
 .../src/spark/controls/ButtonBarExample.mxml|  17 ++-
 .../src/spark/controls/ButtonExample.mxml   |  47 
 .../src/spark/controls/CheckboxExample.mxml |  43 ---
 .../src/spark/controls/ColorPickerExample.mxml  |  14 +--
 .../src/spark/controls/ComboBoxExample.mxml |  33 +++---
 .../src/spark/controls/CustomDataGridSkin.mxml  |   8 +-
 .../controls/DataGridCustomRendererExample.mxml |   2 +-
 .../DataGridCustomRendererPrepareExample.mxml   |   2 +-
 .../src/spark/controls/DataGridExample.mxml |  19 +---
 .../src/spark/controls/DataGroupExample.mxml|  14 +--
 .../src/spark/controls/DateChooserExample.mxml  |  27 ++---
 .../src/spark/controls/DateFieldExample.mxml|  27 ++---
 .../src/spark/controls/DropdownExample.mxml |  11 +-
 .../src/spark/controls/FormExample.mxml |  18 +--
 .../src/spark/controls/ImageExample.mxml|  33 ++
 .../src/spark/controls/LinkBarExample.mxml  |  17 +--
 .../src/spark/controls/LinkButtonExample.mxml   |  19 +---
 .../spark/controls/ListDataPagingExample.mxml   |   2 +-
 .../src/spark/controls/ListExample.mxml |  73 ++--
 .../src/spark/controls/MenuExample.mxml |  13 ++-
 .../spark/controls/NumericStepperExample.mxml   |  68 ++-
 .../src/spark/controls/OLAPDataGridExample.mxml |  19 +---
 .../src/spark/controls/PopUpAnchor1Example.mxml |  52 +
 .../src/spark/controls/PopUpAnchor2Example.mxml |  78 ++---
 .../src/spark/controls/PopupButtonExample.mxml  |  17 +--
 .../src/spark/controls/ProgressBarExample.mxml  |  21 +---
 .../src/spark/controls/RadioButtonExample.mxml  |  16 +--
 .../spark/controls/RichEditableTextExample.mxml |  21 ++--
 .../src/spark/controls/SWFLoaderExample.mxml|  19 +---
 .../spark/controls/SampleHelpFormExample.mxml   |  49 
 .../controls/SampleSequenceFormExample.mxml |  37 +++---
 .../spark/controls/SampleSimpleFormExample.mxml |  36 +++---
 .../controls/SampleStackedFormExample.mxml  |  39 ---
 .../src/spark/controls/ScrollBarExample.mxml|   9 +-
 .../src/spark/controls/Scroller1Example.mxml|   9 +-
 .../src/spark/controls/Scroller2Example.mxml|  64 +--
 .../controls/SimpleTitleWindowExample.mxml  |   8 +-
 .../src/spark/controls/SliderExample.mxml   |  60 +-
 .../src/spark/controls/SpinnerExample.mxml  |  50 
 .../src/spark/controls/TabNavigatorExample.mxml |  16 +--
 .../src/spark/controls/TextAreaExample.mxml |  95 
 .../src/spark/controls/TextInputExample.mxml|  94 +++
 .../src/spark/controls/TextLayout1Example.mxml  |   8 +-
 .../src/spark/controls/TextLayout2Example.mxml  |  16 ++-
 

[6/9] FLEX-34485 make examples consistent

2014-10-18 Thread jmclean
http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/186a01be/TourDeFlex/TourDeFlex3/src/spark/i18n/SparkCollatorExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/spark/i18n/SparkCollatorExample.mxml 
b/TourDeFlex/TourDeFlex3/src/spark/i18n/SparkCollatorExample.mxml
index 96af06a..fd132c9 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/i18n/SparkCollatorExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/i18n/SparkCollatorExample.mxml
@@ -21,28 +21,6 @@
   xmlns:s=library://ns.adobe.com/flex/spark
   xmlns:mx=library://ns.adobe.com/flex/mx
   width=100% height=100% 
creationComplete=matchRB_clickHandler()
-   fx:Style
-   @namespace s library://ns.adobe.com/flex/spark;
-   @namespace mx library://ns.adobe.com/flex/mx;
-   s|Label {
-   color: #FF;
-   font-weight: bold;
-   }
-   #titleL {
-   font-size: 20;
-   }
-   s|ComboBox {
-   alternating-item-colors: #424242;
-   }
-   
-   s|Form {
-   background-color: #424242;
-   }
-   
-   s|List {
-   alternating-item-colors: #424242;
-   }
-   /fx:Style

fx:Script
![CDATA[
@@ -114,52 +92,51 @@
}
]]
/fx:Script
+   
fx:Declarations
-   !-- Place non-visual elements (e.g., services, value objects) 
here --
s:SortingCollator id=sortingCollator/
s:MatchingCollator id=matchingCollator/
/fx:Declarations
-   s:layout
-   s:VerticalLayout/
-   /s:layout

-   s:Scroller id=scroller width=100% height=100%
-   s:Group id=myGroup
-   s:Form id=myForm
-   s:Label id=titleL text=Spark Collator/
-   s:Label text=Customize Collator options and 
find out the string sorting results: /
-   s:Spacer height=15/
-   
-   s:FormItem label=Collator Type: 
toolTip=Please select a Collator type first!
-   s:HGroup
-   s:RadioButton id=sortRB 
groupName=collatorType label=SortingCollator click=sortRB_clickHandler()/
-   s:RadioButton id=matchRB 
groupName=collatorType label=MatchingCollator selected=true 
click=matchRB_clickHandler()/
-   /s:HGroup
-   /s:FormItem
-   s:FormItem label=Locale:
-   s:ComboBox id=localeCB 
dataProvider={_locales} selectedIndex=0 
-   
change=_collatorInstance.setStyle('locale',localeCB.selectedItem); sortStr()/
-   /s:FormItem
-   s:FormItem label=Collator Options: 
toolTip=Customize below options to see the sorting result.
-   s:CheckBox id=ignCaseCB 
label=ignoreCase selected={_collatorInstance.ignoreCase} 
-   
change=_collatorInstance.ignoreCase = ignCaseCB.selected; sortStr()/
-   s:CheckBox id=ignDiacriticsCB 
label=ignoreDiacritics selected={_collatorInstance.ignoreDiacritics} 
-   
change=_collatorInstance.ignoreDiacritics = ignDiacriticsCB.selected; 
sortStr()/
-   s:CheckBox id=ignSymbolsCB 
label=ignoreSymbols selected={_collatorInstance.ignoreSymbols} 
-   
change=_collatorInstance.ignoreSymbols = ignSymbolsCB.selected; sortStr()/
-   s:CheckBox id=ignKanaTypeCB 
label=ignoreKanaType selected={_collatorInstance.ignoreKanaType} 
-   
change=_collatorInstance.ignoreKanaType = ignKanaTypeCB.selected; sortStr()/
-   s:CheckBox id=ignCharacterWidthCB 
label=ignoreCharacterWidth 
selected={_collatorInstance.ignoreCharacterWidth} 
-   
change=_collatorInstance.ignoreCharacterWidth = ignCharacterWidthCB.selected; 
sortStr()/
-   /s:FormItem
-   s:Label 
text=/
+   s:Panel title=Spark Collator 

[8/9] FLEX-34485 make examples consistent

2014-10-18 Thread jmclean
http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/186a01be/TourDeFlex/TourDeFlex3/src/spark/controls/DropdownExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/DropdownExample.mxml 
b/TourDeFlex/TourDeFlex3/src/spark/controls/DropdownExample.mxml
index d94429f..7227822 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/DropdownExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/DropdownExample.mxml
@@ -66,13 +66,10 @@
]]
/fx:Script

-   !-- Note: A custom panel skin is used for the Tour de Flex samples and 
is included in the
-   source tabs for each sample.--
-   s:Panel title=DropDownList Sample 
-width=100% height=100% 
-skinClass=skins.TDFPanelSkin
+   s:Panel title=DropDownList Sample width=100% height=100%
+   
s:VGroup width=100% height=100% left=120 top=5
-   s:Label text=RJ's Warehouse Price Checker 
fontSize=18 color=0x014f9f/
+   s:Label text=RJ's Warehouse Price Checker 
fontSize=18 /
s:DropDownList id=list1 width=50% 
dataProvider={depts} labelField=label 
prompt=Select Category

change=handleDepartmentSelected(event)/
@@ -81,7 +78,7 @@
mx:Spacer height=10/
s:Label fontSize=14 color=0x336699 text=The price 
of item: {list2.selectedItem.label} is: ${list1.selectedItem.data} 
verticalAlign=bottom/
/s:VGroup
-   s:Label top=10 right=10 width=250 
verticalAlign=justify color=#323232 
+   s:Label top=10 right=10 width=250 
verticalAlign=justify 
  text=The DropDownList control 
contains a drop-down list from which the user can select a single value. Its 
functionality is very similar to that of the SELECT form element in HTML.
 The DropDownList control consists of the anchor button, prompt area, and 
drop-down-list, Use the anchor button to open and close the drop-down-list. The 
prompt area displays a prompt String, or the selected item in the 
drop-down-list./
/s:Panel

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/186a01be/TourDeFlex/TourDeFlex3/src/spark/controls/FormExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/FormExample.mxml 
b/TourDeFlex/TourDeFlex3/src/spark/controls/FormExample.mxml
index 79af492..3895ae7 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/FormExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/FormExample.mxml
@@ -19,8 +19,7 @@
 --
 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
+  xmlns:mx=library://ns.adobe.com/flex/mx

fx:Declarations
fx:Model id=checkModel
@@ -43,23 +42,14 @@
mx:ZipCodeValidator source={zip} property=text/

/fx:Declarations
-
-
-   s:layout
-   s:HorizontalLayout horizontalAlign=center /
-   /s:layout

-   s:Panel title=Form Container: Moving from one form field to another 
triggers the validator color=0x00 
-borderAlpha=0.15 
-width=600
+   s:Panel title=Form Container: Moving from one form field to another 
triggers the validator width=100% height=100%

s:layout
-   s:VerticalLayout horizontalAlign=center 
- paddingLeft=10 
paddingRight=10 
- paddingTop=10 
paddingBottom=10/
+   s:VerticalLayout paddingLeft=10 paddingRight=10 
paddingTop=10 paddingBottom=10/
/s:layout
 
-mx:Form width=100% color=0x323232 paddingTop=0
+mx:Form width=100% paddingTop=0
 mx:FormHeading fontSize=10  label=Enter values into the form. 
paddingTop=0 /
 
 mx:FormItem label=First name

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/186a01be/TourDeFlex/TourDeFlex3/src/spark/controls/ImageExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/ImageExample.mxml 
b/TourDeFlex/TourDeFlex3/src/spark/controls/ImageExample.mxml
index f3473b7..35379c4 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/ImageExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/ImageExample.mxml
@@ -19,8 +19,7 

[3/9] git commit: [flex-utilities] [refs/heads/develop] - change back to black border

2014-10-18 Thread jmclean
change back to black border


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

Branch: refs/heads/develop
Commit: 8292633d5d0463db7be01445607313a5a74a71bb
Parents: a90f965
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 18 18:18:46 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 18 18:18:46 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExExample.mxml | 2 +-
 TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExample.mxml   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/8292633d/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExExample.mxml 
b/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExExample.mxml
index 04b29a5..53ab6f6 100644
--- a/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExExample.mxml
@@ -25,7 +25,7 @@
]]
/fx:Script
 
-   s:Panel title=Spell Check width=100% height=100% 
borderAlpha=0.15
+   s:Panel title=Spell Check width=100% height=100%
s:layout
s:VerticalLayout paddingLeft=20 paddingTop=20 
gap=10 /
/s:layout

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/8292633d/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExample.mxml 
b/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExample.mxml
index 5b36ef3..62684aa 100644
--- a/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExample.mxml
@@ -33,7 +33,7 @@ limitations under the License.
}
]]
 /mx:Script
-   s:Panel title=Spell Check width=100% height=100% 
borderAlpha=0.15
+   s:Panel title=Spell Check width=100% height=100%
s:layout
s:VerticalLayout paddingLeft=20 paddingTop=20 
gap=10 /
/s:layout



[5/9] FLEX-34485 make examples consistent

2014-10-18 Thread jmclean
http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/186a01be/TourDeFlex/TourDeFlex3/src/spark/other/FilterExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/spark/other/FilterExample.mxml 
b/TourDeFlex/TourDeFlex3/src/spark/other/FilterExample.mxml
index b7887d1..87a1f3c 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/other/FilterExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/other/FilterExample.mxml
@@ -19,8 +19,7 @@
 --
 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
+  xmlns:mx=library://ns.adobe.com/flex/mx
   creationComplete=init()

fx:Script
@@ -54,11 +53,7 @@
}
]]
/fx:Script
-   
-   s:layout
-   s:HorizontalLayout verticalAlign=middle 
horizontalAlign=center /
-   /s:layout
-   
+
fx:Declarations
!--filters--
s:GlowFilter id=glow blurX=12 blurY=12 color=#88AEF7 
quality=2 strength=1/
@@ -68,9 +63,7 @@
/fx:Declarations

s:Panel title=Filters Samples
-width=600 height=100%
-color=0x00 
-borderAlpha=0.15
+width=100% height=100%

s:layout
s:VerticalLayout horizontalAlign=center 
@@ -81,15 +74,15 @@
s:Label id=textSample text=SAMPLE TEXT color=0x00 
 fontWeight=bold fontSize=40 
filters={[bevel]} /

-   s:HGroup width=100% color=#323232 horizontalAlign=center
+   s:HGroup width=100% horizontalAlign=center
s:CheckBox id=blurBox label=Blur 
click=filterHandler(event) /
s:CheckBox id=glowBox label=Glow 
click=filterHandler(event) /
s:CheckBox id=shadowBox label=Drop Shadow 
click=filterHandler(event) /
s:CheckBox id=bevelBox label=Bevel selected=true 
click=filterHandler(event) /
/s:HGroup

-   s:Label id=dynamicText text=0 color=#323232 
fontSize=18 filters={[bevel]} /
+   s:Label id=dynamicText text=0 fontSize=18 
filters={[bevel]} /

/s:Panel

-/s:Application
\ No newline at end of file
+/s:Application

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/186a01be/TourDeFlex/TourDeFlex3/src/spark/other/RepeaterExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/spark/other/RepeaterExample.mxml 
b/TourDeFlex/TourDeFlex3/src/spark/other/RepeaterExample.mxml
index d5a7112..8e5cc19 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/other/RepeaterExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/other/RepeaterExample.mxml
@@ -19,8 +19,7 @@
 --
 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
+  xmlns:mx=library://ns.adobe.com/flex/mx

fx:Script
 ![CDATA[
@@ -33,21 +32,13 @@
 ]]
  /fx:Script

-   s:layout
-   s:HorizontalLayout horizontalAlign=center /
-   /s:layout
-
-   s:Panel title=Repeater Example color=0x00 
-borderAlpha=0.15 
-width=600
+   s:Panel title=Repeater Example width=100% height=100%

s:layout
-   s:VerticalLayout horizontalAlign=center 
- paddingLeft=10 
paddingRight=10 
- paddingTop=10 
paddingBottom=10/
+   s:VerticalLayout paddingLeft=10 paddingRight=10 
paddingTop=10 paddingBottom=10 /
/s:layout
  
- s:Label width=100% color=0x323232  textAlign=center
+ s:Label width=100%
 text=Use the Repeater class to create multi-Button controls in a 
Tile container./
 
 mx:Tile direction=horizontal borderStyle=inset horizontalGap=10 
verticalGap=10 color=0x323232

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/186a01be/TourDeFlex/TourDeFlex3/src/spark/other/ScrollBarsExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/spark/other/ScrollBarsExample.mxml 
b/TourDeFlex/TourDeFlex3/src/spark/other/ScrollBarsExample.mxml
index 

[4/9] git commit: [flex-utilities] [refs/heads/develop] - remove unneeded panel skins

2014-10-18 Thread jmclean
remove unneeded panel skins


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

Branch: refs/heads/develop
Commit: e11842b662a6d10ef538f40052e7a86e018e1b45
Parents: 8292633
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 18 18:19:59 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 18 18:19:59 2014 +1100

--
 .../spark/charts/TDFGradientBackgroundSkin.mxml |  49 --
 .../components/TDFGradientBackgroundSkin.mxml   |  49 --
 .../spark/containers/skins/TDFPanelSkin.mxml| 171 ---
 .../src/spark/css/skins/TDFPanelSkin.mxml   | 171 ---
 .../src/spark/effects/skins/TDFPanelSkin.mxml   | 170 --
 .../src/spark/fxg/skins/TDFPanelSkin.mxml   | 170 --
 .../spark/itemRenderers/skins/TDFPanelSkin.mxml | 170 --
 .../src/spark/layouts/skins/TDFPanelSkin.mxml   | 171 ---
 .../src/spark/other/skins/TDFPanelSkin.mxml | 130 --
 .../src/spark/skinning/skins/TDFPanelSkin.mxml  | 171 ---
 10 files changed, 1422 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/e11842b6/TourDeFlex/TourDeFlex3/src/spark/charts/TDFGradientBackgroundSkin.mxml
--
diff --git 
a/TourDeFlex/TourDeFlex3/src/spark/charts/TDFGradientBackgroundSkin.mxml 
b/TourDeFlex/TourDeFlex3/src/spark/charts/TDFGradientBackgroundSkin.mxml
deleted file mode 100644
index 553aee3..000
--- a/TourDeFlex/TourDeFlex3/src/spark/charts/TDFGradientBackgroundSkin.mxml
+++ /dev/null
@@ -1,49 +0,0 @@
-?xml version=1.0 encoding=utf-8?
-!--
-
-  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.
-
---
-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
-   [HostComponent(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=0x00 
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
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/e11842b6/TourDeFlex/TourDeFlex3/src/spark/components/TDFGradientBackgroundSkin.mxml
--
diff --git 
a/TourDeFlex/TourDeFlex3/src/spark/components/TDFGradientBackgroundSkin.mxml 
b/TourDeFlex/TourDeFlex3/src/spark/components/TDFGradientBackgroundSkin.mxml
deleted file mode 100644
index 553aee3..000
--- a/TourDeFlex/TourDeFlex3/src/spark/components/TDFGradientBackgroundSkin.mxml
+++ /dev/null
@@ -1,49 +0,0 @@
-?xml version=1.0 encoding=utf-8?
-!--
-
-  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 

[7/9] FLEX-34485 make examples consistent

2014-10-18 Thread jmclean
http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/186a01be/TourDeFlex/TourDeFlex3/src/spark/controls/ToggleButtonExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/ToggleButtonExample.mxml 
b/TourDeFlex/TourDeFlex3/src/spark/controls/ToggleButtonExample.mxml
index 722215d..6abdfa2 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/ToggleButtonExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/ToggleButtonExample.mxml
@@ -41,71 +41,38 @@
}
]]
/fx:Script
-   fx:Style
-   @namespace library://ns.adobe.com/flex/spark;
-   
-   ToggleButton:upAndSelected,
-   ToggleButton:overAndSelected {
-   baseColor: #00;
-   color: #FF;
-   }
-   ToggleButton:downAndSelected {
-   baseColor: #336699;
-   color: #FF;
-   }
-   ToggleButton:disabledAndSelected {
-   baseColor: #E2E2E2;
-   color: #212799;
-   }
-   ToggleButton:up {
-   baseColor: #C0C0C0;
-   color: #323232;
-   }
-   ToggleButton:over {
-   baseColor: #FF;
-   color: #00;
-   }
-   ToggleButton:down {
-   baseColor: #014f9f;
-   color: #FF;
-   }
-   /fx:Style
+
s:states 
s:State name=show/
s:State name=hide/ 
/s:states 

-   !-- Note: A custom panel skin is used for the Tour de Flex samples and 
is included in the
-   source tabs for each sample.--
-   s:Panel width=100% height=100% 
-horizontalCenter=0 
-title=ToggleButton Sample 
-skinClass=skins.TDFPanelSkin
+   s:Panel title=ToggleButton Sample width=100% height=100%
+   s:layout
+   s:VerticalLayout paddingLeft=10 paddingRight=10 
paddingTop=10 paddingBottom=10/
+   /s:layout

-   
-   s:HGroup left=5 top=5 width=100% height=100%
-   s:VGroup color=0x00
-   s:Label text=The Outfitters 
Clothing Store fontSize=18 color=0x014f9f/
-   s:Label text=Order Number: 
904234113441-2342/
-   s:VGroup width=80%  
horizontalCenter=0
-   s:Label 
text=Purchaser: Anna Thomas/
-   s:Label text=Date: 
7/20/2009/
-   s:Label text=Order 
Total: $114.00/
-   s:ToggleButton 
id=showBtn label.hide=Show Details label.show=Hide Details
-   
click=myBtn_clickHandler(event)/
-   /s:VGroup
-   /s:VGroup
-   s:HGroup right=50 top=5
-   s:Panel title=Details 
horizontalCenter=0 top=300 width=350 height=170  
-   color=#FF  
includeIn=show
-   mx:DataGrid 
dataProvider={items} width=100% height=100% color=0x00/
-   /s:Panel
-   /s:HGroup
-   /s:HGroup
-   s:HGroup horizontalCenter=0 bottom=15  
verticalAlign=middle clipAndEnableScrolling=true width=88%
-   s:Label fontSize=13 color=0x323232 
verticalAlign=justify width=100%
- text=Clicking the button 
toggles it between the up and down states. If you click the button while it is 
in the up state, it toggles to the down state. You must click
-the button again to toggle it back to the up state./
+   s:HGroup  
+   s:VGroup
+   s:Label text=The Outfitters Clothing 
Store fontSize=18 /
+   s:Label text=Order Number: 
904234113441-2342/
+   s:VGroup width=80%  
horizontalCenter=0
+   s:Label text=Purchaser: Anna 
Thomas/
+   s:Label text=Date: 
7/20/2009/
+   s:Label text=Order Total: 
$114.00/
+

git commit: [flex-utilities] [refs/heads/develop] - fix padding/white space

2014-10-18 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop 186a01bec - 88e4079b3


fix padding/white space


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

Branch: refs/heads/develop
Commit: 88e4079b32273f91f66d181e6d791ed232d1025a
Parents: 186a01b
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 18 19:04:33 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 18 19:04:33 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/Welcome.mxml | 53 +---
 1 file changed, 25 insertions(+), 28 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/88e4079b/TourDeFlex/TourDeFlex3/src/Welcome.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/Welcome.mxml 
b/TourDeFlex/TourDeFlex3/src/Welcome.mxml
index ed16370..0240899 100644
--- a/TourDeFlex/TourDeFlex3/src/Welcome.mxml
+++ b/TourDeFlex/TourDeFlex3/src/Welcome.mxml
@@ -16,40 +16,37 @@
   limitations under the License.
   --
 
-!-- Simple example to demonstrate the Button control. --
 mx:Application xmlns:fx=http://ns.adobe.com/mxml/2009;
xmlns:mx=library://ns.adobe.com/flex/mx
-   xmlns:s=library://ns.adobe.com/flex/spark 
-   paddingBottom=10 paddingTop=10 
paddingLeft=10 paddingRight=10
+   xmlns:s=library://ns.adobe.com/flex/spark
+   paddingBottom=0 paddingTop=0 
paddingLeft=0 paddingRight=0
height=100% width=100%
 
 mx:Panel title=Welcome to Tour De Flex
  paddingBottom=10 paddingTop=10 paddingLeft=10 
paddingRight=10
  height=100% width=100%
-
-   s:HGroup
-   s:Image source=@Embed('/apache/assets/ApacheFlexLogo.png') 
width=50 height=50 /
-   s:VGroup height=100% verticalAlign=middle
-   s:Label text=Apache Tour De Flex fontSize=20 
fontWeight=bold /
-   /s:VGroup 
-   /s:HGroup
-   
-   s:RichText width=100%
-   s:p /
-   s:pThe Apache Flex Tour De Flex component explorer provides a 
sample set of working
-  Apache Flex examples./s:p
-   s:p /
-   s:pNew in this version:/s:p
-   s:list
-   s:liAdded this welcome page/s:li
-   s:liChanged examples look and feel to be more 
consistent/s:li
-   s:liAdded support for 3rd party examples/s:li
-   s:liAdded Squiggly spelling engine examples/s:li
-   /s:list
-   s:p /
-   s:pFor a full list of changes please see the README./s:p
-   s:p /
-   /s:RichText
-
+   s:HGroup
+   s:Image 
source=@Embed('/apache/assets/ApacheFlexLogo.png') width=50 height=50 /
+   s:VGroup height=100% verticalAlign=middle
+   s:Label text=Apache Tour De Flex 
fontSize=20 fontWeight=bold /
+   /s:VGroup 
+   /s:HGroup
+   
+   s:RichText width=100% height=100%
+   s:p /
+   s:pThe Apache Flex Tour De Flex component explorer 
provides a sample set of working
+ Apache Flex examples./s:p
+   s:p /
+   s:pNew in this version:/s:p
+   s:list
+   s:liAdded this welcome page/s:li
+   s:liChanged examples look and feel to be more 
consistent/s:li
+   s:liAdded support for 3rd party 
examples/s:li
+   s:liAdded Squiggly spelling engine 
examples/s:li
+   /s:list
+   s:p /
+   s:pFor a full list of changes please see the 
README./s:p
+   s:p /
+   /s:RichText
 /mx:Panel
 /mx:Application
\ No newline at end of file



git commit: [flex-utilities] [refs/heads/develop] - Add flexicious examples

2014-10-18 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop 88e4079b3 - 67cfb096a


Add flexicious examples


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

Branch: refs/heads/develop
Commit: 67cfb096af025bf924a9c83f81013ce47094a528
Parents: 88e4079
Author: Justin Mclean jmcl...@apache.org
Authored: Sun Oct 19 10:07:54 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sun Oct 19 10:07:54 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/3rdparty.xml | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/67cfb096/TourDeFlex/TourDeFlex3/src/3rdparty.xml
--
diff --git a/TourDeFlex/TourDeFlex3/src/3rdparty.xml 
b/TourDeFlex/TourDeFlex3/src/3rdparty.xml
index 2e8e001..29f4e0c 100755
--- a/TourDeFlex/TourDeFlex3/src/3rdparty.xml
+++ b/TourDeFlex/TourDeFlex3/src/3rdparty.xml
@@ -18,9 +18,10 @@
 
 compTree
node label=3rd Party Components
-   node label=Some Company
-   node label=Example1 app= src= /
-   node label=Example2 app= src= /
+   node label=Flexicious
+   node label=Dashboard Framework 
app=http://www.flexicious.com/resources/demo/FlexiciousClassic.swf; src= /
+   node label=Ultimate DataGrid 
app=http://www.flexicious.com/resources/demo/FlexiciousUltimate.swf; src= /
+   node label=Classic DataGrid 
app=http://www.flexicious.com/resources/demo/FlexiciousDashboard.swf; src= /
/node
/node
 /compTree



[06/10] git commit: [flex-utilities] [refs/heads/develop] - remove extra borders by converting to a box

2014-10-17 Thread jmclean
remove extra borders by converting to a box


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

Branch: refs/heads/develop
Commit: 4d337169205faf65a4d164a64dd303e04c5805d2
Parents: 7406400
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 18 11:24:43 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 18 11:24:43 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/loaderPanel.mxml | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/4d337169/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml 
b/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml
index c71b4cc..bd09faf 100755
--- a/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml
+++ b/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml
@@ -17,11 +17,9 @@
   limitations under the License.
   --
 
-!-- TODO probably no need for a panel --
-mx:Panel xmlns:fx=http://ns.adobe.com/mxml/2009; 
xmlns:mx=library://ns.adobe.com/flex/mx
- headerHeight=0 dropShadowVisible=false
+mx:Box xmlns:fx=http://ns.adobe.com/mxml/2009; 
xmlns:mx=library://ns.adobe.com/flex/mx
  width=100% height=100%
-   fx:Script
+fx:Script
  ![CDATA[
  
public function loadApp(swfApp:String):void
@@ -34,4 +32,4 @@
 
 mx:SWFLoader id=myLoader width=100% height=100%  
horizontalAlign=center verticalAlign=middle /
 
-/mx:Panel
+/mx:Box



[01/10] git commit: [flex-utilities] [refs/heads/develop] - update release notes

2014-10-17 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop ed2ba1fb4 - 6fd69880c


update release notes


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

Branch: refs/heads/develop
Commit: fd6595d77b05cce727834485740d7bc2f9803f2f
Parents: ed2ba1f
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 18 11:21:12 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 18 11:21:12 2014 +1100

--
 TourDeFlex/TourDeFlex3/RELEASE_NOTES | 8 
 1 file changed, 8 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/fd6595d7/TourDeFlex/TourDeFlex3/RELEASE_NOTES
--
diff --git a/TourDeFlex/TourDeFlex3/RELEASE_NOTES 
b/TourDeFlex/TourDeFlex3/RELEASE_NOTES
index d6f254a..73a2694 100644
--- a/TourDeFlex/TourDeFlex3/RELEASE_NOTES
+++ b/TourDeFlex/TourDeFlex3/RELEASE_NOTES
@@ -5,6 +5,9 @@ Apache Flex Tour De Flex Component Explorer 1.2
 Apache Flex Tour De Flex 1.2 is an update to 1.1 adding a few minor 
improvements.
 
 Changes since the version 1.1
+- Added welcome page
+- Added support for 3rd party examples
+- Changed examples look and feel to be more consistent
 - Added Squiggly spelling engine examples
 
 Known issues:
@@ -12,6 +15,11 @@ Known issues:
   The sample code will work externally. See FLEX-34539 for details.
   
 Bugs fixed and improvements:
+FLEX-34505 Add squiggly example to Tour De Flex
+FLEX-34501 Allow 3rd parties to provide examples for inclusion in TourDeFlex
+FLEX-34596 Tour De Flex linking is broken
+FLEX-34493 Loading bar not centred in panel
+FLEX-34485 Improve TourDeFlex consistency and design
 
 
 Apache Flex Tour De Flex Component Explorer 1.1



[04/10] git commit: [flex-utilities] [refs/heads/develop] - simplify squiggly example

2014-10-17 Thread jmclean
simplify squiggly example


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

Branch: refs/heads/develop
Commit: cba0f58c5076f0dff0d4b7947495d6707f2011f0
Parents: d34658b
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 18 11:23:13 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 18 11:23:13 2014 +1100

--
 .../src/apache/squiggly/SpellingExExample.mxml| 14 ++
 1 file changed, 2 insertions(+), 12 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/cba0f58c/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExExample.mxml 
b/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExExample.mxml
index af31565..04b29a5 100644
--- a/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExExample.mxml
@@ -18,20 +18,10 @@
 
 --
 s:Application xmlns:fx=http://ns.adobe.com/mxml/2009;
-  xmlns:s=library://ns.adobe.com/flex/spark
-  applicationComplete=init()
+  xmlns:s=library://ns.adobe.com/flex/spark
fx:Script
![CDATA[
import com.adobe.linguistics.spelling.SpellUI;
-   import 
com.adobe.linguistics.spelling.framework.SpellingConfiguration;
-   import 
com.adobe.linguistics.spelling.framework.ResourceTable;
-   
-   public function init():void
-   {
-   var resourceTable:ResourceTable = new 
ResourceTable();
-   resourceTable.setResource(en_US, 
{rule:data/en_US.aff, dict:data/en_US.dic});
-   SpellingConfiguration.resourceTable = 
resourceTable;
-   }
]]
/fx:Script
 
@@ -42,7 +32,7 @@
s:Group width=100% height=100%
s:TextArea id=ta_en width=50% height=50% 
fontSize=20
text=I know Enlish. Use the 
context menu to see the suggestions of the missbelled word.
-   
creationComplete=SpellUI.enableSpelling(ta_en, 'en_US');/

+   
creationComplete=SpellUI.enableSpelling(ta_en, 'en_US')/ 

/s:Group
/s:Panel
 



[09/10] FLEX-34505 Add squiggly example to Tour De Flex Update mx example to be more consistent

2014-10-17 Thread jmclean
http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/6fd69880/TourDeFlex/TourDeFlex3/src/mx/controls/OLAPDataGridExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/mx/controls/OLAPDataGridExample.mxml 
b/TourDeFlex/TourDeFlex3/src/mx/controls/OLAPDataGridExample.mxml
index e609f09..d7279b6 100755
--- a/TourDeFlex/TourDeFlex3/src/mx/controls/OLAPDataGridExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/mx/controls/OLAPDataGridExample.mxml
@@ -17,9 +17,11 @@
   --
 
 mx:Application xmlns:fx=http://ns.adobe.com/mxml/2009; 
xmlns:mx=library://ns.adobe.com/flex/mx
-creationComplete=creationCompleteHandler();
+   paddingBottom=0 paddingTop=0 
paddingLeft=0 paddingRight=0
+   height=100% width=100%
+   creationComplete=creationCompleteHandler()
 
-fx:Script
+ fx:Script
   ![CDATA[
 import mx.rpc.AsyncResponder;
 import mx.rpc.AsyncToken;
@@ -167,7 +169,7 @@
mx:OLAPCube name=FlatSchemaCube 
dataProvider={flatData} 
id=myMXMLCube
-   complete=runQuery(event);
+   complete=runQuery(event)
 
mx:OLAPDimension name=CustomerDim
mx:OLAPAttribute name=Customer dataField=customer/
@@ -197,9 +199,10 @@
 /fx:Declarations

 mx:Panel title=OLAPCube Control Example
-height=75% width=75% layout=horizontal
-paddingTop=10 paddingBottom=10 paddingLeft=10 paddingRight=10
+   paddingBottom=10 paddingTop=10 
paddingLeft=10 paddingRight=10
+   height=100% width=100%
 
 mx:OLAPDataGrid id=myOLAPDG width=100% height=100%/
+   
 /mx:Panel
 /mx:Application
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/6fd69880/TourDeFlex/TourDeFlex3/src/mx/controls/PopUpButtonExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/mx/controls/PopUpButtonExample.mxml 
b/TourDeFlex/TourDeFlex3/src/mx/controls/PopUpButtonExample.mxml
index d8d4c86..53683fa 100755
--- a/TourDeFlex/TourDeFlex3/src/mx/controls/PopUpButtonExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/mx/controls/PopUpButtonExample.mxml
@@ -17,8 +17,10 @@
   --
 
 !-- Simple example to demonstrate the PopUpButton control. --
-mx:Application xmlns:fx=http://ns.adobe.com/mxml/2009; 
xmlns:mx=library://ns.adobe.com/flex/mx
-
+mx:Application xmlns:fx=http://ns.adobe.com/mxml/2009; 
xmlns:mx=library://ns.adobe.com/flex/mx
+   paddingBottom=0 paddingTop=0 
paddingLeft=0 paddingRight=0
+   height=100% width=100%
+   
fx:Script
![CDATA[
 
@@ -51,12 +53,13 @@
]]
/fx:Script
 
-mx:Panel title=PopUpButton Control Example height=75% width=75% 
-paddingTop=10 paddingBottom=10 paddingRight=10 paddingLeft=10
+mx:Panel title=PopUpButton Control Example
+   paddingBottom=10 paddingTop=10 
paddingLeft=10 paddingRight=10
+   height=100% width=100%
 
-mx:Label width=100% color=blue
+mx:Label width=100%
 text=Button label contains the name of the last selected menu 
item. /
-mx:PopUpButton id=popB label=Edit creationComplete=initMenu(); 
width=135 /
+mx:PopUpButton id=popB label=Edit creationComplete=initMenu() 
width=135 /

 mx:Spacer height=50 /
 mx:TextInput id=popTypeB /

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/6fd69880/TourDeFlex/TourDeFlex3/src/mx/controls/PopUpButtonMenuExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/mx/controls/PopUpButtonMenuExample.mxml 
b/TourDeFlex/TourDeFlex3/src/mx/controls/PopUpButtonMenuExample.mxml
index c0c6009..69e2abd 100755
--- a/TourDeFlex/TourDeFlex3/src/mx/controls/PopUpButtonMenuExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/mx/controls/PopUpButtonMenuExample.mxml
@@ -17,9 +17,11 @@
   --
 
 !-- PopUpMenuButton control example. --
-mx:Application xmlns:fx=http://ns.adobe.com/mxml/2009; 
xmlns:mx=library://ns.adobe.com/flex/mx
+mx:Application xmlns:fx=http://ns.adobe.com/mxml/2009; 
xmlns:mx=library://ns.adobe.com/flex/mx
+   paddingBottom=0 paddingTop=0 
paddingLeft=0 paddingRight=0
+   height=100% width=100%
 
-fx:Script
+ fx:Script
 ![CDATA[
 import mx.events.*;
 import mx.controls.*;
@@ -41,16 +43,17 @@
/fx:XMLList
/fx:Declarations
 
-mx:Panel title=PopUpMenuButton Control Example height=100% 
width=100% 
-paddingTop=10 paddingLeft=10 paddingRight=10
+mx:Panel 

[05/10] git commit: [flex-utilities] [refs/heads/develop] - add a little padding and show welcome screen if no app link passed in

2014-10-17 Thread jmclean
add a little padding and show welcome screen if no app link passed in


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

Branch: refs/heads/develop
Commit: 7406400e2a0b73af58c96696c5bd9dd6b3a9f9fa
Parents: cba0f58
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 18 11:24:11 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 18 11:24:11 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/explorer.mxml | 12 
 1 file changed, 8 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/7406400e/TourDeFlex/TourDeFlex3/src/explorer.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/explorer.mxml 
b/TourDeFlex/TourDeFlex3/src/explorer.mxml
index b02c147..7e5bc3c 100755
--- a/TourDeFlex/TourDeFlex3/src/explorer.mxml
+++ b/TourDeFlex/TourDeFlex3/src/explorer.mxml
@@ -17,10 +17,11 @@
   --
 
 mx:Application xmlns:fx=http://ns.adobe.com/mxml/2009; 
xmlns:mx=library://ns.adobe.com/flex/mx xmlns:explorer=*
-width=100% height=100% pageTitle={TITLE}
-initialize=init() creationComplete=checkParameters() layout=vertical
+   pageTitle={TITLE} layout=vertical 
width=100% height=100%
+   paddingBottom=2 paddingTop=2 
paddingLeft=2 paddingRight=2
+   initialize=init() 
creationComplete=checkParameters()
 
-fx:Script
+ fx:Script
 ![CDATA[
import mx.core.FlexGlobals;
 
@@ -70,7 +71,10 @@
var source:String = 
explorerTree..node.(hasOwnProperty(@app)  @app == application).@src;
loadApp(application, source);
openNode(application);
-   }   
+   }
+   else {
+   loadApp(Welcome, null);
+   }
}
 
 private function treeChanged(event:Event):void



[07/10] git commit: [flex-utilities] [refs/heads/develop] - remove extra border

2014-10-17 Thread jmclean
remove extra border


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

Branch: refs/heads/develop
Commit: 338cd0c42b95d075df7ea5cfda88352c9eb39415
Parents: 4d33716
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 18 11:27:18 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 18 11:27:18 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/viewsource.mxml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/338cd0c4/TourDeFlex/TourDeFlex3/src/viewsource.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/viewsource.mxml 
b/TourDeFlex/TourDeFlex3/src/viewsource.mxml
index e3abe8b..f72c1c2 100755
--- a/TourDeFlex/TourDeFlex3/src/viewsource.mxml
+++ b/TourDeFlex/TourDeFlex3/src/viewsource.mxml
@@ -58,6 +58,6 @@
]]
/fx:Script
 
-   mx:TabNavigator id=tn width=100% height=100% paddingTop=0/
+   mx:TabNavigator id=tn width=100% height=100% paddingTop=0 
borderStyle=none /
 
 /mx:VBox
\ No newline at end of file



[02/10] git commit: [flex-utilities] [refs/heads/develop] - add welcome page

2014-10-17 Thread jmclean
add welcome page


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

Branch: refs/heads/develop
Commit: 29c0ddd6d7f4c8cf2158499d5af6cce49148d71b
Parents: fd6595d
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 18 11:22:11 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 18 11:22:11 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/Welcome.mxml | 55 
 1 file changed, 55 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/29c0ddd6/TourDeFlex/TourDeFlex3/src/Welcome.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/Welcome.mxml 
b/TourDeFlex/TourDeFlex3/src/Welcome.mxml
new file mode 100644
index 000..ed16370
--- /dev/null
+++ b/TourDeFlex/TourDeFlex3/src/Welcome.mxml
@@ -0,0 +1,55 @@
+?xml version=1.0?
+!--
+  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.
+  --
+
+!-- Simple example to demonstrate the Button control. --
+mx:Application xmlns:fx=http://ns.adobe.com/mxml/2009;
+   xmlns:mx=library://ns.adobe.com/flex/mx
+   xmlns:s=library://ns.adobe.com/flex/spark 
+   paddingBottom=10 paddingTop=10 
paddingLeft=10 paddingRight=10
+   height=100% width=100%
+
+mx:Panel title=Welcome to Tour De Flex
+ paddingBottom=10 paddingTop=10 paddingLeft=10 
paddingRight=10
+ height=100% width=100%
+
+   s:HGroup
+   s:Image source=@Embed('/apache/assets/ApacheFlexLogo.png') 
width=50 height=50 /
+   s:VGroup height=100% verticalAlign=middle
+   s:Label text=Apache Tour De Flex fontSize=20 
fontWeight=bold /
+   /s:VGroup 
+   /s:HGroup
+   
+   s:RichText width=100%
+   s:p /
+   s:pThe Apache Flex Tour De Flex component explorer provides a 
sample set of working
+  Apache Flex examples./s:p
+   s:p /
+   s:pNew in this version:/s:p
+   s:list
+   s:liAdded this welcome page/s:li
+   s:liChanged examples look and feel to be more 
consistent/s:li
+   s:liAdded support for 3rd party examples/s:li
+   s:liAdded Squiggly spelling engine examples/s:li
+   /s:list
+   s:p /
+   s:pFor a full list of changes please see the README./s:p
+   s:p /
+   /s:RichText
+
+/mx:Panel
+/mx:Application
\ No newline at end of file



[1/2] FLEX-34605 make spacing /layout consistent

2014-10-13 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop f10d93312 - ed2ba1fb4


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/ed2ba1fb/installer/src/InstallApacheFlex.mxml
--
diff --git a/installer/src/InstallApacheFlex.mxml 
b/installer/src/InstallApacheFlex.mxml
index b849ae4..09267cc 100644
--- a/installer/src/InstallApacheFlex.mxml
+++ b/installer/src/InstallApacheFlex.mxml
@@ -33,20 +33,20 @@ variables are not required because the locations of these 
pieces are known.
 
 
 s:WindowedApplication xmlns:fx=http://ns.adobe.com/mxml/2009;
-  
xmlns:s=library://ns.adobe.com/flex/spark
-  width=800 height=700 
maxWidth=800 maxHeight=700 minWidth=800 minHeight=700
-  backgroundColor=0xDD
-  preinitialize=getInvoke()
-  
applicationComplete=handleApplicationComplete(event) showStatusBar=false
-  
skinClass=ws.tink.spark.skins.controls.InstallApacheFlexSkin
-  
xmlns:controls=ws.tink.spark.controls.*
-  
xmlns:controls1=org.apache.flex.packageflexsdk.view.controls.*
-  
xmlns:components=org.apache.flex.packageflexsdk.view.components.*
-  
xmlns:controls2=org.apache.flex.utilities.common.controls.*
-   
-   fx:Style source=assets/styles/ApacheFlexToolsStyle.css/
-   fx:Style source=assets/styles/InstallApacheFlexStyle.css/ 
-   
+   xmlns:s=library://ns.adobe.com/flex/spark
+   width=800 height=700 maxWidth=800 maxHeight=700 
minWidth=800 minHeight=700
+   backgroundColor=0xDD
+   preinitialize=getInvoke()
+   applicationComplete=handleApplicationComplete(event) 
showStatusBar=false
+   
skinClass=ws.tink.spark.skins.controls.InstallApacheFlexSkin
+   xmlns:controls=ws.tink.spark.controls.*
+   
xmlns:controls1=org.apache.flex.packageflexsdk.view.controls.*
+   
xmlns:components=org.apache.flex.packageflexsdk.view.components.*
+   
xmlns:controls2=org.apache.flex.utilities.common.controls.*
+
+fx:Style source=assets/styles/ApacheFlexToolsStyle.css/
+fx:Style source=assets/styles/InstallApacheFlexStyle.css/ 
+
 fx:Declarations
 fx:Component className=CacheDialog 
 s:TitleWindow title=Download Cache Configuration width=400 
height=130 
@@ -98,7 +98,7 @@ variables are not required because the locations of these 
pieces are known.
 /s:TitleWindow
 /fx:Component
 /fx:Declarations
-   fx:Script![CDATA[
+fx:Script![CDATA[
 import flash.globalization.LocaleID;
 import flash.globalization.StringTools;
 
@@ -107,7 +107,7 @@ variables are not required because the locations of these 
pieces are known.
 import mx.events.FlexEvent;
 import mx.events.PropertyChangeEvent;
 import mx.managers.CursorManager;
-import mx.managers.PopUpManager;
+import mx.managers.PopUpManager;
 import mx.resources.ResourceBundle;
 import mx.rpc.events.FaultEvent;
 import mx.rpc.events.ResultEvent;
@@ -143,20 +143,20 @@ variables are not required because the locations of these 
pieces are known.
 
 import ws.tink.spark.controls.StepItem;
 import ws.tink.spark.skins.controls.InstallApacheFlexSkin;
-   
+
 // embed us strings so we can always have them if we can't get to the 
locale files
 
[Embed(source=properties/en_US.properties,mimeType=application/octet-stream)]
 private var en_US_Properties:Class;
 
 private var cleanedUp:Boolean;
 
-   private var _mirrorURLCGI:String;
-   private var _useMirror:Boolean = true;
-   private var _latestVersion:String;
-   private var loggedVersion:Boolean;
+private var _mirrorURLCGI:String;
+private var _useMirror:Boolean = true;
+private var _latestVersion:String;
+private var loggedVersion:Boolean;
 private var logFile:String;
 private var debugMode:Boolean = false;
-   private var logProgressEvents:Boolean = false;
+private var logProgressEvents:Boolean = false;
 private var showDevBuilds:Boolean = false;
 private var usingDownloadCache:Boolean;
 private var downloadCacheFolder:String;
@@ -165,158 +165,158 @@ variables are not required because the locations of 
these pieces are known.
 private var 

[1/4] git commit: [flex-utilities] [refs/heads/develop] - update version to 1.2

2014-10-12 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop 8de9b1a34 - 341905f47


update version to 1.2


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

Branch: refs/heads/develop
Commit: 5e31d3575b4562bfc4b8bed8e6875dd035934be1
Parents: 8de9b1a
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Oct 13 08:10:34 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Oct 13 08:10:34 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/explorer.mxml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/5e31d357/TourDeFlex/TourDeFlex3/src/explorer.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/explorer.mxml 
b/TourDeFlex/TourDeFlex3/src/explorer.mxml
index b753545..c8851b9 100755
--- a/TourDeFlex/TourDeFlex3/src/explorer.mxml
+++ b/TourDeFlex/TourDeFlex3/src/explorer.mxml
@@ -24,7 +24,7 @@
 ![CDATA[
import mx.core.FlexGlobals;
 
-   static protected const VERSION:String = 1.1;  
+   static protected const VERSION:String = 1.2;  
static protected const TITLE:String = Tour De Flex Component 
Explorer;
static protected const FULL_TITLE:String = Apache Flex® Tour 
De Flex Component Explorer  + VERSION;
 
@@ -80,7 +80,7 @@
{
var urlRequest:URLRequest = new 
URLRequest(http://flex.apache.org/download-tourdeflex.html;);
navigateToURL(urlRequest);
-   }   
+   }

private function openNode(application:String):void
{



[2/4] git commit: [flex-utilities] [refs/heads/develop] - FLEX-34596 Fix linking issue and move to use swfobject

2014-10-12 Thread jmclean
FLEX-34596 Fix linking issue and move to use swfobject


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

Branch: refs/heads/develop
Commit: 330f62b11cb103d9fe44d5dfcb32465c71533ec8
Parents: 5e31d35
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Oct 13 08:14:04 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Oct 13 08:14:04 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/index.html | 85 +++---
 1 file changed, 42 insertions(+), 43 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/330f62b1/TourDeFlex/TourDeFlex3/src/index.html
--
diff --git a/TourDeFlex/TourDeFlex3/src/index.html 
b/TourDeFlex/TourDeFlex3/src/index.html
index 400abb7..75e06d9 100755
--- a/TourDeFlex/TourDeFlex3/src/index.html
+++ b/TourDeFlex/TourDeFlex3/src/index.html
@@ -19,33 +19,39 @@
 meta http-equiv=Content-Type content=text/html; charset=utf-8 /
 titleApache Flex® Tour De Flex Component Explorer/title
 script src=AC_OETags.js language=javascript/script
-style
-body { margin: 0px; overflow:hidden }
+style type=text/css media=screen 
+html, body  { height:100%; }
+body { margin:0; padding:0; overflow:auto; text-align:center; 
+   background-color: #ff; }   
+object:focus { outline:none; }
+#flashContent { display:none; }
 /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
+script type=text/javascript src=swfobject.js/script
+script type=text/javascript
+var swfVersionStr = 11.1.0;
+var xiSwfUrlStr = ;
+var flashvars = {};
+if (swfobject.getQueryParamValue(app)  
swfobject.getQueryParamValue(app)) {
+   flashvars.app = swfobject.getQueryParamValue(app);
+   }
+var params = {};
+params.quality = high;
+params.bgcolor = #ff;
+params.allowscriptaccess = sameDomain;
+params.allowfullscreen = true;
+var attributes = {};
+attributes.id = TourDeFlex;
+attributes.name = TourDeFlex;
+attributes.align = middle;
+swfobject.embedSWF(
+explorer.swf, flashContent, 
+100%, 100%, 
+swfVersionStr, xiSwfUrlStr, 
+flashvars, params, attributes);
+swfobject.createCSS(#flashContent, display:block;text-align:left;);
 /script
 !-- Google Analytics --
 script type=text/javascript
-
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-37926454-1']);
_gaq.push(['_trackPageview']);
@@ -55,26 +61,19 @@ body { margin: 0px; overflow:hidden }
ga.src = ('https:' == document.location.protocol ? 
'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
})();
-
 /script
-noscript
-   object classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354
-   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

[4/4] git commit: [flex-utilities] [refs/heads/develop] - add swf object 2.2

2014-10-12 Thread jmclean
add swf object 2.2


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

Branch: refs/heads/develop
Commit: 341905f47e6c884fadb243fab3bbb6f7694db274
Parents: 448d0b1
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Oct 13 08:15:12 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Oct 13 08:15:12 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/swfobject.js | 777 +++
 1 file changed, 777 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/341905f4/TourDeFlex/TourDeFlex3/src/swfobject.js
--
diff --git a/TourDeFlex/TourDeFlex3/src/swfobject.js 
b/TourDeFlex/TourDeFlex3/src/swfobject.js
new file mode 100644
index 000..bf35c07
--- /dev/null
+++ b/TourDeFlex/TourDeFlex3/src/swfobject.js
@@ -0,0 +1,777 @@
+/*!SWFObject v2.2 http://code.google.com/p/swfobject/ 
+   is released under the MIT License 
http://www.opensource.org/licenses/mit-license.php 
+*/
+
+var swfobject = function() {
+   
+   var UNDEF = undefined,
+   OBJECT = object,
+   SHOCKWAVE_FLASH = Shockwave Flash,
+   SHOCKWAVE_FLASH_AX = ShockwaveFlash.ShockwaveFlash,
+   FLASH_MIME_TYPE = application/x-shockwave-flash,
+   EXPRESS_INSTALL_ID = SWFObjectExprInst,
+   ON_READY_STATE_CHANGE = onreadystatechange,
+   
+   win = window,
+   doc = document,
+   nav = navigator,
+   
+   plugin = false,
+   domLoadFnArr = [main],
+   regObjArr = [],
+   objIdArr = [],
+   listenersArr = [],
+   storedAltContent,
+   storedAltContentId,
+   storedCallbackFn,
+   storedCallbackObj,
+   isDomLoaded = false,
+   isExpressInstallActive = false,
+   dynamicStylesheet,
+   dynamicStylesheetMedia,
+   autoHideShow = true,
+   
+   /* Centralized function for browser feature detection
+   - User agent string detection is only used when no good 
alternative is possible
+   - Is executed directly for optimal performance
+   */  
+   ua = function() {
+   var w3cdom = typeof doc.getElementById != UNDEF  typeof 
doc.getElementsByTagName != UNDEF  typeof doc.createElement != UNDEF,
+   u = nav.userAgent.toLowerCase(),
+   p = nav.platform.toLowerCase(),
+   windows = p ? /win/.test(p) : /win/.test(u),
+   mac = p ? /mac/.test(p) : /mac/.test(u),
+   webkit = /webkit/.test(u) ? 
parseFloat(u.replace(/^.*webkit\/(\d+(\.\d+)?).*$/, $1)) : false, // returns 
either the webkit version or false if not webkit
+   ie = !+\v1, // feature detection based on Andrea 
Giammarchi's solution: 
http://webreflection.blogspot.com/2009/01/32-bytes-to-know-if-your-browser-is-ie.html
+   playerVersion = [0,0,0],
+   d = null;
+   if (typeof nav.plugins != UNDEF  typeof 
nav.plugins[SHOCKWAVE_FLASH] == OBJECT) {
+   d = nav.plugins[SHOCKWAVE_FLASH].description;
+   if (d  !(typeof nav.mimeTypes != UNDEF  
nav.mimeTypes[FLASH_MIME_TYPE]  
!nav.mimeTypes[FLASH_MIME_TYPE].enabledPlugin)) { // 
navigator.mimeTypes[application/x-shockwave-flash].enabledPlugin indicates 
whether plug-ins are enabled or disabled in Safari 3+
+   plugin = true;
+   ie = false; // cascaded feature detection for 
Internet Explorer
+   d = d.replace(/^.*\s+(\S+\s+\S+$)/, $1);
+   playerVersion[0] = 
parseInt(d.replace(/^(.*)\..*$/, $1), 10);
+   playerVersion[1] = 
parseInt(d.replace(/^.*\.(.*)\s.*$/, $1), 10);
+   playerVersion[2] = /[a-zA-Z]/.test(d) ? 
parseInt(d.replace(/^.*[a-zA-Z]+(.*)$/, $1), 10) : 0;
+   }
+   }
+   else if (typeof win.ActiveXObject != UNDEF) {
+   try {
+   var a = new ActiveXObject(SHOCKWAVE_FLASH_AX);
+   if (a) { // a will return null when ActiveX is 
disabled
+   d = a.GetVariable($version);
+   if (d) {
+   

[3/4] git commit: [flex-utilities] [refs/heads/develop] - Fix position of loading bar?

2014-10-12 Thread jmclean
Fix position of loading bar?


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

Branch: refs/heads/develop
Commit: 448d0b18e793603d11c1ad98170d581d9a521a92
Parents: 330f62b
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Oct 13 08:14:34 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Oct 13 08:14:34 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/loaderPanel.mxml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/448d0b18/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml 
b/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml
index 1779d52..98bb2a3 100755
--- a/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml
+++ b/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml
@@ -19,7 +19,8 @@
 
 !-- TODO probably no need for a panel --
 mx:Panel xmlns:fx=http://ns.adobe.com/mxml/2009; 
xmlns:mx=library://ns.adobe.com/flex/mx
- horizontalAlign=center headerHeight=0 
dropShadowVisible=false
+ horizontalAlign=center headerHeight=0 
dropShadowVisible=false
+ width=100% height=100%
fx:Script
  ![CDATA[
  



svn commit: r925528 - in /websites/production/flex: cgi-bin/ content/

2014-10-12 Thread jmclean
Author: jmclean
Date: Sun Oct 12 21:20:26 2014
New Revision: 925528

Log:
FLEX-34596 Fix linking issue and move to use swfobject

Added:
websites/production/flex/cgi-bin/
  - copied from r925527, websites/staging/flex/trunk/cgi-bin/
websites/production/flex/content/
  - copied from r925527, websites/staging/flex/trunk/content/



[1/2] git commit: [flex-utilities] [refs/heads/develop] - initial dummy 3rd party component XML file

2014-10-12 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop 341905f47 - 44a07f548


initial dummy 3rd party component XML file


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

Branch: refs/heads/develop
Commit: 3d905a531f086d970ec48d406c710c610b129138
Parents: 341905f
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Oct 13 09:08:16 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Oct 13 09:08:16 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/3rdparty.xml | 26 ++
 1 file changed, 26 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/3d905a53/TourDeFlex/TourDeFlex3/src/3rdparty.xml
--
diff --git a/TourDeFlex/TourDeFlex3/src/3rdparty.xml 
b/TourDeFlex/TourDeFlex3/src/3rdparty.xml
new file mode 100755
index 000..2e8e001
--- /dev/null
+++ b/TourDeFlex/TourDeFlex3/src/3rdparty.xml
@@ -0,0 +1,26 @@
+?xml version=1.0 encoding=utf-8?
+!--
+  ~ 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.
+  --
+
+compTree
+   node label=3rd Party Components
+   node label=Some Company
+   node label=Example1 app= src= /
+   node label=Example2 app= src= /
+   /node
+   /node
+/compTree



[2/2] git commit: [flex-utilities] [refs/heads/develop] - FLEX-34501 add support for 3rd party components

2014-10-12 Thread jmclean
FLEX-34501 add support for 3rd party components


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

Branch: refs/heads/develop
Commit: 44a07f5488f546d19c2efc3f20b023be10152d2e
Parents: 3d905a5
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Oct 13 09:08:58 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Oct 13 09:08:58 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/explorer.mxml | 19 ++-
 1 file changed, 18 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/44a07f54/TourDeFlex/TourDeFlex3/src/explorer.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/explorer.mxml 
b/TourDeFlex/TourDeFlex3/src/explorer.mxml
index c8851b9..58e2240 100755
--- a/TourDeFlex/TourDeFlex3/src/explorer.mxml
+++ b/TourDeFlex/TourDeFlex3/src/explorer.mxml
@@ -42,8 +42,25 @@
 compLibTree.dataProvider = explorerTree;

noExamples = 
(explorerTree..node.(hasOwnProperty(@app)  @app.length()  0)).length();
+   
+   var loader:URLLoader = new URLLoader();
+   var request:URLRequest = new URLRequest(3rdparty.xml);
+   loader.addEventListener(Event.COMPLETE, load3rdParty);
+   loader.load(request);
}
-   
+   
+   protected function load3rdParty(event:Event):void
+   {
+ var loader:URLLoader = URLLoader(event.target);
+ var newNode:XML = new XML(loader.data);
+ 
+ if (newNode..node.length()  0) {
+ explorerTree.appendChild(newNode.node);
+  compLibTree.dataProvider = explorerTree;
+ noExamples += (newNode..node.(hasOwnProperty(@app) 
 @app.length()  0)).length();
+ }
+   }
+   
protected function checkParameters():void
{   
var parameters:Object = 
FlexGlobals.topLevelApplication.parameters;



git commit: [flex-utilities] [refs/heads/develop] - FLEX-34493 centre loading bar and example

2014-10-12 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop 44a07f548 - e9c8726ef


FLEX-34493 centre loading bar and example


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

Branch: refs/heads/develop
Commit: e9c8726ef038c9c233f38ce8d427eb126fdd0e4b
Parents: 44a07f5
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Oct 13 10:22:09 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Oct 13 10:22:09 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/loaderPanel.mxml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/e9c8726e/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml 
b/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml
index 98bb2a3..c71b4cc 100755
--- a/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml
+++ b/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml
@@ -19,7 +19,7 @@
 
 !-- TODO probably no need for a panel --
 mx:Panel xmlns:fx=http://ns.adobe.com/mxml/2009; 
xmlns:mx=library://ns.adobe.com/flex/mx
- horizontalAlign=center headerHeight=0 
dropShadowVisible=false
+ headerHeight=0 dropShadowVisible=false
  width=100% height=100%
fx:Script
  ![CDATA[
@@ -32,6 +32,6 @@
 ]]
   /fx:Script
 
-mx:SWFLoader id=myLoader width=100% height=100% /
+mx:SWFLoader id=myLoader width=100% height=100%  
horizontalAlign=center verticalAlign=middle /
 
 /mx:Panel



git commit: [flex-utilities] [refs/heads/develop] - Add a bit more flexibility in loading load - mostly for better 3rd party support

2014-10-12 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop e9c8726ef - faa11c6a3


Add a bit more flexibility in loading load - mostly for better 3rd party support


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

Branch: refs/heads/develop
Commit: faa11c6a3f011ef376094582553d4c9abfbf9cd6
Parents: e9c8726
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Oct 13 10:47:18 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Oct 13 10:47:18 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/explorer.mxml   | 7 ++-
 TourDeFlex/TourDeFlex3/src/viewsource.mxml | 9 +++--
 2 files changed, 13 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/faa11c6a/TourDeFlex/TourDeFlex3/src/explorer.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/explorer.mxml 
b/TourDeFlex/TourDeFlex3/src/explorer.mxml
index 58e2240..b02c147 100755
--- a/TourDeFlex/TourDeFlex3/src/explorer.mxml
+++ b/TourDeFlex/TourDeFlex3/src/explorer.mxml
@@ -89,7 +89,12 @@

private function loadApp(application:String, source:String):void
{
-   swfLoader.loadApp(application + .swf);
+   if (application.indexOf(.swf)  0) {
+   swfLoader.loadApp(application);
+   }
+   else {
+   swfLoader.loadApp(application + .swf);
+   }
 vs.loadSource(application, source);
}


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/faa11c6a/TourDeFlex/TourDeFlex3/src/viewsource.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/viewsource.mxml 
b/TourDeFlex/TourDeFlex3/src/viewsource.mxml
index a0b9ce5..ce66728 100755
--- a/TourDeFlex/TourDeFlex3/src/viewsource.mxml
+++ b/TourDeFlex/TourDeFlex3/src/viewsource.mxml
@@ -32,7 +32,12 @@
{
var files:Array = new Array();
// the first file shown will be the 
mxml source
-   files[0] = appUrl + .mxml;
+   if (appUrl.indexOf(.mxml) = 0 || 
appUrl.indexOf(.as) = 0) {
+   files[0] = appUrl;
+   }
+   else if (appUrl.indexOf(.swf) == 0) {
+   files[0] = appUrl + .mxml;
+   }

if (srcUrl != null  srcUrl != )
{
@@ -41,7 +46,7 @@
files = files.concat(otherSrc);
}
 
-   for (var i:int ; i  files.length ; i++)
+   for (var i:int = 0; i  files.length ; i++)
{
tabs[i] = new SourceTab();
tn.addChild(tabs[i]);



git commit: [flex-utilities] [refs/heads/develop] - fix issue with last checkin not display source code

2014-10-12 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop faa11c6a3 - 63ca2fa47


fix issue with last checkin not display source code


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

Branch: refs/heads/develop
Commit: 63ca2fa476e717bacf04c9c228d232efa03599a3
Parents: faa11c6
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Oct 13 11:13:13 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Oct 13 11:13:13 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/viewsource.mxml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/63ca2fa4/TourDeFlex/TourDeFlex3/src/viewsource.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/viewsource.mxml 
b/TourDeFlex/TourDeFlex3/src/viewsource.mxml
index ce66728..e3abe8b 100755
--- a/TourDeFlex/TourDeFlex3/src/viewsource.mxml
+++ b/TourDeFlex/TourDeFlex3/src/viewsource.mxml
@@ -35,7 +35,7 @@
if (appUrl.indexOf(.mxml) = 0 || 
appUrl.indexOf(.as) = 0) {
files[0] = appUrl;
}
-   else if (appUrl.indexOf(.swf) == 0) {
+   else if (appUrl.indexOf(.swf) == -1) {
files[0] = appUrl + .mxml;
}




[1/4] git commit: [flex-utilities] [refs/heads/develop] - remove filenames with spaces after them

2014-10-12 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop 63ca2fa47 - f10d93312


remove filenames with spaces after them


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

Branch: refs/heads/develop
Commit: acbcb58c36ab9cee3a9e44fdd25a4cd261f542d6
Parents: 63ca2fa
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Oct 13 16:46:09 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Oct 13 16:46:09 2014 +1100

--
 Squiggly/dictionaries/en_GB/README_en_GB.txt  | 309 -
 Squiggly/dictionaries/en_US/README_en_US.txt  | 309 -
 2 files changed, 618 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/acbcb58c/Squiggly/dictionaries/en_GB/README_en_GB.txt
--

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/acbcb58c/Squiggly/dictionaries/en_US/README_en_US.txt
--



[3/4] git commit: [flex-utilities] [refs/heads/develop] - fix up packaging

2014-10-12 Thread jmclean
fix up packaging


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

Branch: refs/heads/develop
Commit: 08ce6b0db0f13f8da1513abb9fab4c2214c7ee4f
Parents: 339d934
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Oct 13 16:46:54 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Oct 13 16:46:54 2014 +1100

--
 Squiggly/build.xml | 18 +-
 1 file changed, 17 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/08ce6b0d/Squiggly/build.xml
--
diff --git a/Squiggly/build.xml b/Squiggly/build.xml
index a6359b7..026706b 100644
--- a/Squiggly/build.xml
+++ b/Squiggly/build.xml
@@ -99,7 +99,9 @@
 include name=LICENSE /
 include name=NOTICE /
 include name=README /
-include name=RELEASE_NOTES /
+   include name=RELEASE_NOTES /
+   include name=CONTRIBUTING /
+   include name=CONTRIBUTORS /
 include name=**/*.xml /
 include name=**/*.mxml /
include name=**/*.as /
@@ -109,12 +111,14 @@
include name=**/*.sh /
include name=**/*.properties /
include name=docs/** /
+   include name=dictionaries/** /
exclude name=ane/** /
exclude name=main/ASDocExamples/** /
exclude name=main/Automation/** /
exclude name=main/Data/** /
exclude name=main/Demo/** /
exclude name=main/Tools/** /
+   exclude name=main/generated/** /
  /tarfileset
  /tar
/target
@@ -126,6 +130,8 @@
 include name=NOTICE /
 include name=README /
 include name=RELEASE_NOTES /
+   include name=CONTRIBUTING /
+   include name=CONTRIBUTORS /
 include name=**/*.xml /
 include name=**/*.mxml /
include name=**/*.as /
@@ -135,12 +141,14 @@
include name=**/*.sh /
include name=**/*.properties /
include name=docs/** /
+   include name=dictionaries/** /
exclude name=ane/** /
exclude name=main/ASDocExamples/** /
exclude name=main/Automation/** /
exclude name=main/Data/** /
exclude name=main/Demo/** /
exclude name=main/Tools/** /
+   exclude name=main/generated/** /
  /fileset
  /zip
/target
@@ -154,6 +162,8 @@
include name=NOTICE /
include name=README /
include name=RELEASE_NOTES /
+   include name=CONTRIBUTING /
+   include name=CONTRIBUTORS /
include name=**/*.xml /
include name=**/*.mxml /
include name=**/*.as /
@@ -163,6 +173,7 @@
include name=**/*.sh /
include name=**/*.properties /
include name=docs/** /
+   include name=dictionaries/** /
include name=**/*.swc /
exclude name=ane/** /
exclude name=main/ASDocExamples/** /
@@ -170,6 +181,7 @@
exclude name=main/Data/** /
exclude name=main/Demo/** /
exclude name=main/Tools/** /
+   exclude name=main/generated/** /
 /tarfileset
 /tar
/target
@@ -181,6 +193,8 @@
include name=NOTICE /
include name=README /
include name=RELEASE_NOTES /
+   include name=CONTRIBUTING /
+   include name=CONTRIBUTORS /
include name=**/*.xml /
include name=**/*.mxml /
include name=**/*.as /
@@ -190,6 +204,7 @@
include name=**/*.sh /
include name=**/*.properties /
include name=docs/** /
+   include name=dictionaries/** /
include name=**/*.swc /
exclude name=ane/** /
exclude name=main/ASDocExamples/** /
@@ -197,6 +212,7 @@
exclude 

[4/4] git commit: [flex-utilities] [refs/heads/develop] - update version to 1.1

2014-10-12 Thread jmclean
update version to 1.1


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

Branch: refs/heads/develop
Commit: f10d93312df3f70013656a3245d85b43493b
Parents: 08ce6b0
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Oct 13 16:47:14 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Oct 13 16:47:14 2014 +1100

--
 Squiggly/main/maven.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/f10d9331/Squiggly/main/maven.xml
--
diff --git a/Squiggly/main/maven.xml b/Squiggly/main/maven.xml
index ca013f4..7c8b84b 100644
--- a/Squiggly/main/maven.xml
+++ b/Squiggly/main/maven.xml
@@ -19,7 +19,7 @@
 --
 project default=install basedir=.
 
-property name=version value=1.0/
+property name=version value=1.1/
 
 !-- Set type to RELEASE in order to deploy to the release repo --
 property name=type value=SNAPSHOT/



[2/4] git commit: [flex-utilities] [refs/heads/develop] - minor change to release notes

2014-10-12 Thread jmclean
minor change to release notes


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

Branch: refs/heads/develop
Commit: 339d934fc4b8a32ba76ba747950971fa87868e15
Parents: acbcb58
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Oct 13 16:46:34 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Oct 13 16:46:34 2014 +1100

--
 Squiggly/RELEASE_NOTES | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/339d934f/Squiggly/RELEASE_NOTES
--
diff --git a/Squiggly/RELEASE_NOTES b/Squiggly/RELEASE_NOTES
index b3c7912..e791171 100644
--- a/Squiggly/RELEASE_NOTES
+++ b/Squiggly/RELEASE_NOTES
@@ -6,7 +6,7 @@ Squiggly 1.1 has the following changes from Squiggly 1.0:
 - Mavenized version of Squiggly
 - Added installer ant file
 - Added en_US and en_GB dictionaries
-- Nows work with halo and saprk components
+- Now works with both halo and saprk components
 
 
 Apche Flex Squiggly 1.0



git commit: [flex-utilities] [refs/heads/develop] - FLEX-34398 FLEX-34408

2014-10-10 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop add146d57 - 606524fd4


FLEX-34398 FLEX-34408


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

Branch: refs/heads/develop
Commit: 606524fd4f9efe4523f5fecd51b1a60d30ecd6d1
Parents: add146d
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 11 06:59:12 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 11 06:59:12 2014 +1100

--
 installer/src/InstallApacheFlex.mxml | 23 +++
 1 file changed, 23 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/606524fd/installer/src/InstallApacheFlex.mxml
--
diff --git a/installer/src/InstallApacheFlex.mxml 
b/installer/src/InstallApacheFlex.mxml
index 4579477..8f8146d 100644
--- a/installer/src/InstallApacheFlex.mxml
+++ b/installer/src/InstallApacheFlex.mxml
@@ -1066,6 +1066,8 @@ variables are not required because the locations of these 
pieces are known.

setXMLVariables(); // as AIR and Flash version may of 
changed

+   log(SDK version  + 
APACHE_FLEX_BIN_DISTRO_VERSION_DISPLAY);
+   
if (flexVersion.selectedItem.needsAIR) {
if (airVersionID)
log(AIR version  + airVersionID);
@@ -2304,6 +2306,7 @@ variables are not required because the locations of these 
pieces are known.
}

if (isAbort) {
+   log(abortInfo);

tracker.trackInstallerFailure(APACHE_FLEX_BIN_DISTRO_VERSION_DISPLAY, 
APACHE_FLEX_BIN_DISTRO_VERSION, 
_os.os + info= + abortInfo);
}
@@ -2814,6 +2817,17 @@ variables are not required because the locations of 
these pieces are known.
}

private function closeApplication(event:Event):void {
+   removeEventListener(Event.CLOSING, closeApplication);
+
+if (currentState == installState)
+{
+if (currentStep  stepLabels.length)
+{
+// User aborted the installation by closing the installer
+var activeStep:StepItem = getActiveStepItem();
+
abortInstallation(_viewResourceConstants.INFO_USER_ABORT_INSTALLATION + 
activeStep.label);
+}
+}
// TODO only enable close button when finished or when 
an error occurs
// TODO anything we need to clean up?
if (console  !console.closed)
@@ -2822,6 +2836,15 @@ variables are not required because the locations of 
these pieces are known.
close();
}

+protected function getActiveStepItem():StepItem {
+for each (var s:StepItem in _installationSteps) {
+if (s.status == StepItem.ACTIVE) {
+return s;
+}
+}
+return null;
+}
+   
protected function clickLogo(event:MouseEvent):void {
navigateToURL(new 
URLRequest(Constants.APACHE_FLEX_URL));
}



git commit: [flex-utilities] [refs/heads/develop] - missed closed event handler from patch

2014-10-10 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop 020e07952 - 859ca1d65


missed closed event handler from patch


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

Branch: refs/heads/develop
Commit: 859ca1d651dc628257a3b707e56603bbe9117028
Parents: 020e079
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 11 08:02:16 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 11 08:02:16 2014 +1100

--
 installer/src/InstallApacheFlex.mxml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/859ca1d6/installer/src/InstallApacheFlex.mxml
--
diff --git a/installer/src/InstallApacheFlex.mxml 
b/installer/src/InstallApacheFlex.mxml
index a475d15..83e61ad 100644
--- a/installer/src/InstallApacheFlex.mxml
+++ b/installer/src/InstallApacheFlex.mxml
@@ -395,7 +395,8 @@ variables are not required because the locations of these 
pieces are known.
protected function 
handleApplicationComplete(event:FlexEvent):void {
 CursorManager.setBusyCursor();

loaderInfo.uncaughtErrorEvents.addEventListener(UncaughtErrorEvent.UNCAUGHT_ERROR,
 uncaughtErrorHandler);
-updateWindow();
+addEventListener(Event.CLOSING, closeApplication);
+   updateWindow();
var hasInternet:Boolean = false;
var networkAdapters:Vector.NetworkInterface = 
NetworkInfo.networkInfo.findInterfaces();
for each (var networkAdapter:NetworkInterface in 
networkAdapters)



[2/2] git commit: [flex-utilities] [refs/heads/develop] - make clear the version logged is the installer version

2014-10-10 Thread jmclean
make clear the version logged is the installer version


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

Branch: refs/heads/develop
Commit: 8320e470f8ca745425285e9da2776079de456db7
Parents: 906ecb7
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 11 08:08:07 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 11 08:08:07 2014 +1100

--
 installer/src/InstallApacheFlex.mxml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/8320e470/installer/src/InstallApacheFlex.mxml
--
diff --git a/installer/src/InstallApacheFlex.mxml 
b/installer/src/InstallApacheFlex.mxml
index 83e61ad..0b76f4c 100644
--- a/installer/src/InstallApacheFlex.mxml
+++ b/installer/src/InstallApacheFlex.mxml
@@ -1005,7 +1005,7 @@ variables are not required because the locations of these 
pieces are known.
 var currentVersion:String = 
applicationDescriptor.xmlns::versionNumber.toString();
 
 // Log the Installer version to help with any support issues 
that arise.
-log(Version  + currentVersion +  ( + _os.os + ), 0);
+log(Installer version  + currentVersion +  ( + _os.os + 
), 0);
 loggedVersion = true;
 }
 }



[1/2] git commit: [flex-utilities] [refs/heads/develop] - add user abort message to en_US

2014-10-10 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop 859ca1d65 - 8320e470f


add user abort message to en_US


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

Branch: refs/heads/develop
Commit: 906ecb712552d23cdbdc0a656b6884f6c868c2da
Parents: 859ca1d
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 11 08:03:21 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 11 08:03:21 2014 +1100

--
 installer/src/properties/en_US.properties | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/906ecb71/installer/src/properties/en_US.properties
--
diff --git a/installer/src/properties/en_US.properties 
b/installer/src/properties/en_US.properties
index 6ea6616..0bf9bb7 100644
--- a/installer/src/properties/en_US.properties
+++ b/installer/src/properties/en_US.properties
@@ -66,6 +66,7 @@ FETCH_MIRROR_LIST=Trying to fetch the mirror list from 
Apache.org...
 FETCH_MIRROR_LIST_DONE=Fetched the mirror list from Apache.org.
 FETCH_MIRROR_LIST_PARSED=Parsed the mirror list using the country code and got 
this domain: 
 INFO_ABORT_INSTALLATION=Installation aborted
+INFO_USER_ABORT_INSTALLATION=User closed the installer before installation was 
completed. Current step: 
 INFO_APP_INVOKED=Invoked in command line mode with the following arguments: 
 INFO_CREATING_FLEX_HOME=Creating Apache Flex home
 INFO_CREATING_TEMP_DIR=Creating temporary directory



git commit: [flex-utilities] [refs/heads/develop] - FLEX-34446 give warning when trying to write to director you don't have permission to do so

2014-10-10 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop 8320e470f - 543bdd06e


FLEX-34446 give warning when trying to write to director you don't have 
permission to do so


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

Branch: refs/heads/develop
Commit: 543bdd06ec90a5364beb0bd2ee73d303fef1a833
Parents: 8320e47
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 11 08:33:51 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 11 08:33:51 2014 +1100

--
 installer/src/InstallApacheFlex.mxml  | 56 +-
 installer/src/properties/en_US.properties |  1 +
 2 files changed, 48 insertions(+), 9 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/543bdd06/installer/src/InstallApacheFlex.mxml
--
diff --git a/installer/src/InstallApacheFlex.mxml 
b/installer/src/InstallApacheFlex.mxml
index 0b76f4c..bbb9220 100644
--- a/installer/src/InstallApacheFlex.mxml
+++ b/installer/src/InstallApacheFlex.mxml
@@ -1096,14 +1096,27 @@ variables are not required because the locations of 
these pieces are known.
 loader.addEventListener(ErrorEvent.ERROR, 
handleInstallerXMLError);
 loader.addEventListener(IOErrorEvent.IO_ERROR, 
handleInstallerXMLError);
 
-loader.load(req);  
+loader.load(req);
 }
 else {
 showDirectoryState();
-   }
-   }
-   
-   protected function 
handleFirstStepNextBtnClick(event:MouseEvent):void {
+}
+}
+
+protected function handleFirstStepNextBtnClick(event:MouseEvent):void
+{
+// Quick check to see if the selected directory is writable
+try {
+var f:File = new File(_flexHome + File.separator + flex.txt);
+checkDirWritable(f);
+} catch (e:Error) {
+
log(_viewResourceConstants.ERROR_UNABLE_TO_CREATE_TEMP_DIRECTORY);
+flexSDKTxtInput.errorString = 
_viewResourceConstants.ERROR_DIR_REQUIRE_ADMIN_RIGHTS;
+flexSDKTxtInput.prompt = 
_viewResourceConstants.ERROR_DIR_REQUIRE_ADMIN_RIGHTS;
+
updateActivityStep(_viewResourceConstants.STEP_CREATE_DIRECTORIES, 
StepItem.ERROR);
+return;
+}
+
 showOptionsState();
 }
 
@@ -1313,10 +1326,34 @@ variables are not required because the locations of 
these pieces are known.
file.addEventListener(Event.SELECT, flexSDKDirSelected, 
false, 0, true);

file.browseForDirectory(_viewResourceConstants.INFO_SELECT_DIRECTORY);
}
-   
-   protected function flexSDKDirSelected(event:Event):void {
-   var selectedDir:File = File(event.target);
+
+protected function checkDirWritable(file:File):void
+{
+var ba:ByteArray = new ByteArray();
+ba.writeUTFBytes(1);
+writeFileToDirectory(file, ba);
+file.deleteFile();
+}
+
+protected function flexSDKDirSelected(event:Event):void
+{
+   var selectedDir:File = File(event.target);
var overlay:Boolean = flexVersion.selectedItem.overlay;
+
+   // Quick check to see if the selected directory is 
writable
+try {
+var f:File = new File(selectedDir.nativePath + File.separator 
+ flex.txt);
+checkDirWritable(f);
+} catch (e:Error) {
+
log(_viewResourceConstants.ERROR_UNABLE_TO_CREATE_TEMP_DIRECTORY);
+log(_viewResourceConstants.ERROR_DIR_REQUIRE_ADMIN_RIGHTS);
+flexSDKTxtInput.text = selectedDir.nativePath;
+flexSDKTxtInput.errorString = 
_viewResourceConstants.ERROR_DIR_REQUIRE_ADMIN_RIGHTS +  :  + 
selectedDir.nativePath; // tooltip
+flexSDKTxtInput.prompt = 
_viewResourceConstants.ERROR_DIR_REQUIRE_ADMIN_RIGHTS; // field
+
updateActivityStep(_viewResourceConstants.STEP_CREATE_DIRECTORIES, 
StepItem.ERROR);
+return;
+}
+   
 overlaying = overlay;
if (!overlay)
 {
@@ -1329,7 +1366,8 @@ variables are not required because the locations of these 
pieces are known.

[1/5] git commit: [flex-utilities] [refs/heads/develop] - fix ui path and update version

2014-10-10 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop ffccc7ece - 8de9b1a34


fix ui path and update version


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

Branch: refs/heads/develop
Commit: cb9548453dcc03d725186eb3a617c1c3a4abb107
Parents: ffccc7e
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 11 12:43:27 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 11 12:43:27 2014 +1100

--
 Squiggly/build.xml | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/cb954845/Squiggly/build.xml
--
diff --git a/Squiggly/build.xml b/Squiggly/build.xml
index 7c68f2f..a6359b7 100644
--- a/Squiggly/build.xml
+++ b/Squiggly/build.xml
@@ -28,7 +28,7 @@
 isset property=env.FLEX_HOME /
 /condition

-property name=version value=1.0 /
+property name=version value=1.1 /

 path id=flexTasks.path
 fileset dir=${FLEX_HOME}
@@ -68,10 +68,10 @@
doc-classes 
class=com.adobe.linguistics.spelling.framework.ResourceTable/
doc-classes 
class=com.adobe.linguistics.spelling.framework.SpellingConfiguration/
   
doc-classes 
class=com.adobe.linguistics.spelling.framework.SpellingService/  
   
-   doc-classes 
class=com.adobe.linguistics.spelling.ui.IHighlighter/
-   doc-classes 
class=com.adobe.linguistics.spelling.ui.HaloHighlighter/
-   doc-classes 
class=com.adobe.linguistics.spelling.ui.SparkHighlighter/
-   doc-classes 
class=com.adobe.linguistics.spelling.ui.TLFHighlighter/
+   doc-classes 
class=com.adobe.linguistics.spelling.framework.ui.IHighlighter/
+   doc-classes 
class=com.adobe.linguistics.spelling.framework.ui.HaloHighlighter/
+   doc-classes 
class=com.adobe.linguistics.spelling.framework.ui.SparkHighlighter/
+   doc-classes 
class=com.adobe.linguistics.spelling.framework.ui.TLFHighlighter/

compiler.source-path 
path-element=main/SpellingUI/src/
compiler.source-path 
path-element=main/SpellingUITLF/src/
@@ -80,7 +80,7 @@
compiler.source-path 
path-element=main/SpellingFramework/src/

package name=com.adobe.linguistics.spelling 
description=This package providing spell checking functionality to your action 
script applications. This includes the core spell checking engine and the 
optional SpellUI class for easy integration with your existing Flex projects. 
/
-   package name=com.adobe.linguistics.spelling.ui 
description=This package provides text highlighting related functionalities. 
/
+   package 
name=com.adobe.linguistics.spelling.framework.ui description=This package 
provides text highlighting related functionalities. /
package 
name=com.adobe.linguistics.spelling.framework description=This package 
provides spelling service and spelling configuration related functionalities. 
/
package name=com.adobe.linguistics.utils 
description=This package provides text parsing and tokenizing related 
classes. /
/asdoc
@@ -207,4 +207,4 @@
/delete
delete dir=${basedir}/out/ 
 /target
-/project
\ No newline at end of file
+/project



[4/5] git commit: [flex-utilities] [refs/heads/develop] - add installer script

2014-10-10 Thread jmclean
add installer script


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

Branch: refs/heads/develop
Commit: 711e4544f65562023fc5a4bc83f8f7edcb012435
Parents: cbe8bfa
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 11 12:44:40 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 11 12:44:40 2014 +1100

--
 Squiggly/installer.xml | 127 
 1 file changed, 127 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/711e4544/Squiggly/installer.xml
--
diff --git a/Squiggly/installer.xml b/Squiggly/installer.xml
new file mode 100644
index 000..c936408
--- /dev/null
+++ b/Squiggly/installer.xml
@@ -0,0 +1,127 @@
+?xml version=1.0?
+!--
+
+  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.
+
+--
+
+project name=squiggly_install default=install basedir=.
+
+!-- Required for OSX 10.6 / Snow Leopard Performance. --
+!-- Java 7 on Mac requires OSX 10.7.3 or higher and is 64-bit only --
+!-- local.d32 is set/used in build.properties so this needs to be done 
first. --
+condition property=local.d32 value=-d32
+and
+os family=windows/
+equals arg1=${sun.arch.data.model} arg2=64/
+equals arg1=${os.arch} arg2=x86_64/
+equals arg1=${ant.java.version} arg2=1.6/
+/and
+/condition
+   
+condition property=isMacOrLinux value=mac
+   or
+   os family=mac /
+   os family=unix /
+   /or
+/condition
+condition property=isWindows value=windows
+os family=windows /
+/condition
+   
+   property environment=env/
+condition property=FLEX_HOME value=${env.FLEX_HOME}
+isset property=env.FLEX_HOME /
+/condition
+
+property file=${FLEX_HOME}/local.properties/
+property file=${FLEX_HOME}/build.properties/
+property file=${basedir}/${bundle}.properties/
+
+   property name=download.dir value=${FLEX_HOME}/in/
+   property name=unpack.dir value=${FLEX_HOME}/squiggly/
+   property name=mirror.url 
value=http://flex.apache.org/single-mirror-url.cgi; /
+   
+property name=squiggly.url.folder value=flex/squiggly/1.1 /
+   
+target name=file-setup-win if=isWindows
+   property name=squiggly.url.file 
value=apache-flex-squiggly-1.1-bin.zip /
+   property name=squiggly.url.md5 
value=34a0d8d445f8f1307cad35e25d1377bd /
+/target
+   
+target name=file-setup-unix if=isMacOrLinux
+   property name=squiggly.url.file 
value=apache-flex-squiggly-1.1-bin.tar.gz /
+   property name=squiggly.url.md5 
value=ea03691ec15f625c5281e0d01dcc9570 /
+/target
+
+target name=install 
depends=file-setup-win,file-setup-unix,squiggly-download-unpack 
description=Adds squiggly to an Apache Flex SDK
+delete dir=${download.dir} /
+echoSquiggly installed/echo
+/target
+
+target name=squiggly-download-unpack description=Downloads squiggly 
and copies into the Apache Flex SDK
+mkdir dir=${download.dir}/
+   
+   get src=${mirror.url} dest=${download.dir}/mirror.txt /
+   replace file=${download.dir}/mirror.txt token=lt;pgt; /
+   replace file=${download.dir}/mirror.txt token=lt;/pgt; /
+   loadfile property=squiggly.url.server 
srcFile=${download.dir}/mirror.txt /
+   
+   echoDownloading 
${squiggly.url.server}/${squiggly.url.folder}/${squiggly.url.file}/echo
+
+   antcall target=download-check-md5
+param name=domain value=${squiggly.url.server} /
+param name=folder value=${squiggly.url.folder} /
+param name=file value=${squiggly.url.file} /
+param name=dest value=${download.dir}/${squiggly.url.file}/
+   param name=failmessage 

[5/5] git commit: [flex-utilities] [refs/heads/develop] - fix ui path

2014-10-10 Thread jmclean
fix ui path


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

Branch: refs/heads/develop
Commit: 8de9b1a34fd8cb525c96cf7a42d01af95404871a
Parents: 711e454
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 11 12:45:31 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 11 12:45:31 2014 +1100

--
 .../src/com/adobe/linguistics/spelling/SpellUIForTLF.as  | 8 
 .../src/com/adobe/linguistics/spelling/ui/TLFHighlighter.as  | 2 +-
 .../com/adobe/linguistics/spelling/ui/TLFWordProcessor.as| 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/8de9b1a3/Squiggly/ane/Squiggly/AdobeSpellingUITLF/src/com/adobe/linguistics/spelling/SpellUIForTLF.as
--
diff --git 
a/Squiggly/ane/Squiggly/AdobeSpellingUITLF/src/com/adobe/linguistics/spelling/SpellUIForTLF.as
 
b/Squiggly/ane/Squiggly/AdobeSpellingUITLF/src/com/adobe/linguistics/spelling/SpellUIForTLF.as
index 96c496b..157dc48 100644
--- 
a/Squiggly/ane/Squiggly/AdobeSpellingUITLF/src/com/adobe/linguistics/spelling/SpellUIForTLF.as
+++ 
b/Squiggly/ane/Squiggly/AdobeSpellingUITLF/src/com/adobe/linguistics/spelling/SpellUIForTLF.as
@@ -23,10 +23,10 @@ package com.adobe.linguistics.spelling
import com.adobe.linguistics.spelling.framework.ResourceTable;
import com.adobe.linguistics.spelling.framework.SpellingConfiguration;
import com.adobe.linguistics.spelling.framework.SpellingService;
-   import com.adobe.linguistics.spelling.ui.IHighlighter;
-   import com.adobe.linguistics.spelling.ui.IWordProcessor;
-   import com.adobe.linguistics.spelling.ui.TLFHighlighter;
-   import com.adobe.linguistics.spelling.ui.TLFWordProcessor;
+   import com.adobe.linguistics.spelling.ui.framework.IHighlighter;
+   import com.adobe.linguistics.spelling.ui.framework.IWordProcessor;
+   import com.adobe.linguistics.spelling.ui.framework.TLFHighlighter;
+   import com.adobe.linguistics.spelling.ui.framework.TLFWordProcessor;
import com.adobe.linguistics.utils.TextFilter;
import com.adobe.linguistics.utils.TextTokenizer;
import com.adobe.linguistics.utils.Token;

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/8de9b1a3/Squiggly/ane/Squiggly/AdobeSpellingUITLF/src/com/adobe/linguistics/spelling/ui/TLFHighlighter.as
--
diff --git 
a/Squiggly/ane/Squiggly/AdobeSpellingUITLF/src/com/adobe/linguistics/spelling/ui/TLFHighlighter.as
 
b/Squiggly/ane/Squiggly/AdobeSpellingUITLF/src/com/adobe/linguistics/spelling/ui/TLFHighlighter.as
index 3c8c7e9..69da9fe 100644
--- 
a/Squiggly/ane/Squiggly/AdobeSpellingUITLF/src/com/adobe/linguistics/spelling/ui/TLFHighlighter.as
+++ 
b/Squiggly/ane/Squiggly/AdobeSpellingUITLF/src/com/adobe/linguistics/spelling/ui/TLFHighlighter.as
@@ -35,7 +35,7 @@ package com.adobe.linguistics.spelling.ui
import flashx.textLayout.edit.SelectionManager;
import flashx.textLayout.elements.TextFlow;
import flashx.textLayout.tlf_internal;
-   import com.adobe.linguistics.spelling.ui.IHighlighter;
+   import com.adobe.linguistics.spelling.framework.ui.IHighlighter;
 
 
use namespace tlf_internal; 

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/8de9b1a3/Squiggly/ane/Squiggly/AdobeSpellingUITLF/src/com/adobe/linguistics/spelling/ui/TLFWordProcessor.as
--
diff --git 
a/Squiggly/ane/Squiggly/AdobeSpellingUITLF/src/com/adobe/linguistics/spelling/ui/TLFWordProcessor.as
 
b/Squiggly/ane/Squiggly/AdobeSpellingUITLF/src/com/adobe/linguistics/spelling/ui/TLFWordProcessor.as
index 8cb3197..dfe8791 100644
--- 
a/Squiggly/ane/Squiggly/AdobeSpellingUITLF/src/com/adobe/linguistics/spelling/ui/TLFWordProcessor.as
+++ 
b/Squiggly/ane/Squiggly/AdobeSpellingUITLF/src/com/adobe/linguistics/spelling/ui/TLFWordProcessor.as
@@ -36,7 +36,7 @@ package com.adobe.linguistics.spelling.ui
import flashx.textLayout.container.ContainerController;
import flashx.textLayout.elements.FlowLeafElement;
import flashx.textLayout.elements.ParagraphElement;
-   import com.adobe.linguistics.spelling.ui.IWordProcessor;
+   import com.adobe.linguistics.spelling.framework.ui.IWordProcessor;

use namespace tlf_internal; 




[3/5] git commit: [flex-utilities] [refs/heads/develop] - updated release notes

2014-10-10 Thread jmclean
updated release notes


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

Branch: refs/heads/develop
Commit: cbe8bfadaa5d3a07c130d183e0a6da40f9cfeb4a
Parents: 381e573
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Oct 11 12:44:08 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Oct 11 12:44:08 2014 +1100

--
 Squiggly/RELEASE_NOTES | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/cbe8bfad/Squiggly/RELEASE_NOTES
--
diff --git a/Squiggly/RELEASE_NOTES b/Squiggly/RELEASE_NOTES
index ca5315a..b3c7912 100644
--- a/Squiggly/RELEASE_NOTES
+++ b/Squiggly/RELEASE_NOTES
@@ -4,10 +4,9 @@ Apche Flex Squiggly 1.1
 
 Squiggly 1.1 has the following changes from Squiggly 1.0:
 - Mavenized version of Squiggly
+- Added installer ant file
 - Added en_US and en_GB dictionaries
-
-The following bugs have been fixed:
-
+- Nows work with halo and saprk components
 
 
 Apche Flex Squiggly 1.0



svn commit: r925133 - in /websites/production/flex: cgi-bin/ content/

2014-10-09 Thread jmclean
Author: jmclean
Date: Thu Oct  9 06:05:50 2014
New Revision: 925133

Log:
add new logos

Added:
websites/production/flex/cgi-bin/
  - copied from r925132, websites/staging/flex/trunk/cgi-bin/
websites/production/flex/content/
  - copied from r925132, websites/staging/flex/trunk/content/



[15/16] git commit: [flex-utilities] [refs/heads/develop] - change to use newer version of the UI files

2014-10-08 Thread jmclean
change to use newer version of the UI files


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

Branch: refs/heads/develop
Commit: 0d3d1aaa436aa42a03b2562617e3388dccf23256
Parents: 130c4cc
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Oct 9 14:05:34 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Oct 9 14:05:34 2014 +1100

--
 .../src/com/adobe/linguistics/spelling/SpellUIForTLF.as  | 8 
 .../adobe/linguistics/spelling/SpellingContextMenuForTLF.as  | 8 
 .../spelling/SquigglyCustomContainerController.as| 8 
 3 files changed, 12 insertions(+), 12 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/0d3d1aaa/Squiggly/main/SpellingUITLF/src/com/adobe/linguistics/spelling/SpellUIForTLF.as
--
diff --git 
a/Squiggly/main/SpellingUITLF/src/com/adobe/linguistics/spelling/SpellUIForTLF.as
 
b/Squiggly/main/SpellingUITLF/src/com/adobe/linguistics/spelling/SpellUIForTLF.as
index e2bbb60..7daa76d 100644
--- 
a/Squiggly/main/SpellingUITLF/src/com/adobe/linguistics/spelling/SpellUIForTLF.as
+++ 
b/Squiggly/main/SpellingUITLF/src/com/adobe/linguistics/spelling/SpellUIForTLF.as
@@ -23,10 +23,10 @@ package com.adobe.linguistics.spelling
import com.adobe.linguistics.spelling.framework.ResourceTable;
import com.adobe.linguistics.spelling.framework.SpellingConfiguration;
import com.adobe.linguistics.spelling.framework.SpellingService;
-   import com.adobe.linguistics.spelling.ui.IHighlighter;
-   import com.adobe.linguistics.spelling.ui.IWordProcessor;
-   import com.adobe.linguistics.spelling.ui.TLFHighlighter;
-   import com.adobe.linguistics.spelling.ui.TLFWordProcessor;
+   import com.adobe.linguistics.spelling.framework.ui.IHighlighter;
+   import com.adobe.linguistics.spelling.framework.ui.IWordProcessor;
+   import com.adobe.linguistics.spelling.framework.ui.TLFHighlighter;
+   import com.adobe.linguistics.spelling.framework.ui.TLFWordProcessor;
import com.adobe.linguistics.utils.TextTokenizer;
import com.adobe.linguistics.utils.Token;


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/0d3d1aaa/Squiggly/main/SpellingUITLF/src/com/adobe/linguistics/spelling/SpellingContextMenuForTLF.as
--
diff --git 
a/Squiggly/main/SpellingUITLF/src/com/adobe/linguistics/spelling/SpellingContextMenuForTLF.as
 
b/Squiggly/main/SpellingUITLF/src/com/adobe/linguistics/spelling/SpellingContextMenuForTLF.as
index ccc3c78..8d6d124 100644
--- 
a/Squiggly/main/SpellingUITLF/src/com/adobe/linguistics/spelling/SpellingContextMenuForTLF.as
+++ 
b/Squiggly/main/SpellingUITLF/src/com/adobe/linguistics/spelling/SpellingContextMenuForTLF.as
@@ -22,10 +22,10 @@ package com.adobe.linguistics.spelling
import com.adobe.linguistics.spelling.SpellUIForTLF;
import com.adobe.linguistics.spelling.SquigglyCustomContainerController;
import com.adobe.linguistics.spelling.framework.SpellingService;
-   import com.adobe.linguistics.spelling.ui.IHighlighter;
-   import com.adobe.linguistics.spelling.ui.IWordProcessor;
-   import com.adobe.linguistics.spelling.ui.TLFHighlighter;
-   import com.adobe.linguistics.spelling.ui.TLFWordProcessor;
+   import com.adobe.linguistics.spelling.framework.ui.IHighlighter;
+   import com.adobe.linguistics.spelling.framework.ui.IWordProcessor;
+   import com.adobe.linguistics.spelling.framework.ui.TLFHighlighter;
+   import com.adobe.linguistics.spelling.framework.ui.TLFWordProcessor;
import com.adobe.linguistics.utils.TextTokenizer;
import com.adobe.linguistics.utils.Token;


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/0d3d1aaa/Squiggly/main/SpellingUITLF/src/com/adobe/linguistics/spelling/SquigglyCustomContainerController.as
--
diff --git 
a/Squiggly/main/SpellingUITLF/src/com/adobe/linguistics/spelling/SquigglyCustomContainerController.as
 
b/Squiggly/main/SpellingUITLF/src/com/adobe/linguistics/spelling/SquigglyCustomContainerController.as
index 9ea0f9a..8adc994 100644
--- 
a/Squiggly/main/SpellingUITLF/src/com/adobe/linguistics/spelling/SquigglyCustomContainerController.as
+++ 
b/Squiggly/main/SpellingUITLF/src/com/adobe/linguistics/spelling/SquigglyCustomContainerController.as
@@ -20,10 +20,10 @@ package com.adobe.linguistics.spelling
 {
import 

[01/16] git commit: [flex-utilities] [refs/heads/develop] - update to 1.2

2014-10-08 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop 45898c72c - add146d57


update to 1.2


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

Branch: refs/heads/develop
Commit: 5ca92c8ccd2214183d9e0792547e6ddb80829f8e
Parents: 672be37
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Oct 9 13:51:54 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Oct 9 13:51:54 2014 +1100

--
 TourDeFlex/TourDeFlex3/README | 21 +++--
 1 file changed, 11 insertions(+), 10 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/5ca92c8c/TourDeFlex/TourDeFlex3/README
--
diff --git a/TourDeFlex/TourDeFlex3/README b/TourDeFlex/TourDeFlex3/README
index f09ffd9..695b151 100644
--- a/TourDeFlex/TourDeFlex3/README
+++ b/TourDeFlex/TourDeFlex3/README
@@ -18,9 +18,9 @@ How to build Tour De Flex using ant (no IDE is required)
 
==
 
 1.  On Linux or Mac un tar/gzip the source distribution:
-   tar -zxvf apache-flex-tour-de-flex-component-explorer-1.0.tar.gz
+   tar -zxvf apache-flex-tour-de-flex-component-explorer-1.2.tar.gz
Or if on windows unzip 
-   apache-flex-tour-de-flex-component-explorer-1.0.zip
+   apache-flex-tour-de-flex-component-explorer-1.2.zip
 
 2.  In the base directory, run:
 ant compile
@@ -43,14 +43,15 @@ Some other useful ant targets
 There are several other useful ant targets. Note that compile-shell is 
required if you want
 changes to explorer.xml to take effect.
 
-compile-shell   compile explorer shell
-compile-mx  compile mx examples
-compile-spark   compile first set of spark examples
-compile-spark2  compile second set of spark examples
-compile-spark3  compile third set of spark examples
-compile-apache  compile apache examples
-package-tar tar up all source files
-package-zip zip up all source files
+compile-shell compile explorer shell
+compile-mxcompile mx examples
+compile-spark compile first set of spark examples
+compile-spark2compile second set of spark examples
+compile-spark3compile third set of spark examples
+compile-apachecompile apache examples
+compile-squiggly  compile apache squiggly examples
+package-tar   tar up all source files
+package-zip   zip up all source files
 
 
==
 Compiling a single example



[10/16] git commit: [flex-utilities] [refs/heads/develop] - FLEX-3459 FLEX-34590 FLEX-34589

2014-10-08 Thread jmclean
FLEX-3459 FLEX-34590 FLEX-34589


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

Branch: refs/heads/develop
Commit: ba723d9f60d8c3343fe374b5e8ee95c5d7d328b2
Parents: 6b5d9dc
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Oct 9 14:01:15 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Oct 9 14:01:15 2014 +1100

--
 installer/src/InstallApacheFlex.mxml | 63 +--
 1 file changed, 43 insertions(+), 20 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/ba723d9f/installer/src/InstallApacheFlex.mxml
--
diff --git a/installer/src/InstallApacheFlex.mxml 
b/installer/src/InstallApacheFlex.mxml
index 399913c..77e98b5 100644
--- a/installer/src/InstallApacheFlex.mxml
+++ b/installer/src/InstallApacheFlex.mxml
@@ -285,6 +285,7 @@ variables are not required because the locations of these 
pieces are known.

private var languageOverride:String;
private var configOverride:String = ;
+   private var installOverride:String = ;
 
 private var overlaying:Boolean;
 private var usingXML:Object;
@@ -371,6 +372,9 @@ variables are not required because the locations of these 
pieces are known.
if (s.indexOf(-config=) == 0) {
configOverride = s.substring(8);
}
+   if (s.indexOf(-install=) == 0) {
+   installOverride = s.substring(9);
+   }
 if (s.indexOf(-debug) == 0) {
 debugMode = true;
 }
@@ -958,10 +962,18 @@ variables are not required because the locations of these 
pieces are known.
 || APACHE_FLEX_BIN_DISTRO_PATH.substr(0, 
Constants.FILE_PREFIX.length) == Constants.FILE_PREFIX
 || APACHE_FLEX_BIN_DISTRO_PATH.substr(0, 
Constants.HTTPS_PREFIX.length) == Constants.HTTPS_PREFIX) {
 APACHE_FLEX_BIN_DISTRO_URL = APACHE_FLEX_BIN_DISTRO_PATH + 
APACHE_FLEX_BIN_DISTRO_FILE;
-APACHE_FLEX_BIN_INSTALLER_URL = APACHE_FLEX_BIN_DISTRO_PATH + 
APACHE_FLEX_BIN_INSTALLER_FILE;
+   if (installOverride != ) {
+   APACHE_FLEX_BIN_INSTALLER_URL = 
installOverride;
+   } else {
+   APACHE_FLEX_BIN_INSTALLER_URL = 
APACHE_FLEX_BIN_DISTRO_PATH + APACHE_FLEX_BIN_INSTALLER_FILE;
+   }
 } else {
 APACHE_FLEX_BIN_DISTRO_URL = 
useMirrorPath(_mirrorURLUtil.mirrorURL) + APACHE_FLEX_BIN_DISTRO_PATH + 
APACHE_FLEX_BIN_DISTRO_FILE;
-APACHE_FLEX_BIN_INSTALLER_URL = MD5CompareUtil.MD5_DOMAIN + 
APACHE_FLEX_BIN_DISTRO_PATH + APACHE_FLEX_BIN_INSTALLER_FILE;
+   if (installOverride != ) {
+   APACHE_FLEX_BIN_INSTALLER_URL = 
installOverride;
+   } else {
+   APACHE_FLEX_BIN_INSTALLER_URL = 
MD5CompareUtil.MD5_DOMAIN + APACHE_FLEX_BIN_DISTRO_PATH + 
APACHE_FLEX_BIN_INSTALLER_FILE;
+   }
 }
 
 if (installerAppPath.substr(0, Constants.URL_PREFIX.length) != 
Constants.URL_PREFIX) {
@@ -1054,15 +1066,19 @@ variables are not required because the locations of 
these pieces are known.

setXMLVariables(); // as AIR and Flash version may of 
changed

-   if (airVersionID)
-   log(AIR version  + airVersionID);
-   else
-   log(AIR version  + AIR_VERSION);
+   if (flexVersion.selectedItem.needsAIR) {
+   if (airVersionID)
+   log(AIR version  + airVersionID);
+   else
+   log(AIR version  + AIR_VERSION);
+   }

-   if (flashVersionID)
-   log(Flash Player version  + flashVersionID);
-   else
-   log(Flash Player version  + 
FLASH_PLAYER_VERSION);
+   if (flexVersion.selectedItem.needsFlash) {
+   if 

[06/16] git commit: [flex-utilities] [refs/heads/develop] - add squiggly examples

2014-10-08 Thread jmclean
add squiggly examples


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

Branch: refs/heads/develop
Commit: a3bf10ba12e6524b91b9aa84a87c9b0890a69064
Parents: e7f847f
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Oct 9 13:56:10 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Oct 9 13:56:10 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/explorer.xml | 4 
 1 file changed, 4 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/a3bf10ba/TourDeFlex/TourDeFlex3/src/explorer.xml
--
diff --git a/TourDeFlex/TourDeFlex3/src/explorer.xml 
b/TourDeFlex/TourDeFlex3/src/explorer.xml
index 8f575f5..1a9d3de 100755
--- a/TourDeFlex/TourDeFlex3/src/explorer.xml
+++ b/TourDeFlex/TourDeFlex3/src/explorer.xml
@@ -475,6 +475,10 @@
node label=MaskedTextInput 
app=apache/controls/SparkRichTextEditorExample/
/node 
 --
+node label=Apache Flex Squiggly 
app=apache/Squiggly
+   node label=MX Spelling Example 
app=apache/squiggly/SpellingExample/
+   node label=Spark Spelling Example 
app=apache/squiggly/SpellingExExample/
+   /node
/node
/node
 /compTree



[14/16] git commit: [flex-utilities] [refs/heads/develop] - change to use newer version of the UI files

2014-10-08 Thread jmclean
change to use newer version of the UI files


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

Branch: refs/heads/develop
Commit: 130c4ccc1f38584896c184114fc3df77aba4062b
Parents: b03c8e3
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Oct 9 14:05:05 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Oct 9 14:05:05 2014 +1100

--
 .../src/com/adobe/linguistics/spelling/SpellUI.as   | 12 ++--
 .../adobe/linguistics/spelling/SpellingContextMenu.as   |  2 +-
 2 files changed, 7 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/130c4ccc/Squiggly/main/SpellingUIEx/src/com/adobe/linguistics/spelling/SpellUI.as
--
diff --git 
a/Squiggly/main/SpellingUIEx/src/com/adobe/linguistics/spelling/SpellUI.as 
b/Squiggly/main/SpellingUIEx/src/com/adobe/linguistics/spelling/SpellUI.as
index 317e05b..945c4a1 100644
--- a/Squiggly/main/SpellingUIEx/src/com/adobe/linguistics/spelling/SpellUI.as
+++ b/Squiggly/main/SpellingUIEx/src/com/adobe/linguistics/spelling/SpellUI.as
@@ -23,12 +23,12 @@ package com.adobe.linguistics.spelling
import com.adobe.linguistics.spelling.framework.ResourceTable;
import com.adobe.linguistics.spelling.framework.SpellingConfiguration;
import com.adobe.linguistics.spelling.framework.SpellingService;
-import com.adobe.linguistics.spelling.ui.HaloHighlighter;
-import com.adobe.linguistics.spelling.ui.IHighlighter;
-import com.adobe.linguistics.spelling.ui.SparkHighlighter;
-import com.adobe.linguistics.spelling.ui.HaloWordProcessor;
-import com.adobe.linguistics.spelling.ui.IWordProcessor;
-import com.adobe.linguistics.spelling.ui.SparkWordProcessor;
+import com.adobe.linguistics.spelling.framework.ui.HaloHighlighter;
+import com.adobe.linguistics.spelling.framework.ui.IHighlighter;
+import com.adobe.linguistics.spelling.framework.ui.SparkHighlighter;
+import com.adobe.linguistics.spelling.framework.ui.HaloWordProcessor;
+import com.adobe.linguistics.spelling.framework.ui.IWordProcessor;
+import com.adobe.linguistics.spelling.framework.ui.SparkWordProcessor;
import com.adobe.linguistics.utils.TextTokenizer;
import com.adobe.linguistics.utils.Token;


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/130c4ccc/Squiggly/main/SpellingUIEx/src/com/adobe/linguistics/spelling/SpellingContextMenu.as
--
diff --git 
a/Squiggly/main/SpellingUIEx/src/com/adobe/linguistics/spelling/SpellingContextMenu.as
 
b/Squiggly/main/SpellingUIEx/src/com/adobe/linguistics/spelling/SpellingContextMenu.as
index fc71ce3..6c5739b 100644
--- 
a/Squiggly/main/SpellingUIEx/src/com/adobe/linguistics/spelling/SpellingContextMenu.as
+++ 
b/Squiggly/main/SpellingUIEx/src/com/adobe/linguistics/spelling/SpellingContextMenu.as
@@ -21,7 +21,7 @@ package com.adobe.linguistics.spelling
 {
import com.adobe.linguistics.spelling.SpellUI;
import com.adobe.linguistics.spelling.framework.SpellingService;
-   import com.adobe.linguistics.spelling.ui.*;
+   import com.adobe.linguistics.spelling.framework.ui.*;
import com.adobe.linguistics.utils.Token;
import com.adobe.linguistics.utils.TextTokenizer;




[08/16] git commit: [flex-utilities] [refs/heads/develop] - add a bit of padding to buttons

2014-10-08 Thread jmclean
add a bit of padding to buttons


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

Branch: refs/heads/develop
Commit: cfc9dff92de7e219fa418118d8bf73c98f5cfdd7
Parents: ef10f5c
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Oct 9 13:57:10 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Oct 9 13:57:10 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/SourceTab.mxml | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/cfc9dff9/TourDeFlex/TourDeFlex3/src/SourceTab.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/SourceTab.mxml 
b/TourDeFlex/TourDeFlex3/src/SourceTab.mxml
index c9d8f7c..fbe44a7 100755
--- a/TourDeFlex/TourDeFlex3/src/SourceTab.mxml
+++ b/TourDeFlex/TourDeFlex3/src/SourceTab.mxml
@@ -17,7 +17,9 @@
   limitations under the License.
   --
 
-mx:VBox xmlns:fx=http://ns.adobe.com/mxml/2009; 
xmlns:mx=library://ns.adobe.com/flex/mx width=100% height=100%
+mx:VBox xmlns:fx=http://ns.adobe.com/mxml/2009;
+xmlns:mx=library://ns.adobe.com/flex/mx
+width=100% height=100%
 
 fx:Script
 ![CDATA[
@@ -76,7 +78,7 @@
/fx:Declarations

 mx:TextArea id=ta color=#A0 fontFamily=Courier editable=false 
wordWrap=false width=100% height=100%/
-   mx:HBox width=100%
+   mx:HBox width=100% paddingBottom=5 paddingRight=20
mx:Spacer width=100% /
mx:Button label=Copy click=copyCode() /
mx:Button label=Copy Link click=copyLink() /



[03/16] git commit: [flex-utilities] [refs/heads/develop] - added means to compile squiggly examples

2014-10-08 Thread jmclean
added means to compile squiggly examples


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

Branch: refs/heads/develop
Commit: 215e767cfe95d365d1819ca65ac0cb6bddad0860
Parents: c009c92
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Oct 9 13:52:49 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Oct 9 13:52:49 2014 +1100

--
 TourDeFlex/TourDeFlex3/build.xml | 74 ++-
 1 file changed, 73 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/215e767c/TourDeFlex/TourDeFlex3/build.xml
--
diff --git a/TourDeFlex/TourDeFlex3/build.xml b/TourDeFlex/TourDeFlex3/build.xml
index 9d46cd3..42aca86 100644
--- a/TourDeFlex/TourDeFlex3/build.xml
+++ b/TourDeFlex/TourDeFlex3/build.xml
@@ -66,8 +66,22 @@
/mxmlc
/sequential
/macrodef
+   
+macrodef name=compile-mxml-libs
+attribute name=example/
+
+sequential
+   mxmlc file=${basedir}/src/@{example}.mxml
+   output=${basedir}/src/@{example}.swf fork=true 
failonerror=true
+   load-config 
filename=${FLEX_HOME}/frameworks/flex-config.xml/
+   compiler.library-path dir=${basedir}/libs append=true
+   include name=*.swc /
+   /compiler.library-path
+   /mxmlc
+   /sequential
+   /macrodef 

-   target name=compile description=compile all examples and the 
explorer shell 
depends=compile-shell,compile-mx,compile-spark,compile-spark2,compile-spark3,compile-apache
+   target name=compile description=compile all examples and the 
explorer shell 
depends=compile-shell,compile-mx,compile-spark,compile-spark2,compile-spark3,compile-apache,compile-squiggly
/target

target name=compile-shell description=compile explorer shell
@@ -422,6 +436,64 @@
!-- Uncomment when Flex 4.14 is released --
!-- compile-mxml 
example=/apache/controls/SparkRichTextEditorExample/--
/target
+   
+   property name=download.dir value=temp/
+   property name=unpack.dir value=squiggly/
+   property name=mirror.url 
value=http://flex.apache.org/single-mirror-url.cgi; /
+property name=squiggly.folder value=flex/squiggly/1.0 /
+ 
+   condition property=squiggly.file 
value=apache-flex-squiggly-1.0-bin.zip
+   os family=windows /
+/condition
+   
+condition property=squiggly.file 
value=apache-flex-squiggly-1.0-bin.tar.gz
+   or
+   os family=mac /
+   os family=unix /
+   /or
+/condition
+   
+   target name=compile-squiggly description=compile apache squiggly 
examples depends=squiggly-download
+   compile-mxml-libs example=/apache/squiggly/SpellingExample/
+   compile-mxml-libs 
example=/apache/squiggly/SpellingExExample/
+   /target
+   
+target name=squiggly-check description=Checks if Squiggly has been 
downloaded.
+available file=${basedir}/libs/ApacheflexSpellingEngine.swc 
property=sqigggly.present/
+/target
+   
+target name=squiggly-download depends=squiggly-check 
unless=sqigggly.present description=Downloads squiggly SDK
+   
+   mkdir dir=${download.dir}/
+   
+   get src=${mirror.url} dest=${download.dir}/mirror.txt /
+   replace file=${download.dir}/mirror.txt token=lt;pgt; /
+   replace file=${download.dir}/mirror.txt token=lt;/pgt; /
+   loadfile property=squiggly.url srcFile=${download.dir}/mirror.txt 
/
+   
+   echoDownloading 
${squiggly.url}/${squiggly.folder}/${squiggly.file}/echo
+get src=${squiggly.url}/${squiggly.folder}/${squiggly.file} 
+dest=${download.dir}/${squiggly.file} 
+verbose=true/
+   
+   !-- TOSO upzip on windows --
+   mkdir dir=${unpack.dir}/
+   untar dest=${unpack.dir} src=${download.dir}/${squiggly.file} 
compression=gzip /
+   
+   mkdir dir=libs/
+   copy todir=libs
+   fileset dir=${unpack.dir}/main/libs
+   include name=*.swc /
+   /fileset
+   /copy
+   
+   mkdir dir=dictionaries/
+   copy todir=dictionaries
+   fileset dir=${unpack.dir}/dictionaries
+   include name=*.* /
+   /fileset
+   /copy
+/target

target name=package 

[05/16] git commit: [flex-utilities] [refs/heads/develop] - remove grey bar in header

2014-10-08 Thread jmclean
remove grey bar in header


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

Branch: refs/heads/develop
Commit: e7f847f29410515c9c4ba37912c40d4908720ff2
Parents: f123166
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Oct 9 13:55:54 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Oct 9 13:55:54 2014 +1100

--
 TourDeFlex/TourDeFlex3/src/loaderPanel.mxml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/e7f847f2/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml 
b/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml
index d94bfed..1779d52 100755
--- a/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml
+++ b/TourDeFlex/TourDeFlex3/src/loaderPanel.mxml
@@ -17,8 +17,9 @@
   limitations under the License.
   --
 
+!-- TODO probably no need for a panel --
 mx:Panel xmlns:fx=http://ns.adobe.com/mxml/2009; 
xmlns:mx=library://ns.adobe.com/flex/mx
- horizontalAlign=center headerHeight=10 
dropShadowVisible=false
+ horizontalAlign=center headerHeight=0 
dropShadowVisible=false
fx:Script
  ![CDATA[
  



[02/16] git commit: [flex-utilities] [refs/heads/develop] - update to 1.2

2014-10-08 Thread jmclean
update to 1.2


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

Branch: refs/heads/develop
Commit: c009c921cd25cf5cdf8507897d886169a6fa8e35
Parents: 5ca92c8
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Oct 9 13:52:09 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Oct 9 13:52:09 2014 +1100

--
 TourDeFlex/TourDeFlex3/RELEASE_NOTES | 15 +++
 1 file changed, 15 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/c009c921/TourDeFlex/TourDeFlex3/RELEASE_NOTES
--
diff --git a/TourDeFlex/TourDeFlex3/RELEASE_NOTES 
b/TourDeFlex/TourDeFlex3/RELEASE_NOTES
index 52ca5c6..d6f254a 100644
--- a/TourDeFlex/TourDeFlex3/RELEASE_NOTES
+++ b/TourDeFlex/TourDeFlex3/RELEASE_NOTES
@@ -1,4 +1,19 @@
 
+Apache Flex Tour De Flex Component Explorer 1.2
+
+
+Apache Flex Tour De Flex 1.2 is an update to 1.1 adding a few minor 
improvements.
+
+Changes since the version 1.1
+- Added Squiggly spelling engine examples
+
+Known issues:
+- Callout example in the Apache Flex 4.9 examples fails to show the callout.
+  The sample code will work externally. See FLEX-34539 for details.
+  
+Bugs fixed and improvements:
+
+
 Apache Flex Tour De Flex Component Explorer 1.1
 
 



[13/16] git commit: [flex-utilities] [refs/heads/develop] - change to use newer version of the UI files

2014-10-08 Thread jmclean
change to use newer version of the UI files


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

Branch: refs/heads/develop
Commit: b03c8e393e8a90bedfdd3bebcae092a4669cef17
Parents: 4b3e346
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Oct 9 14:04:35 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Oct 9 14:04:35 2014 +1100

--
 .../SpellingUI/src/com/adobe/linguistics/spelling/SpellUI.as | 8 
 .../com/adobe/linguistics/spelling/SpellingContextMenu.as| 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/b03c8e39/Squiggly/main/SpellingUI/src/com/adobe/linguistics/spelling/SpellUI.as
--
diff --git 
a/Squiggly/main/SpellingUI/src/com/adobe/linguistics/spelling/SpellUI.as 
b/Squiggly/main/SpellingUI/src/com/adobe/linguistics/spelling/SpellUI.as
index 20a229d..65823ec 100644
--- a/Squiggly/main/SpellingUI/src/com/adobe/linguistics/spelling/SpellUI.as
+++ b/Squiggly/main/SpellingUI/src/com/adobe/linguistics/spelling/SpellUI.as
@@ -23,10 +23,10 @@ package com.adobe.linguistics.spelling
import com.adobe.linguistics.spelling.framework.ResourceTable;
import com.adobe.linguistics.spelling.framework.SpellingConfiguration;
import com.adobe.linguistics.spelling.framework.SpellingService;
-import com.adobe.linguistics.spelling.ui.HaloHighlighter;
-import com.adobe.linguistics.spelling.ui.HaloWordProcessor;
-import com.adobe.linguistics.spelling.ui.IHighlighter;
-import com.adobe.linguistics.spelling.ui.IWordProcessor;
+import com.adobe.linguistics.spelling.framework.ui.HaloHighlighter;
+import com.adobe.linguistics.spelling.framework.ui.HaloWordProcessor;
+import com.adobe.linguistics.spelling.framework.ui.IHighlighter;
+import com.adobe.linguistics.spelling.framework.ui.IWordProcessor;
import com.adobe.linguistics.utils.TextTokenizer;
import com.adobe.linguistics.utils.Token;


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/b03c8e39/Squiggly/main/SpellingUI/src/com/adobe/linguistics/spelling/SpellingContextMenu.as
--
diff --git 
a/Squiggly/main/SpellingUI/src/com/adobe/linguistics/spelling/SpellingContextMenu.as
 
b/Squiggly/main/SpellingUI/src/com/adobe/linguistics/spelling/SpellingContextMenu.as
index d84f325..fecf48f 100644
--- 
a/Squiggly/main/SpellingUI/src/com/adobe/linguistics/spelling/SpellingContextMenu.as
+++ 
b/Squiggly/main/SpellingUI/src/com/adobe/linguistics/spelling/SpellingContextMenu.as
@@ -35,8 +35,8 @@ package com.adobe.linguistics.spelling

import flash.geom.Point;
import flash.geom.Rectangle;
-   import com.adobe.linguistics.spelling.ui.IHighlighter;
-   import com.adobe.linguistics.spelling.ui.IWordProcessor;
+   import com.adobe.linguistics.spelling.framework.ui.IHighlighter;
+   import com.adobe.linguistics.spelling.framework.ui.IWordProcessor;

public class SpellingContextMenu
{



[11/16] git commit: [flex-utilities] [refs/heads/develop] - Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/flex-utilities into develop

2014-10-08 Thread jmclean
Merge branch 'develop' of 
https://git-wip-us.apache.org/repos/asf/flex-utilities into develop


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

Branch: refs/heads/develop
Commit: 776010a03da88a49c08c80db36b1279e4abe64d5
Parents: ba723d9 45898c7
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Oct 9 14:02:04 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Oct 9 14:02:04 2014 +1100

--
 Squiggly/dictionaries/en_GB/README_en_GB.txt | 309 ++
 Squiggly/dictionaries/en_US/README_en_US.txt | 309 ++
 installer/src/InstallApacheFlex.mxml |   2 +-
 3 files changed, 619 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/776010a0/installer/src/InstallApacheFlex.mxml
--



[04/16] git commit: [flex-utilities] [refs/heads/develop] - simplify install script

2014-10-08 Thread jmclean
simplify install script


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

Branch: refs/heads/develop
Commit: f123166c3b5be8667529d3f00ffd29ed3e78b0ba
Parents: 215e767
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Oct 9 13:53:52 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Oct 9 13:53:52 2014 +1100

--
 TourDeFlex/TourDeFlex3/installer.xml | 152 +++---
 1 file changed, 54 insertions(+), 98 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/f123166c/TourDeFlex/TourDeFlex3/installer.xml
--
diff --git a/TourDeFlex/TourDeFlex3/installer.xml 
b/TourDeFlex/TourDeFlex3/installer.xml
index 797493b..02a26a6 100644
--- a/TourDeFlex/TourDeFlex3/installer.xml
+++ b/TourDeFlex/TourDeFlex3/installer.xml
@@ -18,7 +18,7 @@
 
 --
 
-project name=tour_de_flex_install default=install basedir=.
+project name=tour-de-flex_install default=install basedir=.
 
 !-- Required for OSX 10.6 / Snow Leopard Performance. --
 !-- Java 7 on Mac requires OSX 10.7.3 or higher and is 64-bit only --
@@ -31,140 +31,96 @@
 equals arg1=${ant.java.version} arg2=1.6/
 /and
 /condition
-
+   
+condition property=isMacOrLinux value=mac
+   or
+   os family=mac /
+   os family=unix /
+   /or
+/condition
+condition property=isWindows value=windows
+os family=windows /
+/condition
+   
property environment=env/
 condition property=FLEX_HOME value=${env.FLEX_HOME}
 isset property=env.FLEX_HOME /
 /condition
-   echo${env.FLEX_HOME}/echo
+
 property file=${FLEX_HOME}/local.properties/
 property file=${FLEX_HOME}/build.properties/
-   
 property file=${basedir}/${bundle}.properties/
 
property name=download.dir value=${FLEX_HOME}/in/
-   property name=unpack.dir value=${FLEX_HOME}/tourdeflex/
-
+   property name=unpack.dir value=${FLEX_HOME}/tour-de-flex/
property name=mirror.url 
value=http://flex.apache.org/single-mirror-url.cgi; /

-property name=tourdeflex.url.folder value=flex/tourdeflex/1.0 /
-condition property=tourdeflex.url.file 
value=apache-flex-tour-de-flex-component-explorer-1.0-src.zip
-   os family=windows /
-/condition
-condition property=tourdeflex.url.file 
value=apache-flex-tour-de-flex-component-explorer-1.0-src.tar.gz
-   or
-   os family=mac /
-   os family=unix /
-   /or
-/condition
-condition property=tourdeflex.url.md5 
value=2509291d41cc325ba21ed6b9cf4306f2
-   os family=windows /
-/condition
-condition property=tourdeflex.url.md5 
value=2509291d41cc325ba21ed6b9cf4306f2
-   or
-   os family=mac /
-   os family=unix /
-   /or
-/condition
+property name=tour-de-flex.url.folder value=flex/tourdeflex/1.1 /
+   
+target name=file-setup-win if=isWindows
+   property name=tour-de-flex.url.file 
value=apache-flex-tour-de-flex-component-explorer-1.1-src.zip /
+   property name=tour-de-flex.url.md5 
value=95b9895120eebac1f2cd09929629ba2c /
+/target
+   
+target name=file-setup-unix if=isMacOrLinux
+   property name=tour-de-flex.url.file 
value=apache-flex-tour-de-flex-component-explorer-1.1-src.tar.gz /
+   property name=tour-de-flex.url.md5 
value=95b9895120eebac1f2cd09929629ba2c /
+/target
 
-target name=install depends=tourdeflex-download-unpack 
description=Adds TourDeFlex to SDK
+target name=install 
depends=file-setup-win,file-setup-unix,tour-de-flex-download-unpack 
description=Adds tour-de-flex to an Apache Flex SDK
 delete dir=${download.dir} /
-echo${install.complete.echo}/echo
+echoTour De Flex installed/echo
 /target
 
-target name=tourdeflex-download-unpack description=Downloads Tour De 
Flex and copies into SDK
+target name=tour-de-flex-download-unpack description=Downloads 
tour-de-flex and copies into the Apache Flex SDK
 mkdir dir=${download.dir}/

get src=${mirror.url} dest=${download.dir}/mirror.txt /
replace file=${download.dir}/mirror.txt token=lt;pgt; /
replace file=${download.dir}/mirror.txt token=lt;/pgt; /
-   loadfile property=tourdeflex.url.server 
srcFile=${download.dir}/mirror.txt /
+   loadfile property=tour-de-flex.url.server 
srcFile=${download.dir}/mirror.txt /

-   echoDownloading 

[07/16] git commit: [flex-utilities] [refs/heads/develop] - add squiggly examples

2014-10-08 Thread jmclean
add squiggly examples


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

Branch: refs/heads/develop
Commit: ef10f5c7f206cd0bced5a959d99d4ded8f65902b
Parents: a3bf10b
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Oct 9 13:56:44 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Oct 9 13:56:44 2014 +1100

--
 .../src/apache/squiggly/SpellingConfig.xml  | 23 +
 .../src/apache/squiggly/SpellingExExample.mxml  | 49 
 .../src/apache/squiggly/SpellingExample.mxml| 48 +++
 3 files changed, 120 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/ef10f5c7/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingConfig.xml
--
diff --git a/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingConfig.xml 
b/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingConfig.xml
new file mode 100644
index 000..300e394
--- /dev/null
+++ b/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingConfig.xml
@@ -0,0 +1,23 @@
+   ?xml version=1.0 encoding='UTF-8'?
+!--
+
+  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.
+
+--
+SpellingConfig
+  LanguageResource language=English (British) languageCode=en_GB 
ruleFile=./dictionaries/en_GB/en_GB.aff 
dictionaryFile=dictionaries/en_GB/en_GB.dic/
+  LanguageResource language=English (US) languageCode=en_US 
ruleFile=./dictionaries/en_US/en_US.aff 
dictionaryFile=dictionaries/en_US/en_US.dic/
+/SpellingConfig

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/ef10f5c7/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExExample.mxml 
b/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExExample.mxml
new file mode 100644
index 000..af31565
--- /dev/null
+++ b/TourDeFlex/TourDeFlex3/src/apache/squiggly/SpellingExExample.mxml
@@ -0,0 +1,49 @@
+?xml version=1.0 encoding=utf-8?
+!--
+
+  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.
+
+--
+s:Application xmlns:fx=http://ns.adobe.com/mxml/2009;
+  xmlns:s=library://ns.adobe.com/flex/spark
+  applicationComplete=init()
+   fx:Script
+   ![CDATA[
+   import com.adobe.linguistics.spelling.SpellUI;
+   import 
com.adobe.linguistics.spelling.framework.SpellingConfiguration;
+   import 
com.adobe.linguistics.spelling.framework.ResourceTable;
+   
+   public function init():void
+   {
+   var resourceTable:ResourceTable = new 
ResourceTable();
+   resourceTable.setResource(en_US, 
{rule:data/en_US.aff, dict:data/en_US.dic});
+   SpellingConfiguration.resourceTable = 
resourceTable;
+   }
+   ]]
+   /fx:Script
+
+   s:Panel title=Spell Check width=100% height=100% 
borderAlpha=0.15
+ 

[16/16] git commit: [flex-utilities] [refs/heads/develop] - spelling ui sec not needed here

2014-10-08 Thread jmclean
spelling ui sec not needed here


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

Branch: refs/heads/develop
Commit: add146d57e9f03ce1e43d0ef001165ea5bed6421
Parents: 0d3d1aa
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Oct 9 14:06:25 2014 +1100
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Oct 9 14:06:25 2014 +1100

--
 Squiggly/main/build.xml | 2 --
 1 file changed, 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/add146d5/Squiggly/main/build.xml
--
diff --git a/Squiggly/main/build.xml b/Squiggly/main/build.xml
index c19d925..4a9bff1 100644
--- a/Squiggly/main/build.xml
+++ b/Squiggly/main/build.xml
@@ -215,8 +215,6 @@
 arg value=${OUTPUT_DIR}/ApacheFlexSpellingEngine.swc/
 arg value=-external-library-path/
 arg value=${OUTPUT_DIR}/ApacheFlexSpellingFramework.swc/
-arg value=-external-library-path/
-arg value=${OUTPUT_DIR}/ApacheFlexSpellingUI.swc/
 arg value=-output/
 arg value=${OUTPUT_DIR}/ApacheFlexSpellingUIEx.swc/
 /java



svn commit: r1627866 - in /flex/site/trunk/content/tourdeflex: explorer.html index.html

2014-09-26 Thread jmclean
Author: jmclean
Date: Fri Sep 26 19:25:13 2014
New Revision: 1627866

URL: http://svn.apache.org/r1627866
Log:
Put google analytics back in

Modified:
flex/site/trunk/content/tourdeflex/explorer.html
flex/site/trunk/content/tourdeflex/index.html

Modified: flex/site/trunk/content/tourdeflex/explorer.html
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/explorer.html?rev=1627866r1=1627865r2=1627866view=diff
==
--- flex/site/trunk/content/tourdeflex/explorer.html (original)
+++ flex/site/trunk/content/tourdeflex/explorer.html Fri Sep 26 19:25:13 2014
@@ -42,6 +42,20 @@ body { margin: 0px; overflow:hidden }
);
 // --
 /script
+!-- Google Analytics --
+script type=text/javascript
+
+   var _gaq = _gaq || [];
+   _gaq.push(['_setAccount', 'UA-37926454-1']);
+   _gaq.push(['_trackPageview']);
+
+   (function() {
+   var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+   ga.src = ('https:' == document.location.protocol ? 
'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+   var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+   })();
+
+/script
 noscript
object classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354
id=explorer width=100% height=100%

Modified: flex/site/trunk/content/tourdeflex/index.html
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/index.html?rev=1627866r1=1627865r2=1627866view=diff
==
--- flex/site/trunk/content/tourdeflex/index.html (original)
+++ flex/site/trunk/content/tourdeflex/index.html Fri Sep 26 19:25:13 2014
@@ -42,6 +42,21 @@ body { margin: 0px; overflow:hidden }
);
 // --
 /script
+/script
+!-- Google Analytics --
+script type=text/javascript
+
+   var _gaq = _gaq || [];
+   _gaq.push(['_setAccount', 'UA-37926454-1']);
+   _gaq.push(['_trackPageview']);
+
+   (function() {
+   var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+   ga.src = ('https:' == document.location.protocol ? 
'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+   var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+   })();
+
+/script
 noscript
object classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354
id=explorer width=100% height=100%




[2/2] git commit: [flex-utilities] [refs/heads/develop] - put google analytics back in

2014-09-26 Thread jmclean
put google analytics back in


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

Branch: refs/heads/develop
Commit: 672be3723e2f5f3266baaa597ecbdd4e9076419b
Parents: c6faa14
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Sep 27 05:26:56 2014 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Sep 27 05:26:56 2014 +1000

--
 TourDeFlex/TourDeFlex3/src/index.html | 15 +++
 1 file changed, 15 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/672be372/TourDeFlex/TourDeFlex3/src/index.html
--
diff --git a/TourDeFlex/TourDeFlex3/src/index.html 
b/TourDeFlex/TourDeFlex3/src/index.html
index 8257541..400abb7 100755
--- a/TourDeFlex/TourDeFlex3/src/index.html
+++ b/TourDeFlex/TourDeFlex3/src/index.html
@@ -42,6 +42,21 @@ body { margin: 0px; overflow:hidden }
);
 // --
 /script
+/script
+!-- Google Analytics --
+script type=text/javascript
+
+   var _gaq = _gaq || [];
+   _gaq.push(['_setAccount', 'UA-37926454-1']);
+   _gaq.push(['_trackPageview']);
+
+   (function() {
+   var ga = document.createElement('script'); ga.type = 
'text/javascript'; ga.async = true;
+   ga.src = ('https:' == document.location.protocol ? 
'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+   var s = document.getElementsByTagName('script')[0]; 
s.parentNode.insertBefore(ga, s);
+   })();
+
+/script
 noscript
object classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354
id=explorer width=100% height=100%



[1/2] git commit: [flex-utilities] [refs/heads/develop] - fix source file case

2014-09-26 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop dbe6309cc - 672be3723


fix source file case


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

Branch: refs/heads/develop
Commit: c6faa1445fd2bbb375a0c74eb70bd61f5b9039f4
Parents: dbe6309
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Sep 27 05:26:38 2014 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Sep 27 05:26:38 2014 +1000

--
 TourDeFlex/TourDeFlex3/src/explorer.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/c6faa144/TourDeFlex/TourDeFlex3/src/explorer.xml
--
diff --git a/TourDeFlex/TourDeFlex3/src/explorer.xml 
b/TourDeFlex/TourDeFlex3/src/explorer.xml
index 8c50a5e..8f575f5 100755
--- a/TourDeFlex/TourDeFlex3/src/explorer.xml
+++ b/TourDeFlex/TourDeFlex3/src/explorer.xml
@@ -457,7 +457,7 @@
node label=Millisecond Formatting 
app=apache/i18n/MillisecondExample/
node label=NumberStepper 
app=apache/i18n/NumericStepperExample/
node label=Scientific Notation Formatting 
app=apache/i18n/ScientificExample/
-   node label=Timezone Formatting 
app=apache/i18n/TimezoneExample/
+   node label=Timezone Formatting 
app=apache/i18n/TimeZoneExample/
/node
node label=Apache Flex 4.11 
app=apache/ApacheFlex4_11_0
!--  Add more examples here --
@@ -477,4 +477,4 @@
 --
/node
/node
-/compTree
\ No newline at end of file
+/compTree



svn commit: r923738 - in /websites/production/flex: cgi-bin/ content/

2014-09-26 Thread jmclean
Author: jmclean
Date: Fri Sep 26 19:31:02 2014
New Revision: 923738

Log:
pup google analytics back into tour de flex

Added:
websites/production/flex/cgi-bin/
  - copied from r923737, websites/staging/flex/trunk/cgi-bin/
websites/production/flex/content/
  - copied from r923737, websites/staging/flex/trunk/content/



svn commit: r1627451 - in /flex/site/trunk/content/tourdeflex/apache/i18n: TimezoneExample.mxml TimezoneExample.swf

2014-09-24 Thread jmclean
Author: jmclean
Date: Thu Sep 25 04:25:41 2014
New Revision: 1627451

URL: http://svn.apache.org/r1627451
Log:
Fixed path case issue

Added:
flex/site/trunk/content/tourdeflex/apache/i18n/TimezoneExample.mxml
flex/site/trunk/content/tourdeflex/apache/i18n/TimezoneExample.swf   (with 
props)

Added: flex/site/trunk/content/tourdeflex/apache/i18n/TimezoneExample.mxml
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/apache/i18n/TimezoneExample.mxml?rev=1627451view=auto
==
--- flex/site/trunk/content/tourdeflex/apache/i18n/TimezoneExample.mxml (added)
+++ flex/site/trunk/content/tourdeflex/apache/i18n/TimezoneExample.mxml Thu Sep 
25 04:25:41 2014
@@ -0,0 +1,67 @@
+?xml version=1.0 encoding=utf-8?
+!--
+
+  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.
+
+--
+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
+   fx:Script
+   ![CDATA[   
+   import mx.formatters.DateFormatter;
+   
+   private var formatter:DateFormatter;
+   
+   protected function formatDate(event:Event):void
+   {
+   formatter = new DateFormatter();
+   
+   if (format1.selected) {
+   formatter.formatString = DD/MM/ 
ZO;
+   }
+   else if (format2.selected) {
+   formatter.formatString = DD/MM/ 
ZOO;
+   }
+   else if (format3.selected) {
+   formatter.formatString = DD/MM/ 
ZOOO;
+   }
+   
+   formatted.text = 
formatter.format(date.selectedDate);
+   }
+   ]]
+   /fx:Script
+   
+   s:Panel title=Timezone Formating width=100% height=100% 
borderAlpha=0.15
+   s:layout
+   s:VerticalLayout paddingLeft=20 paddingTop=20 
gap=10 /
+   /s:layout
+   s:HGroup verticalAlign=middle
+   s:Label text=Date /
+   mx:DateField id=date change=formatDate(event) /
+   /s:HGroup
+   s:HGroup verticalAlign=middle
+   s:Label text=Date Format /
+   s:RadioButton id=format1 label=DD/MM/ ZO 
selected=true click=formatDate(event) /  
+   s:RadioButton id=format2 label=DD/MM/ ZOO 
click=formatDate(event)/  
+   s:RadioButton id=format3 label=DD/MM/ ZOOO 
click=formatDate(event)/
+   /s:HGroup
+   s:HGroup
+   s:Label text=Formatted Date /
+   s:Label id=formatted /
+   /s:HGroup
+   /s:Panel
+/s:Application

Added: flex/site/trunk/content/tourdeflex/apache/i18n/TimezoneExample.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/apache/i18n/TimezoneExample.swf?rev=1627451view=auto
==
Binary file - no diff available.

Propchange: flex/site/trunk/content/tourdeflex/apache/i18n/TimezoneExample.swf
--
svn:mime-type = application/octet-stream




svn commit: r923484 - in /websites/production/flex: cgi-bin/ content/

2014-09-24 Thread jmclean
Author: jmclean
Date: Thu Sep 25 04:32:56 2014
New Revision: 923484

Log:
fix file name case

Added:
websites/production/flex/cgi-bin/
  - copied from r923483, websites/staging/flex/trunk/cgi-bin/
websites/production/flex/content/
  - copied from r923483, websites/staging/flex/trunk/content/



svn commit: r1626522 - in /flex/site/trunk/content/tourdeflex/spark/effects: AnimatePropertiesExample.mxml AnimatePropertiesExample.swf Rotate3DExample.mxml Rotate3DExample.swf Scale3DExample.mxml Sca

2014-09-21 Thread jmclean
Author: jmclean
Date: Sun Sep 21 05:59:29 2014
New Revision: 1626522

URL: http://svn.apache.org/r1626522
Log:
Tour de flex 1.1

Modified:

flex/site/trunk/content/tourdeflex/spark/effects/AnimatePropertiesExample.mxml

flex/site/trunk/content/tourdeflex/spark/effects/AnimatePropertiesExample.swf
flex/site/trunk/content/tourdeflex/spark/effects/Rotate3DExample.mxml
flex/site/trunk/content/tourdeflex/spark/effects/Rotate3DExample.swf
flex/site/trunk/content/tourdeflex/spark/effects/Scale3DExample.mxml
flex/site/trunk/content/tourdeflex/spark/effects/Scale3DExample.swf

Modified: 
flex/site/trunk/content/tourdeflex/spark/effects/AnimatePropertiesExample.mxml
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/effects/AnimatePropertiesExample.mxml?rev=1626522r1=1626521r2=1626522view=diff
==
--- 
flex/site/trunk/content/tourdeflex/spark/effects/AnimatePropertiesExample.mxml 
(original)
+++ 
flex/site/trunk/content/tourdeflex/spark/effects/AnimatePropertiesExample.mxml 
Sun Sep 21 05:59:29 2014
@@ -19,8 +19,7 @@
 --
 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
-  viewSourceURL=srcview/index.html
+  xmlns:mx=library://ns.adobe.com/flex/mx

!-- NOTE: This sample was compiled with Flex SDK version 4.0.0.13875 
--


Modified: 
flex/site/trunk/content/tourdeflex/spark/effects/AnimatePropertiesExample.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/effects/AnimatePropertiesExample.swf?rev=1626522r1=1626521r2=1626522view=diff
==
Binary files - no diff available.

Modified: flex/site/trunk/content/tourdeflex/spark/effects/Rotate3DExample.mxml
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/effects/Rotate3DExample.mxml?rev=1626522r1=1626521r2=1626522view=diff
==
--- flex/site/trunk/content/tourdeflex/spark/effects/Rotate3DExample.mxml 
(original)
+++ flex/site/trunk/content/tourdeflex/spark/effects/Rotate3DExample.mxml Sun 
Sep 21 05:59:29 2014
@@ -21,38 +21,7 @@
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:Style
-   @namespace library://ns.adobe.com/flex/spark;
-   Label { 
-   baseColor: #00; 
-   fontFamily: Arial;
-   fontWeight: bold;
-   fontSize: 11;
-   advancedAntiAliasing: true;
-   }
-   Button:up{ 
-   baseColor: #00; 
-   color: #FF; 
-   fontWeight: bold;
-   }
-   Button:over{ 
-   baseColor: #878787; 
-   color: #FF; 
-   fontWeight: bold;
-   }
-   Button:down{ 
-   baseColor: #878787; 
-   color: #00; 
-   fontWeight: bold;
-   }
-   Button:disabled { 
-   baseColor: #FF; 
-   color: #878787; 
-   fontWeight: bold;
-   }
-   /fx:Style
-   
+
fx:Declarations
s:Rotate3D id=rotateEffect target={targetImg}  
angleXFrom=0.0 
angleXTo={Number(xVal.text)} 

Modified: flex/site/trunk/content/tourdeflex/spark/effects/Rotate3DExample.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/effects/Rotate3DExample.swf?rev=1626522r1=1626521r2=1626522view=diff
==
Binary files - no diff available.

Modified: flex/site/trunk/content/tourdeflex/spark/effects/Scale3DExample.mxml
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/effects/Scale3DExample.mxml?rev=1626522r1=1626521r2=1626522view=diff
==
--- flex/site/trunk/content/tourdeflex/spark/effects/Scale3DExample.mxml 
(original)
+++ flex/site/trunk/content/tourdeflex/spark/effects/Scale3DExample.mxml Sun 
Sep 21 05:59:29 2014
@@ -21,38 +21,7 @@
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:Style
-   @namespace library://ns.adobe.com/flex/spark;
-   Label { 
-   baseColor: #00

svn commit: r1626523 - in /flex/site/trunk/content/tourdeflex/spark/fxg: LinearGradientsSpreadMethodExample.mxml LinearGradientsSpreadMethodExample.swf StaticFXGExample.mxml StaticFXGExample.swf

2014-09-21 Thread jmclean
Author: jmclean
Date: Sun Sep 21 06:00:48 2014
New Revision: 1626523

URL: http://svn.apache.org/r1626523
Log:
TourDeFlex 1.1 removed code link

Modified:

flex/site/trunk/content/tourdeflex/spark/fxg/LinearGradientsSpreadMethodExample.mxml

flex/site/trunk/content/tourdeflex/spark/fxg/LinearGradientsSpreadMethodExample.swf
flex/site/trunk/content/tourdeflex/spark/fxg/StaticFXGExample.mxml
flex/site/trunk/content/tourdeflex/spark/fxg/StaticFXGExample.swf

Modified: 
flex/site/trunk/content/tourdeflex/spark/fxg/LinearGradientsSpreadMethodExample.mxml
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/fxg/LinearGradientsSpreadMethodExample.mxml?rev=1626523r1=1626522r2=1626523view=diff
==
--- 
flex/site/trunk/content/tourdeflex/spark/fxg/LinearGradientsSpreadMethodExample.mxml
 (original)
+++ 
flex/site/trunk/content/tourdeflex/spark/fxg/LinearGradientsSpreadMethodExample.mxml
 Sun Sep 21 06:00:48 2014
@@ -19,7 +19,7 @@
 --
 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/halo 
viewSourceURL=srcview/index.html
+  xmlns:mx=library://ns.adobe.com/flex/halo
fx:Script
![CDATA[
import mx.collections.ArrayCollection;

Modified: 
flex/site/trunk/content/tourdeflex/spark/fxg/LinearGradientsSpreadMethodExample.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/fxg/LinearGradientsSpreadMethodExample.swf?rev=1626523r1=1626522r2=1626523view=diff
==
Binary files - no diff available.

Modified: flex/site/trunk/content/tourdeflex/spark/fxg/StaticFXGExample.mxml
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/fxg/StaticFXGExample.mxml?rev=1626523r1=1626522r2=1626523view=diff
==
--- flex/site/trunk/content/tourdeflex/spark/fxg/StaticFXGExample.mxml 
(original)
+++ flex/site/trunk/content/tourdeflex/spark/fxg/StaticFXGExample.mxml Sun Sep 
21 06:00:48 2014
@@ -20,7 +20,7 @@
 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 
-   xmlns:fxg=* viewSourceURL=srcview/index.html
+   xmlns:fxg=*


s:Panel width=100% height=100%

Modified: flex/site/trunk/content/tourdeflex/spark/fxg/StaticFXGExample.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/fxg/StaticFXGExample.swf?rev=1626523r1=1626522r2=1626523view=diff
==
Binary files - no diff available.




svn commit: r1626524 - in /flex/site/trunk/content/tourdeflex/spark/itemRenderers: ListItemRendererExample.mxml ListItemRendererExample.swf

2014-09-21 Thread jmclean
Author: jmclean
Date: Sun Sep 21 06:05:12 2014
New Revision: 1626524

URL: http://svn.apache.org/r1626524
Log:
TourDeFlex 1.1 removed code link

Modified:

flex/site/trunk/content/tourdeflex/spark/itemRenderers/ListItemRendererExample.mxml

flex/site/trunk/content/tourdeflex/spark/itemRenderers/ListItemRendererExample.swf

Modified: 
flex/site/trunk/content/tourdeflex/spark/itemRenderers/ListItemRendererExample.mxml
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/itemRenderers/ListItemRendererExample.mxml?rev=1626524r1=1626523r2=1626524view=diff
==
--- 
flex/site/trunk/content/tourdeflex/spark/itemRenderers/ListItemRendererExample.mxml
 (original)
+++ 
flex/site/trunk/content/tourdeflex/spark/itemRenderers/ListItemRendererExample.mxml
 Sun Sep 21 06:05:12 2014
@@ -20,7 +20,7 @@
 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
-  xmlns:local=* viewSourceURL=srcview/index.html
+  xmlns:local=*
fx:Script
![CDATA[
import spark.events.IndexChangeEvent;

Modified: 
flex/site/trunk/content/tourdeflex/spark/itemRenderers/ListItemRendererExample.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/itemRenderers/ListItemRendererExample.swf?rev=1626524r1=1626523r2=1626524view=diff
==
Binary files - no diff available.




svn commit: r1626527 - in /flex/site/trunk/content/tourdeflex/spark/modules: ModuleExample.mxml ModuleExample.swf

2014-09-21 Thread jmclean
Author: jmclean
Date: Sun Sep 21 06:21:04 2014
New Revision: 1626527

URL: http://svn.apache.org/r1626527
Log:
TourDeFlex 1.1 fix

Modified:
flex/site/trunk/content/tourdeflex/spark/modules/ModuleExample.mxml
flex/site/trunk/content/tourdeflex/spark/modules/ModuleExample.swf

Modified: flex/site/trunk/content/tourdeflex/spark/modules/ModuleExample.mxml
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/modules/ModuleExample.mxml?rev=1626527r1=1626526r2=1626527view=diff
==
--- flex/site/trunk/content/tourdeflex/spark/modules/ModuleExample.mxml 
(original)
+++ flex/site/trunk/content/tourdeflex/spark/modules/ModuleExample.mxml Sun Sep 
21 06:21:04 2014
@@ -70,8 +70,8 @@
/s:layout

mx:ApplicationControlBar dock=true fillColors=[0x00,0x323232] 
fillAlphas=[1,1] horizontalAlign=center
-   s:Button label=Load Module 1 click=loadModule('module 1', 
'Module1.swf')/
-   s:Button label=Load Module 2 click=loadModule('module 2', 
'Module2.swf')/
+   s:Button label=Load Module 1 click=loadModule('module 1', 
'./spark/modules/Module1.swf')/
+   s:Button label=Load Module 2 click=loadModule('module 2', 
'./spark/modules/Module2.swf')/
/mx:ApplicationControlBar

mx:HBox id=hBox /

Modified: flex/site/trunk/content/tourdeflex/spark/modules/ModuleExample.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/modules/ModuleExample.swf?rev=1626527r1=1626526r2=1626527view=diff
==
Binary files - no diff available.




svn commit: r1626528 - in /flex/site/trunk/content/tourdeflex/spark/other: BidirectionalBinding1Example.mxml BidirectionalBinding1Example.swf

2014-09-21 Thread jmclean
Author: jmclean
Date: Sun Sep 21 06:21:56 2014
New Revision: 1626528

URL: http://svn.apache.org/r1626528
Log:
TourDeFlex 1.1 fixes

Modified:

flex/site/trunk/content/tourdeflex/spark/other/BidirectionalBinding1Example.mxml

flex/site/trunk/content/tourdeflex/spark/other/BidirectionalBinding1Example.swf

Modified: 
flex/site/trunk/content/tourdeflex/spark/other/BidirectionalBinding1Example.mxml
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/other/BidirectionalBinding1Example.mxml?rev=1626528r1=1626527r2=1626528view=diff
==
--- 
flex/site/trunk/content/tourdeflex/spark/other/BidirectionalBinding1Example.mxml
 (original)
+++ 
flex/site/trunk/content/tourdeflex/spark/other/BidirectionalBinding1Example.mxml
 Sun Sep 21 06:21:56 2014
@@ -23,7 +23,7 @@
xmlns:mx=library://ns.adobe.com/flex/mx

s:Panel width=100% height=100%
-title=Bidirectional Binding
+title=Bidirectional Binding 1
 horizontalCenter=0
 skinClass=skins.TDFPanelSkin
s:Label top=10 left=15 verticalAlign=justify 
color=#323232 width=200
@@ -34,10 +34,7 @@ so any change to the text2 value will al
s:VGroup horizontalCenter=15 top=40
s:Label text=Enter Text:/
s:TextInput id=text1 widthInChars=20 /
-   s:TextInput id=text2 color=0xFF3366 
widthInChars=20 
-text=@{text1.text}/
-   s:Label id=text3 color=0x009966  
- text=@{text2.text} 
/   
+   s:TextInput id=text2 color=0xFF3366 
widthInChars=20 text=@{text1.text}/
/s:VGroup 

/s:Panel

Modified: 
flex/site/trunk/content/tourdeflex/spark/other/BidirectionalBinding1Example.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/other/BidirectionalBinding1Example.swf?rev=1626528r1=1626527r2=1626528view=diff
==
Binary files - no diff available.




svn commit: r1626529 - in /flex/site/trunk/content/tourdeflex/spark/other: ControllingViewportExample.mxml ControllingViewportExample.swf

2014-09-21 Thread jmclean
Author: jmclean
Date: Sun Sep 21 06:22:33 2014
New Revision: 1626529

URL: http://svn.apache.org/r1626529
Log:
TourDeFlex 1.1 remove code link

Modified:

flex/site/trunk/content/tourdeflex/spark/other/ControllingViewportExample.mxml

flex/site/trunk/content/tourdeflex/spark/other/ControllingViewportExample.swf

Modified: 
flex/site/trunk/content/tourdeflex/spark/other/ControllingViewportExample.mxml
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/other/ControllingViewportExample.mxml?rev=1626529r1=1626528r2=1626529view=diff
==
--- 
flex/site/trunk/content/tourdeflex/spark/other/ControllingViewportExample.mxml 
(original)
+++ 
flex/site/trunk/content/tourdeflex/spark/other/ControllingViewportExample.mxml 
Sun Sep 21 06:22:33 2014
@@ -19,7 +19,7 @@
 --
 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 
viewSourceURL=srcview/index.html
+  xmlns:mx=library://ns.adobe.com/flex/mx

!-- To show only a certain area of a viewport, you can control it by 
setting the size of the viewport container
 to be less than the size of the item you want to clip, and set  
the following parameters, where the scroll

Modified: 
flex/site/trunk/content/tourdeflex/spark/other/ControllingViewportExample.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/other/ControllingViewportExample.swf?rev=1626529r1=1626528r2=1626529view=diff
==
Binary files - no diff available.




svn commit: r1626532 - /flex/site/trunk/content/tourdeflex/spark/skinning/

2014-09-21 Thread jmclean
Author: jmclean
Date: Sun Sep 21 06:25:03 2014
New Revision: 1626532

URL: http://svn.apache.org/r1626532
Log:
TourDeFlex 1.1 remove code link

Modified:
flex/site/trunk/content/tourdeflex/spark/skinning/ButtonWithIconExample.mxml
flex/site/trunk/content/tourdeflex/spark/skinning/ButtonWithIconExample.swf

flex/site/trunk/content/tourdeflex/spark/skinning/SkinningApplication1Example.mxml

flex/site/trunk/content/tourdeflex/spark/skinning/SkinningApplication1Example.swf

flex/site/trunk/content/tourdeflex/spark/skinning/SkinningApplication2Example.mxml

flex/site/trunk/content/tourdeflex/spark/skinning/SkinningApplication2Example.swf

flex/site/trunk/content/tourdeflex/spark/skinning/SkinningApplication3Example.mxml

flex/site/trunk/content/tourdeflex/spark/skinning/SkinningApplication3Example.swf

flex/site/trunk/content/tourdeflex/spark/skinning/SkinningContainerExample.mxml

flex/site/trunk/content/tourdeflex/spark/skinning/SkinningContainerExample.swf

Modified: 
flex/site/trunk/content/tourdeflex/spark/skinning/ButtonWithIconExample.mxml
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/skinning/ButtonWithIconExample.mxml?rev=1626532r1=1626531r2=1626532view=diff
==
--- 
flex/site/trunk/content/tourdeflex/spark/skinning/ButtonWithIconExample.mxml 
(original)
+++ 
flex/site/trunk/content/tourdeflex/spark/skinning/ButtonWithIconExample.mxml 
Sun Sep 21 06:25:03 2014
@@ -19,8 +19,7 @@
 --
 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
-  viewSourceURL=srcview/index.html
+  xmlns:mx=library://ns.adobe.com/flex/mx

!-- Custom skins used for this example are shown in the source tabs 
for reference --
s:Panel width=100% height=100% title=Button Skinned With Icon 

Modified: 
flex/site/trunk/content/tourdeflex/spark/skinning/ButtonWithIconExample.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/skinning/ButtonWithIconExample.swf?rev=1626532r1=1626531r2=1626532view=diff
==
Binary files - no diff available.

Modified: 
flex/site/trunk/content/tourdeflex/spark/skinning/SkinningApplication1Example.mxml
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/skinning/SkinningApplication1Example.mxml?rev=1626532r1=1626531r2=1626532view=diff
==
--- 
flex/site/trunk/content/tourdeflex/spark/skinning/SkinningApplication1Example.mxml
 (original)
+++ 
flex/site/trunk/content/tourdeflex/spark/skinning/SkinningApplication1Example.mxml
 Sun Sep 21 06:25:03 2014
@@ -21,7 +21,7 @@
   xmlns:s=library://ns.adobe.com/flex/spark 
   xmlns:mx=library://ns.adobe.com/flex/mx 
   skinClass=skins.GradientBackgroundAppSkin
-  backgroundColor=0x00 
viewSourceURL=srcview/index.html
+  backgroundColor=0x00

s:VGroup horizontalCenter=0 verticalCenter=0
s:Label text=Wood Sales Int'l fontSize=42 /

Modified: 
flex/site/trunk/content/tourdeflex/spark/skinning/SkinningApplication1Example.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/skinning/SkinningApplication1Example.swf?rev=1626532r1=1626531r2=1626532view=diff
==
Binary files - no diff available.

Modified: 
flex/site/trunk/content/tourdeflex/spark/skinning/SkinningApplication2Example.mxml
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/skinning/SkinningApplication2Example.mxml?rev=1626532r1=1626531r2=1626532view=diff
==
--- 
flex/site/trunk/content/tourdeflex/spark/skinning/SkinningApplication2Example.mxml
 (original)
+++ 
flex/site/trunk/content/tourdeflex/spark/skinning/SkinningApplication2Example.mxml
 Sun Sep 21 06:25:03 2014
@@ -20,7 +20,7 @@
 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=skins.BackgroundImageAppSkin 
viewSourceURL=srcview/index.html
+  skinClass=skins.BackgroundImageAppSkin

s:VGroup horizontalCenter=0 verticalCenter=0
s:Label text=Wood Sales Int'l fontSize=42 /

Modified: 
flex/site/trunk/content/tourdeflex/spark/skinning/SkinningApplication2Example.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content

svn commit: r1626627 [2/2] - in /flex/site/trunk/content/tourdeflex: ./ mx/charts/ mx/containers/ mx/controls/ mx/core/ mx/effects/ mx/formatters/ mx/printing/ mx/states/ mx/validators/ spark/charts/

2014-09-21 Thread jmclean
Modified: 
flex/site/trunk/content/tourdeflex/spark/controls/SampleStackedFormExample.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/controls/SampleStackedFormExample.swf?rev=1626627r1=1626626r2=1626627view=diff
==
Binary files - no diff available.

Modified: 
flex/site/trunk/content/tourdeflex/spark/controls/ScrollBarExample.mxml
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/controls/ScrollBarExample.mxml?rev=1626627r1=1626626r2=1626627view=diff
==
--- flex/site/trunk/content/tourdeflex/spark/controls/ScrollBarExample.mxml 
(original)
+++ flex/site/trunk/content/tourdeflex/spark/controls/ScrollBarExample.mxml Sun 
Sep 21 20:10:38 2014
@@ -21,7 +21,7 @@
 s:Application 
xmlns:fx=http://ns.adobe.com/mxml/2009;
xmlns:mx=library://ns.adobe.com/flex/mx
-   xmlns:s=library://ns.adobe.com/flex/spark  
viewSourceURL=srcview/index.html
+   xmlns:s=library://ns.adobe.com/flex/spark

s:Panel width=100% height=100%
 skinClass=skins.TDFPanelSkin
@@ -36,7 +36,7 @@
 
clipAndEnableScrolling=true
 
itemRenderer=spark.skins.spark.DefaultItemRenderer
s:layout 
-   s:VerticalLayout 
requestedRowCount=4/ 
+   s:VerticalLayout 
requestedRowCount=3/ 
/s:layout 
s:dataProvider 
s:ArrayCollection 
@@ -72,10 +72,7 @@
/s:DataGroup 

/s:HGroup
-   s:HScrollBar viewport={horizView} 
- left={horizView.left} 
- bottom={horizView.bottom} 
- width ={horizView.width}/
+   s:HScrollBar viewport={horizView} width 
={horizView.width}/
/mx:Box

s:Label paddingLeft=15 width=199 verticalAlign=justify 
color=0x323232

Modified: flex/site/trunk/content/tourdeflex/spark/controls/ScrollBarExample.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/controls/ScrollBarExample.swf?rev=1626627r1=1626626r2=1626627view=diff
==
Binary files - no diff available.

Modified: flex/site/trunk/content/tourdeflex/spark/controls/Scroller2Example.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/controls/Scroller2Example.swf?rev=1626627r1=1626626r2=1626627view=diff
==
Binary files - no diff available.

Modified: flex/site/trunk/content/tourdeflex/spark/controls/TextAreaExample.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/controls/TextAreaExample.swf?rev=1626627r1=1626626r2=1626627view=diff
==
Binary files - no diff available.

Modified: flex/site/trunk/content/tourdeflex/spark/controls/TextInputExample.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/controls/TextInputExample.swf?rev=1626627r1=1626626r2=1626627view=diff
==
Binary files - no diff available.

Modified: 
flex/site/trunk/content/tourdeflex/spark/controls/TextLayout1Example.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/controls/TextLayout1Example.swf?rev=1626627r1=1626626r2=1626627view=diff
==
Binary files - no diff available.

Modified: 
flex/site/trunk/content/tourdeflex/spark/controls/TextLayout2Example.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/controls/TextLayout2Example.swf?rev=1626627r1=1626626r2=1626627view=diff
==
Binary files - no diff available.

Modified: 
flex/site/trunk/content/tourdeflex/spark/controls/TextLayout3Example.swf
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/spark/controls/TextLayout3Example.swf?rev=1626627r1=1626626r2=1626627view=diff
==
Binary files - no diff available.

Modified: 
flex/site/trunk/content/tourdeflex/spark/controls/TextLayout4Example.swf
URL: 

svn commit: r1626627 [1/2] - in /flex/site/trunk/content/tourdeflex: ./ mx/charts/ mx/containers/ mx/controls/ mx/core/ mx/effects/ mx/formatters/ mx/printing/ mx/states/ mx/validators/ spark/charts/

2014-09-21 Thread jmclean
Author: jmclean
Date: Sun Sep 21 20:10:38 2014
New Revision: 1626627

URL: http://svn.apache.org/r1626627
Log:
TourDeFlex 1.1 added a few misisng files

Added:
flex/site/trunk/content/tourdeflex/favicon.ico   (with props)

flex/site/trunk/content/tourdeflex/spark/tlf/flashx/textLayout/ui/VellumGUIStyles.css

flex/site/trunk/content/tourdeflex/spark/tlf/textEditBar/assets/icon_align_end.PNG
   (with props)

flex/site/trunk/content/tourdeflex/spark/tlf/textEditBar/assets/icon_align_start.PNG
   (with props)
Modified:
flex/site/trunk/content/tourdeflex/explorer.xml
flex/site/trunk/content/tourdeflex/index.html
flex/site/trunk/content/tourdeflex/loaderPanel.swf
flex/site/trunk/content/tourdeflex/mx/charts/BubbleChartExample.swf
flex/site/trunk/content/tourdeflex/mx/charts/CandlestickChartExample.swf
flex/site/trunk/content/tourdeflex/mx/charts/Column_BarChartExample.swf
flex/site/trunk/content/tourdeflex/mx/charts/DateTimeAxisExample.swf
flex/site/trunk/content/tourdeflex/mx/charts/GridLinesExample.swf
flex/site/trunk/content/tourdeflex/mx/charts/HLOCChartExample.swf
flex/site/trunk/content/tourdeflex/mx/charts/Line_AreaChartExample.swf
flex/site/trunk/content/tourdeflex/mx/charts/LogAxisExample.swf
flex/site/trunk/content/tourdeflex/mx/charts/PieChartExample.swf
flex/site/trunk/content/tourdeflex/mx/charts/PlotChartExample.swf
flex/site/trunk/content/tourdeflex/mx/charts/SeriesInterpolateExample.swf
flex/site/trunk/content/tourdeflex/mx/charts/SeriesSlideExample.swf
flex/site/trunk/content/tourdeflex/mx/charts/SeriesZoomExample.swf
flex/site/trunk/content/tourdeflex/mx/containers/AccordionExample.swf
flex/site/trunk/content/tourdeflex/mx/containers/DividedBoxExample.swf
flex/site/trunk/content/tourdeflex/mx/containers/FormExample.swf
flex/site/trunk/content/tourdeflex/mx/containers/GridLayoutExample.swf
flex/site/trunk/content/tourdeflex/mx/containers/HBoxExample.swf
flex/site/trunk/content/tourdeflex/mx/containers/HDividedBoxExample.swf

flex/site/trunk/content/tourdeflex/mx/containers/SimpleApplicationControlBarExample.swf
flex/site/trunk/content/tourdeflex/mx/containers/SimpleBoxExample.swf
flex/site/trunk/content/tourdeflex/mx/containers/SimpleCanvasExample.swf
flex/site/trunk/content/tourdeflex/mx/containers/SimpleControlBarExample.swf
flex/site/trunk/content/tourdeflex/mx/containers/SimplePanelExample.swf

flex/site/trunk/content/tourdeflex/mx/containers/SimpleTitleWindowExample.swf
flex/site/trunk/content/tourdeflex/mx/containers/TabNavigatorExample.swf
flex/site/trunk/content/tourdeflex/mx/containers/TileLayoutExample.swf
flex/site/trunk/content/tourdeflex/mx/containers/TitleWindowApp.swf
flex/site/trunk/content/tourdeflex/mx/containers/VBoxExample.swf
flex/site/trunk/content/tourdeflex/mx/containers/VDividedBoxExample.swf
flex/site/trunk/content/tourdeflex/mx/containers/ViewStackExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/AdvancedDataGridExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/ButtonBarExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/ButtonExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/CheckBoxExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/ColorPickerExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/DateChooserExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/DateFieldExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/HScrollBarExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/HorizontalListExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/LabelExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/LinkBarExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/LinkButtonExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/Local.swf
flex/site/trunk/content/tourdeflex/mx/controls/MenuBarExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/NumericStepperExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/OLAPDataGridExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/PopUpButtonExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/PopUpButtonMenuExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/RadioButtonExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/RadioButtonGroupExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/RichTextEditorExample.swf
flex/site/trunk/content/tourdeflex/mx/controls/SimpleAlert.swf
flex/site/trunk/content/tourdeflex/mx/controls/SimpleComboBox.swf
flex/site/trunk/content/tourdeflex/mx/controls/SimpleDataGrid.swf
flex/site/trunk/content/tourdeflex/mx/controls/SimpleHRule.swf
flex/site/trunk/content/tourdeflex/mx/controls/SimpleImage.swf
flex/site/trunk/content/tourdeflex/mx/controls/SimpleImageHSlider.swf
flex/site/trunk/content/tourdeflex/mx

svn commit: r1626628 - /flex/site/trunk/content/tourdeflex/explorer.html

2014-09-21 Thread jmclean
Author: jmclean
Date: Sun Sep 21 20:11:44 2014
New Revision: 1626628

URL: http://svn.apache.org/r1626628
Log:
TourDeFlex 1.1 added mising trademark name to be consistant with other pages

Modified:
flex/site/trunk/content/tourdeflex/explorer.html

Modified: flex/site/trunk/content/tourdeflex/explorer.html
URL: 
http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/explorer.html?rev=1626628r1=1626627r2=1626628view=diff
==
--- flex/site/trunk/content/tourdeflex/explorer.html (original)
+++ flex/site/trunk/content/tourdeflex/explorer.html Sun Sep 21 20:11:44 2014
@@ -17,7 +17,7 @@
 html lang=en
 head
 meta http-equiv=Content-Type content=text/html; charset=utf-8 /
-titleApache Flex Tour De Flex Component Explorer/title
+titleApache Flex® Tour De Flex Component Explorer/title
 script src=AC_OETags.js language=javascript/script
 style
 body { margin: 0px; overflow:hidden }




[2/3] git commit: [flex-utilities] [refs/heads/develop] - Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/flex-utilities into develop

2014-09-21 Thread jmclean
Merge branch 'develop' of 
https://git-wip-us.apache.org/repos/asf/flex-utilities into develop


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

Branch: refs/heads/develop
Commit: e466edecf84c53ec20b6aaa71dc6c52987f77fbb
Parents: d14c15c e49995b
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Sep 22 06:29:07 2014 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Sep 22 06:29:07 2014 +1000

--
 FlexPMD/pom.xml |  2 +-
 .../converter/flash/FlashConverter.java |  7 ---
 .../utilities/converter/core/AirDownloader.java | 14 -
 .../converter/core/FlashDownloader.java | 22 
 .../retrievers/download/DownloadRetriever.java  |  1 -
 5 files changed, 23 insertions(+), 23 deletions(-)
--




[3/3] git commit: [flex-utilities] [refs/heads/develop] - Update to refer to full path and modified wording a little

2014-09-21 Thread jmclean
Update to refer to full path and modified wording a little


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

Branch: refs/heads/develop
Commit: 609dae6ede8400c14777d836e6cfde5cb184ae49
Parents: e466ede
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Sep 22 06:30:10 2014 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Sep 22 06:30:10 2014 +1000

--
 Squiggly/LICENSE | 13 ++---
 1 file changed, 6 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/609dae6e/Squiggly/LICENSE
--
diff --git a/Squiggly/LICENSE b/Squiggly/LICENSE
index 3eccb83..83b9bb7 100644
--- a/Squiggly/LICENSE
+++ b/Squiggly/LICENSE
@@ -206,11 +206,13 @@
 
 Apache Squiggly Subcomponents:

-   The dictionaries found in dictionaries directory are licensed under
-   a BSD / MIT like license and are Copyright 2000-2014 by Kevin Atkinson.
+   This product bundles the SCOWL (and friends) Hunspell dictionaries
+   licensed under a BSD / MIT like license and are Copyright 2000-2014
+   by Kevin Atkinson.

-   For a complete details of the LICENSE please see the README in the en_GB
-   and en_US directories.
+   For complete details of the LICENSE please see:
+  dictionaries/en_US/README_en_US.txt
+  dictionaries/en_GB/README_en_GB.txt
 
   Copyright 2000-2014 by Kevin Atkinson
 
@@ -223,6 +225,3 @@ Apache Squiggly Subcomponents:
   about the suitability of this array for any purpose. It is provided
   as is without express or implied warranty.
 
-
-
-



[1/3] git commit: [flex-utilities] [refs/heads/develop] - renamed file back to their original names

2014-09-21 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/develop e49995b21 - 609dae6ed


renamed file back to their original names


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

Branch: refs/heads/develop
Commit: d14c15c0e2faa458eb41a1aa7049deb6baca94eb
Parents: fb72635
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Sep 22 06:28:59 2014 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Sep 22 06:28:59 2014 +1000

--
 Squiggly/dictionaries/en_GB/README| 309 -
 Squiggly/dictionaries/en_GB/README_en_GB.txt  | 309 +
 Squiggly/dictionaries/en_US/README| 309 -
 Squiggly/dictionaries/en_US/README_en_US.txt  | 309 +
 4 files changed, 618 insertions(+), 618 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/d14c15c0/Squiggly/dictionaries/en_GB/README
--
diff --git a/Squiggly/dictionaries/en_GB/README 
b/Squiggly/dictionaries/en_GB/README
deleted file mode 100644
index a3a6270..000
--- a/Squiggly/dictionaries/en_GB/README
+++ /dev/null
@@ -1,309 +0,0 @@
-en_GB-ise Hunspell Dictionary
-Version 2014.08.11
-Mon Aug 11 18:23:56 2014 +0200 [be45e88]
-http://wordlist.sourceforge.net
-
-README file for English Hunspell dictionaries derived from SCOWL.
-
-These dictionaries are created using the speller/make-hunspell-dict
-script in SCOWL.
-
-The following dictionaries are available:
-
-  en_US (American)
-  en_CA (Canadian)
-  en_GB-ise (British with ize spelling)
-  en_GB-ize (British with ize spelling)
-
-  en_US-large
-  en_CA-large
-  en_GB-large (with both ize and ise spelling)
-
-The normal (non-large) dictionaries correspond to SCOWL size 60 and,
-to encourage consistent spelling, generally only include one spelling
-variant for a word.  The large dictionaries correspond to SCOWL size
-70 and may include multiple spelling for a word when both variants are
-considered almost equal.  Also, the general quality of the larger
-dictionaries may also be less as they are not as carefully checked for
-errors as the normal dictionaries.
-
-To get an idea of the difference in size, here are 25 random words
-only found in the large dictionary for American English:
-
-  Bermejo Freyr's Guenevere Hatshepsut Nottinghamshire arrestment
-  crassitudes crural dogwatches errorless fetial flaxseeds godroon
-  incretion jalapeño's kelpie kishkes neuroglias pietisms pullulation
-  stemwinder stenoses syce thalassic zees
-
-The en_US and en_CA are the official dictionaries for Hunspell.  The
-en_GB and large dictionaries are made available on an experimental
-basis.  If you find them useful please send me a quick email at
-kev...@gnu.org.
-
-If none of these dictionaries suite you (for example, maybe you want
-the larger dictionary but only use spelling of a word) additional
-dictionaries can be generated at http://app.aspell.net/create or by
-modifying speller/make-hunspell-dict in SCOWL.  Please do let me know
-if you end up publishing a customized dictionary.
-
-If a word is not found in the dictionary or a word is there you think
-shouldn't be, you can lookup the word up at http://app.aspell.net/lookup
-to help determine why that is.
-
-General comments on these list can be sent directly to me at
-kev...@gnu.org or to the wordlist-devel mailing lists
-(https://lists.sourceforge.net/lists/listinfo/wordlist-devel).  If you
-have specific issues with any of these dictionaries please file a bug
-report at https://github.com/kevina/wordlist/issues.
-
-ADDITIONAL NOTES:
-
-The NOSUGGEST flag was added to certain taboo words.  While I made an
-honest attempt to flag the strongest taboo words with the NOSUGGEST
-flag, I MAKE NO GUARANTEE THAT I FLAGGED EVERY POSSIBLE TABOO WORD.
-The list was originally derived from Németh László, however I removed
-some words which, while being considered taboo by some dictionaries,
-are not really considered swear words in today's society.
-
-COPYRIGHT, SOURCES, and CREDITS:
-
-The English dictionaries come directly from SCOWL 
-and is thus under the same copyright of SCOWL.  The affix file is
-a heavily modified version of the original english.aff file which was
-released as part of Geoff Kuenning's Ispell and as such is covered by
-his BSD license.  Part of SCOWL is also based on Ispell thus the
-Ispell copyright is included with the SCOWL copyright.
-
-The collective work is Copyright 2000-2014 by Kevin Atkinson as well
-as any of the copyrights mentioned below:
-
-  Copyright 2000-2014 by Kevin 

[05/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - Fine tuned the main pom in preparation of releasing the mavenizer.

2014-09-21 Thread jmclean
Fine tuned the main pom in preparation of releasing the mavenizer.


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

Branch: refs/heads/master
Commit: 1eefc9d444ffd3f0b3585d6c1e760f058e6b0d62
Parents: 4b5f3a7
Author: cdutz christofer.d...@c-ware.de
Authored: Sat Aug 30 17:36:03 2014 +0200
Committer: cdutz christofer.d...@c-ware.de
Committed: Sat Aug 30 17:36:03 2014 +0200

--
 mavenizer/pom.xml | 87 +-
 1 file changed, 36 insertions(+), 51 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/1eefc9d4/mavenizer/pom.xml
--
diff --git a/mavenizer/pom.xml b/mavenizer/pom.xml
index f56c49b..a1be314 100644
--- a/mavenizer/pom.xml
+++ b/mavenizer/pom.xml
@@ -22,6 +22,12 @@
  xsi:schemaLocation=http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd;
 modelVersion4.0.0/modelVersion
 
+parent
+groupIdorg.apache/groupId
+artifactIdapache/artifactId
+version14/version
+/parent
+
 groupIdorg.apache.flex.utilities.converter/groupId
 artifactIdflex-sdk-converter/artifactId
 version1.0.0-SNAPSHOT/version
@@ -33,16 +39,29 @@
 wagonVersion2.2/wagonVersion
 /properties
 
-distributionManagement
-repository
-idapache.releases.https/id
-
urlhttps://repository.apache.org/service/local/staging/deploy/maven2/url
-/repository
-snapshotRepository
-idapache.snapshots.https/id
-
urlhttps://repository.apache.org/content/repositories/snapshots/url
-/snapshotRepository
-/distributionManagement
+mailingLists
+mailingList
+nameApache Flex User List/name
+subscribeusers-subscr...@flex.apache.org/subscribe
+unsubscribeusers-unsubscr...@flex.apache.org/unsubscribe
+postus...@flex.apache.org/post
+archive
+http://mail-archives.apache.org/mod_mbox/flex-users/
+/archive
+/mailingList
+/mailingLists
+
+scm
+connection
+scm:svn:https://git-wip-us.apache.org/repos/asf/flex-utilities.git
+/connection
+developerConnection
+scm:svn:https://git-wip-us.apache.org/repos/asf/flex-utilities.git
+/developerConnection
+url
+https://git-wip-us.apache.org/repos/asf/flex-utilities.git
+/url
+/scm
 
 modules
 modulecore/module
@@ -53,49 +72,15 @@
 
 build
 plugins
-!--plugin
-artifactIdmaven-assembly-plugin/artifactId
-version2.2.2/version
+plugin
+groupIdorg.apache.maven.plugins/groupId
+artifactIdmaven-compiler-plugin/artifactId
 configuration
-archive
-manifest
-
addDefaultImplementationEntriestrue/addDefaultImplementationEntries
-addClasspathtrue/addClasspath
-/manifest
-manifestEntries
-
Implementation-Build${project.version}/Implementation-Build
-/manifestEntries
-/archive
-descriptorRefs
-descriptorRefjar-with-dependencies/descriptorRef
-/descriptorRefs
-
finalNameflex-sdk-converter-${project.version}/finalName
-appendAssemblyIdfalse/appendAssemblyId
+source1.5/source
+target1.5/target
+encoding${project.build.sourceEncoding}/encoding
 /configuration
-executions
-execution
-phasepackage/phase
-goals
-goalsingle/goal
-/goals
-/execution
-/executions
-/plugin--
-!-- Commented out because the plugin doesn't seem to work. --
-!--plugin
-groupIdorg.apache.rat/groupId
-artifactIdapache-rat-plugin/artifactId
-version0.10/version
-inheritedfalse/inherited
-executions
-execution
-phaseverify/phase
-goals
-goalcheck/goal
-/goals
-

[06/50] [abbrv] - Fine tuned the main pom - Fixed a lot of unit-tests.

2014-09-21 Thread jmclean
http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/84658ba5/FlexPMD/flex-pmd-java/flex-pmd-ruleset/src/test/java/com/adobe/ac/pmd/rules/naming/CapitalizeConstantsRuleTest.java
--
diff --git 
a/FlexPMD/flex-pmd-java/flex-pmd-ruleset/src/test/java/com/adobe/ac/pmd/rules/naming/CapitalizeConstantsRuleTest.java
 
b/FlexPMD/flex-pmd-java/flex-pmd-ruleset/src/test/java/com/adobe/ac/pmd/rules/naming/CapitalizeConstantsRuleTest.java
index 6be17b1..d660a2b 100644
--- 
a/FlexPMD/flex-pmd-java/flex-pmd-ruleset/src/test/java/com/adobe/ac/pmd/rules/naming/CapitalizeConstantsRuleTest.java
+++ 
b/FlexPMD/flex-pmd-java/flex-pmd-ruleset/src/test/java/com/adobe/ac/pmd/rules/naming/CapitalizeConstantsRuleTest.java
@@ -20,27 +20,24 @@ import com.adobe.ac.pmd.rules.core.AbstractAstFlexRuleTest;
 import com.adobe.ac.pmd.rules.core.AbstractFlexRule;
 import com.adobe.ac.pmd.rules.core.ViolationPosition;
 
-public class CapitalizeConstantsRuleTest extends AbstractAstFlexRuleTest
-{
-   @Override
-   protected ExpectedViolation[] getExpectedViolatingFiles()
-   {
-  return new ExpectedViolation[]
-  { new ExpectedViolation( AbstractRowData.as, new ViolationPosition[]
-   { new ViolationPosition( 45 ),
-   new ViolationPosition( 46 ) } ),
-  new ExpectedViolation( bug.FlexPMD233b.mxml, new 
ViolationPosition[]
-  { new ViolationPosition( 66 ) } ),
-  new ExpectedViolation( com.adobe.ac.ncss.ArrayVO.as, new 
ViolationPosition[]
-  { new ViolationPosition( 39 ),
-  new ViolationPosition( 40 ) } ),
-  new ExpectedViolation( GenericType.as, new 
ViolationPosition[]
-  { new ViolationPosition( 36 ) } ) };
-   }
+public class CapitalizeConstantsRuleTest extends AbstractAstFlexRuleTest {
+@Override
+protected ExpectedViolation[] getExpectedViolatingFiles() {
+return new ExpectedViolation[]
+{new ExpectedViolation(AbstractRowData.as, new 
ViolationPosition[]
+{new ViolationPosition(33),
+new ViolationPosition(34)}),
+new ExpectedViolation(bug.FlexPMD233b.mxml, new 
ViolationPosition[]
+{new ViolationPosition(52)}),
+new ExpectedViolation(com.adobe.ac.ncss.ArrayVO.as, 
new ViolationPosition[]
+{new ViolationPosition(27),
+new ViolationPosition(28)}),
+new ExpectedViolation(GenericType.as, new 
ViolationPosition[]
+{new ViolationPosition(24)})};
+}
 
-   @Override
-   protected AbstractFlexRule getRule()
-   {
-  return new CapitalizeConstantsRule();
-   }
+@Override
+protected AbstractFlexRule getRule() {
+return new CapitalizeConstantsRule();
+}
 }

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/84658ba5/FlexPMD/flex-pmd-java/flex-pmd-ruleset/src/test/java/com/adobe/ac/pmd/rules/naming/IncorrectClassCaseTest.java
--
diff --git 
a/FlexPMD/flex-pmd-java/flex-pmd-ruleset/src/test/java/com/adobe/ac/pmd/rules/naming/IncorrectClassCaseTest.java
 
b/FlexPMD/flex-pmd-java/flex-pmd-ruleset/src/test/java/com/adobe/ac/pmd/rules/naming/IncorrectClassCaseTest.java
index 12b2dd0..9695d76 100644
--- 
a/FlexPMD/flex-pmd-java/flex-pmd-ruleset/src/test/java/com/adobe/ac/pmd/rules/naming/IncorrectClassCaseTest.java
+++ 
b/FlexPMD/flex-pmd-java/flex-pmd-ruleset/src/test/java/com/adobe/ac/pmd/rules/naming/IncorrectClassCaseTest.java
@@ -27,7 +27,7 @@ public class IncorrectClassCaseTest extends 
AbstractAstFlexRuleTest
{
   return new ExpectedViolation[]
   { new ExpectedViolation( com.adobe.ac.foo.as, new ViolationPosition[]
-  { new ViolationPosition( 1, 34 ) } ) };
+  { new ViolationPosition( 1, 22 ) } ) };
}
 
@Override

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/84658ba5/FlexPMD/flex-pmd-java/flex-pmd-ruleset/src/test/java/com/adobe/ac/pmd/rules/naming/IncorrectEventHandlerNameRuleTest.java
--
diff --git 
a/FlexPMD/flex-pmd-java/flex-pmd-ruleset/src/test/java/com/adobe/ac/pmd/rules/naming/IncorrectEventHandlerNameRuleTest.java
 
b/FlexPMD/flex-pmd-java/flex-pmd-ruleset/src/test/java/com/adobe/ac/pmd/rules/naming/IncorrectEventHandlerNameRuleTest.java
index c6d998d..c8765f9 100644
--- 
a/FlexPMD/flex-pmd-java/flex-pmd-ruleset/src/test/java/com/adobe/ac/pmd/rules/naming/IncorrectEventHandlerNameRuleTest.java
+++ 
b/FlexPMD/flex-pmd-java/flex-pmd-ruleset/src/test/java/com/adobe/ac/pmd/rules/naming/IncorrectEventHandlerNameRuleTest.java
@@ -27,16 +27,16 @@ public class IncorrectEventHandlerNameRuleTest extends 

[03/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - Added a maven.xml to allow package, install and deploy of maven artifacts.

2014-09-21 Thread jmclean
Added a maven.xml to allow package, install and deploy of maven artifacts.


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

Branch: refs/heads/master
Commit: 4177253a9bd5076f3ef56c2546c574be5fcb3205
Parents: 249e685
Author: Christofer Dutz christofer.d...@codecentric.de
Authored: Fri Aug 29 20:46:44 2014 +0200
Committer: Christofer Dutz christofer.d...@codecentric.de
Committed: Fri Aug 29 20:46:44 2014 +0200

--
 Squiggly/main/maven.xml | 247 +++
 .../main/maven/apache-flex-spelling-engine.pom  |  18 ++
 .../maven/apache-flex-spelling-framework.pom|  33 +++
 .../apache-flex-spelling-linguistic-utils.pom   |  18 ++
 .../main/maven/apache-flex-spelling-ui-api.pom  |  27 ++
 .../main/maven/apache-flex-spelling-ui-ex.pom   |  27 ++
 .../main/maven/apache-flex-spelling-ui-tlf.pom  |  27 ++
 Squiggly/main/maven/apache-flex-spelling-ui.pom |  27 ++
 Squiggly/main/maven/squiggly.pom|  36 +++
 9 files changed, 460 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/4177253a/Squiggly/main/maven.xml
--
diff --git a/Squiggly/main/maven.xml b/Squiggly/main/maven.xml
new file mode 100644
index 000..ab796de
--- /dev/null
+++ b/Squiggly/main/maven.xml
@@ -0,0 +1,247 @@
+?xml version=1.0 ?
+!--
+
+  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.
+
+--
+project default=install
+
+property name=version value=1.0/
+
+!-- Set type to RELEASE in order to deploy to the release repo --
+property name=type value=SNAPSHOT/
+
+condition property=maven.version
+   value=${version}
+   else=${version}-SNAPSHOT
+equals arg1=${type} arg2=RELEASE/
+/condition
+
+condition property=maven.repositoryId
+   value=apache.releases.https
+   else=apache.snapshots.https
+equals arg1=${type} arg2=RELEASE/
+/condition
+
+condition property=maven.repositoryUrl
+   
value=https://repository.apache.org/service/local/staging/deploy/maven2;
+   
else=https://repository.apache.org/content/repositories/snapshots;
+equals arg1=${type} arg2=RELEASE/
+/condition
+
+import file=build.xml/
+
+target name=package depends=test
+echo message=Preparing Maven artifacts vor version ${maven.version} 
.../
+
+delete dir=generated/maven/
+mkdir dir=generated/maven/
+
+copy file=maven/squiggly.pom tofile=generated/maven/squiggly.pom
+filterchain
+tokenfilter
+replacestring from=@VERSION@ to=${maven.version}/
+/tokenfilter
+/filterchain
+/copy
+
+antcall target=-pack-maven-artifact
+param name=moduleName value=LinguisticUtils/
+param name=artifactName 
value=apache-flex-spelling-linguistic-utils/
+/antcall
+
+antcall target=-pack-maven-artifact
+param name=moduleName value=SpellingEngine/
+param name=artifactName value=apache-flex-spelling-engine/
+/antcall
+
+antcall target=-pack-maven-artifact
+param name=moduleName value=SpellingFramework/
+param name=artifactName value=apache-flex-spelling-framework/
+/antcall
+
+antcall target=-pack-maven-artifact
+param name=moduleName value=SpellingUI/
+param name=artifactName value=apache-flex-spelling-ui/
+/antcall
+
+antcall target=-pack-maven-artifact
+param name=moduleName value=SpellingUIAPI/
+param name=artifactName value=apache-flex-spelling-ui-api/
+/antcall
+
+antcall target=-pack-maven-artifact
+param name=moduleName value=SpellingUIEx/
+param name=artifactName 

[25/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - Add contributors and contributing files in releases

2014-09-21 Thread jmclean
Add contributors and contributing files in releases


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

Branch: refs/heads/master
Commit: 218761c276a75f0ffcbccfb1c5666b559d252f2c
Parents: 45d3fdd
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Sep 4 18:57:00 2014 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Sep 4 18:57:00 2014 +1000

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


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/218761c2/TourDeFlex/TourDeFlex3/build.xml
--
diff --git a/TourDeFlex/TourDeFlex3/build.xml b/TourDeFlex/TourDeFlex3/build.xml
index 94797df..125ad7e 100644
--- a/TourDeFlex/TourDeFlex3/build.xml
+++ b/TourDeFlex/TourDeFlex3/build.xml
@@ -437,7 +437,9 @@
 longfile=gnu
 tarfileset dir=${basedir}/..
 include name=LICENSE /
-include name=NOTICE /
+   include name=NOTICE /
+   include name=CONTIBITORS /
+include name=CONTRIBITING /
 /tarfileset
 tarfileset dir=${basedir}
 include name=README /
@@ -467,6 +469,8 @@
 fileset dir=${basedir}/..
 include name=LICENSE /
 include name=NOTICE /
+   include name=CONTIBITORS /
+include name=CONTRIBITING /
 /fileset
 fileset dir=${basedir}
 include name=README /



[26/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - minor correction to README

2014-09-21 Thread jmclean
minor correction to README


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

Branch: refs/heads/master
Commit: 50cb79c46a0a1808cf4623ed772fde760e41f255
Parents: 218761c
Author: Justin Mclean jmcl...@apache.org
Authored: Fri Sep 5 09:58:54 2014 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Fri Sep 5 09:58:54 2014 +1000

--
 Squiggly/README | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/50cb79c4/Squiggly/README
--
diff --git a/Squiggly/README b/Squiggly/README
index 92e6d24..6bd88f2 100644
--- a/Squiggly/README
+++ b/Squiggly/README
@@ -1,5 +1,5 @@
 
-  The Apache Flex Squiggly is a ActionScript spell checking library.
+  Apache Flex Squiggly is a ActionScript spell checking library.
 
   This application is based on work donated by Adobe.
   



[38/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - flight reorder

2014-09-21 Thread jmclean
flight reorder


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

Branch: refs/heads/master
Commit: 0a524eb85e1551cc4ca905e1e464e29d3c443b78
Parents: f3632d1
Author: Justin Mclean jmcl...@apache.org
Authored: Sun Sep 7 09:43:14 2014 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Sun Sep 7 09:43:14 2014 +1000

--
 TourDeFlex/TourDeFlex3/RELEASE_NOTES | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/0a524eb8/TourDeFlex/TourDeFlex3/RELEASE_NOTES
--
diff --git a/TourDeFlex/TourDeFlex3/RELEASE_NOTES 
b/TourDeFlex/TourDeFlex3/RELEASE_NOTES
index b568a5c..7b178a1 100644
--- a/TourDeFlex/TourDeFlex3/RELEASE_NOTES
+++ b/TourDeFlex/TourDeFlex3/RELEASE_NOTES
@@ -20,9 +20,9 @@ Bugs fixed and improvements:
 FLEX-34502 Add link to github in TourDeFlex
 FLEX-34500 Show total number of examples in Tour De Flex UI
 FLEX-34495 Error loading source file
+FLEX-34492 Need ability to link to examples
 FLEX-34491 The Spark Module Load example is non functional
 FLEX-34490 The Spark Video example produces a Playback Error
-FLEX-34492 Need ability to link to examples
 FLEX-34489 Some examples are missing all source files tab
 FLEX-34488 Add favicon to TourDeFlex
 FLEX-34483 Make logo links to Apache Flex web site
@@ -32,7 +32,6 @@ FLEX-34479 Change naming format of TourDeFlex
 FLEX-34478 Wrong paths for video in TourDeFlex application
 FLEX-34474 TourDeFlex effects example bad styles and modifying default 
destination scaling
 
-
 
 Apache Flex Tour De Flex Component Explorer 1.0
 



[10/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - update with recent fixes

2014-09-21 Thread jmclean
update with recent fixes


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

Branch: refs/heads/master
Commit: ece15f22a9c61aaec96875b147b80564689ce687
Parents: a399ee1
Author: Justin Mclean jmcl...@apache.org
Authored: Mon Sep 1 14:54:15 2014 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Mon Sep 1 14:54:15 2014 +1000

--
 TourDeFlex/TourDeFlex3/RELEASE_NOTES | 3 +++
 1 file changed, 3 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/ece15f22/TourDeFlex/TourDeFlex3/RELEASE_NOTES
--
diff --git a/TourDeFlex/TourDeFlex3/RELEASE_NOTES 
b/TourDeFlex/TourDeFlex3/RELEASE_NOTES
index 5cd2ce9..cd8d350 100644
--- a/TourDeFlex/TourDeFlex3/RELEASE_NOTES
+++ b/TourDeFlex/TourDeFlex3/RELEASE_NOTES
@@ -17,6 +17,8 @@ Bugs fixed and improvements:
 FLEX-34502 Add link to github in TourDeFlex
 FLEX-34500 Show total number of examples in Tour De Flex UI
 FLEX-34495 Error loading source file
+FLEX-34491 The Spark Module Load example is non functional
+FLEX-34490 The Spark Video example produces a Playback Error
 FLEX-34492 Need ability to link to examples
 FLEX-34489 Some examples are missing all source files tab
 FLEX-34488 Add favicon to TourDeFlex
@@ -24,6 +26,7 @@ FLEX-34483 Make logo links to Apache Flex web site
 FLEX-34482 Add copy button to copy code examples to clipboard
 FLEX-34480 If TourDeFlex is run from an untrusted location you get an error
 FLEX-34479 Change naming format of TourDeFlex
+FLEX-34478 Wrong paths for video in TourDeFlex application
 FLEX-34474 TourDeFlex effects example bad styles and modifying default 
destination scaling
 
 



[36/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - add Piotr

2014-09-21 Thread jmclean
add Piotr


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

Branch: refs/heads/master
Commit: 07d12d27892f98358353a2c477cf1dbb36310621
Parents: a1d4c67
Author: Justin Mclean jmcl...@apache.org
Authored: Sun Sep 7 09:42:05 2014 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Sun Sep 7 09:42:05 2014 +1000

--
 TourDeFlex/CONTRIBUTORS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/07d12d27/TourDeFlex/CONTRIBUTORS
--
diff --git a/TourDeFlex/CONTRIBUTORS b/TourDeFlex/CONTRIBUTORS
index 319333e..924837b 100644
--- a/TourDeFlex/CONTRIBUTORS
+++ b/TourDeFlex/CONTRIBUTORS
@@ -4,7 +4,7 @@ support to the Apache Flex Tour De Flex.
 Apache Flex Tour De Flex 1.1
 
 Andrew Wetmore, Alex Harui, Christofer Dutz, Justin Mclean, Lee Burrows,
-Nemi, OmPrakash Muppirala
+Nemi, OmPrakash Muppirala, Piotr
 
 
 Apache Flex Tour De Flex 1.0



[16/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - update in preparation for 1.1 release

2014-09-21 Thread jmclean
update in preparation for 1.1 release


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

Branch: refs/heads/master
Commit: 9d0d53d501ba622501918227361d667691abb539
Parents: fb73c29
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Sep 4 08:39:42 2014 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Sep 4 08:39:42 2014 +1000

--
 TourDeFlex/TourDeFlex3/RELEASE_NOTES | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d0d53d5/TourDeFlex/TourDeFlex3/RELEASE_NOTES
--
diff --git a/TourDeFlex/TourDeFlex3/RELEASE_NOTES 
b/TourDeFlex/TourDeFlex3/RELEASE_NOTES
index cd8d350..ca02c43 100644
--- a/TourDeFlex/TourDeFlex3/RELEASE_NOTES
+++ b/TourDeFlex/TourDeFlex3/RELEASE_NOTES
@@ -2,9 +2,12 @@
 Apache Flex Tour De Flex Component Explorer 1.1
 
 
+Apache Flex Tour De Flex 1.1 is an update to 1.0 adding a few improvements and
+fixing a few broken and non working examples.
+
 Changes since the version 1.0
 - Update READE and RELEASE_NOTES
-- Added some Apache Flex specific examples
+- Added some Apache Flex specific examples (we would like to see more)
 - Added button to copy code in source tab
 - Added button to link to github example
 - Added button to copy link to example



[31/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - check in approval scripts I use

2014-09-21 Thread jmclean
check in approval scripts I use


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

Branch: refs/heads/master
Commit: 51ae233a89ffa6f3d55ea4bbdc9616f7e39aab31
Parents: 7c8fa2b
Author: Alex Harui aha...@apache.org
Authored: Thu Sep 4 23:28:21 2014 -0700
Committer: Alex Harui aha...@apache.org
Committed: Thu Sep 4 23:28:21 2014 -0700

--
 Squiggly/ApproveSquiggly.xml | 368 ++
 TourDeFlex/ApproveTDF.xml| 366 +
 2 files changed, 734 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/51ae233a/Squiggly/ApproveSquiggly.xml
--
diff --git a/Squiggly/ApproveSquiggly.xml b/Squiggly/ApproveSquiggly.xml
new file mode 100644
index 000..ea01ea3
--- /dev/null
+++ b/Squiggly/ApproveSquiggly.xml
@@ -0,0 +1,368 @@
+?xml version=1.0?
+!--
+
+  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.
+
+--
+
+project name=ApproveApacheFlexSquiggly default=main basedir=.
+
+
+!-- Required for OSX 10.6 / Snow Leopard Performance. --
+!-- Java 7 on Mac requires OSX 10.7.3 or higher and is 64-bit only --
+!-- local.d32 is set/used in build.properties so this needs to be done 
first. --
+condition property=local.d32 value=-d32
+and
+os family=windows/
+equals arg1=${sun.arch.data.model} arg2=64/
+equals arg1=${os.arch} arg2=x86_64/
+equals arg1=${ant.java.version} arg2=1.6/
+/and
+/condition
+
+condition property=isMac value=mac
+os family=mac /
+/condition
+condition property=isWindows value=windows
+os family=windows /
+/condition
+condition property=isLinux value=linux
+   and
+   os family=unix /
+   not
+   isset property=isMac /
+   /not
+   /and
+/condition
+condition property=package.suffix value=zip
+os family=windows /
+/condition
+   property name=package.suffix value=tar.gz /
+   
+   property name=rat.report value=${basedir}/rat-report.txt/
+   property name=apache.rat.jar value=apache-rat-0.8.jar /
+   property name=apache.rat.tasks.jar value=apache-rat-tasks-0.8.jar 
/
+   property name=apache.rat.url 
value=http://people.apache.org/~aharui/rat; /
+   
+   property name=mac.text.display value=cat /
+   property name=win.text.display value=type /
+   property name=linux.text.display value=cat /
+
+property file=${basedir}/approvetdf.properties/
+property environment=env/
+
+property name=build.target value=main /
+
+   condition property=do.copy.downloads 
+   isset property=download.cache.dir / 
+   /condition
+   
+fail message=The ANT_HOME environment variable is not set.
+unless=env.ANT_HOME/
+   
+   available file=${env.FLEX_HOME} 
+   type=dir 
+   property=FLEX_HOME value=${env.FLEX_HOME} /
+
+fail message=The FLEX_HOME property is not set in environment or 
command-line.
+unless=FLEX_HOME/
+   
+   available file=${env.AIR_HOME} 
+   type=dir 
+   property=AIR_HOME value=${env.AIR_HOME} /
+
+fail message=The AIR_HOME property is not set in environment or 
command-line.
+unless=AIR_HOME/
+   
+available file=${env.ANT_HOME}/lib/${apache.rat.jar}
+type=file
+property=apache.rat.found/
+available file=${env.ANT_HOME}/lib/${apache.rat.tasks.jar}
+type=file
+property=apache.rat.tasks.found/
+   
+fail message=The release version is not set.  Specify 
-Drelease.version=lt;release version (e.g. 3.1, 3.2, etc)gt;
+

[01/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - Added repo info so the apache jenkins will know how to deploy the artifacts.

2014-09-21 Thread jmclean
Repository: flex-utilities
Updated Branches:
  refs/heads/master 26e0fd564 - 0d9689202


Added repo info so the apache jenkins will know how to deploy the artifacts.


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

Branch: refs/heads/master
Commit: 001ed0c3fb6d050e1f59f71ce070bc43df5e09b2
Parents: b3e70ac
Author: cdutz christofer.d...@c-ware.de
Authored: Thu Jul 31 10:13:38 2014 +0200
Committer: cdutz christofer.d...@c-ware.de
Committed: Thu Jul 31 10:13:38 2014 +0200

--
 mavenizer/pom.xml | 11 +++
 1 file changed, 11 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/001ed0c3/mavenizer/pom.xml
--
diff --git a/mavenizer/pom.xml b/mavenizer/pom.xml
index 71748f0..f56c49b 100644
--- a/mavenizer/pom.xml
+++ b/mavenizer/pom.xml
@@ -33,6 +33,17 @@
 wagonVersion2.2/wagonVersion
 /properties
 
+distributionManagement
+repository
+idapache.releases.https/id
+
urlhttps://repository.apache.org/service/local/staging/deploy/maven2/url
+/repository
+snapshotRepository
+idapache.snapshots.https/id
+
urlhttps://repository.apache.org/content/repositories/snapshots/url
+/snapshotRepository
+/distributionManagement
+
 modules
 modulecore/module
 moduleretrievers/module



[13/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - - Finished fixing the last unit tests. (Now FlexPMD seems to be building correctly)

2014-09-21 Thread jmclean
- Finished fixing the last unit tests.
(Now FlexPMD seems to be building correctly)


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

Branch: refs/heads/master
Commit: 8170bf35fe2607c02f7b7764e6d05b76bdc0c0b7
Parents: d2f7b9c
Author: Christofer Dutz christofer.d...@codecentric.de
Authored: Mon Sep 1 23:14:26 2014 +0200
Committer: Christofer Dutz christofer.d...@codecentric.de
Committed: Mon Sep 1 23:14:26 2014 +0200

--
 FlexPMD/flex-pmd-flex/flex-pmd-flex-lib/pom.xml |  4 +-
 .../flex-pmd-flex-lib/src/main/flex/Version.as  |  2 +-
 .../flex-pmd-flex-lib/src/test/flex/AllTests.as |  2 +-
 .../flex/com/adobe/ac/pmd/model/RuleTest.as |  2 +-
 .../flex/com/adobe/ac/pmd/model/RulesetTest.as  |  2 +-
 .../flex-pmd-ruleset-creator/pom.xml| 17 +--
 .../src/test/flex/AllTests.as   |  4 +-
 .../flex-pmd-violations-viewer/pom.xml  | 29 +---
 FlexPMD/flex-pmd-flex/pom.xml   |  3 ++
 .../test/java/com/adobe/ac/cpd/FlexCpdTest.java |  3 ++
 .../adobe/ac/pmd/metrics/ClassMetricsTest.java  |  4 +-
 .../metrics/InternalFunctionMetricsTest.java|  2 +
 .../adobe/ac/pmd/metrics/MetricUtilsTest.java   |  2 +
 .../ac/pmd/metrics/engine/FlexMetricsTest.java  | 50 ++--
 14 files changed, 48 insertions(+), 78 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/8170bf35/FlexPMD/flex-pmd-flex/flex-pmd-flex-lib/pom.xml
--
diff --git a/FlexPMD/flex-pmd-flex/flex-pmd-flex-lib/pom.xml 
b/FlexPMD/flex-pmd-flex/flex-pmd-flex-lib/pom.xml
index d89e9b2..1b92117 100644
--- a/FlexPMD/flex-pmd-flex/flex-pmd-flex-lib/pom.xml
+++ b/FlexPMD/flex-pmd-flex/flex-pmd-flex-lib/pom.xml
@@ -98,7 +98,7 @@ limitations under the License.
 
build
sourceDirectorysrc/main/flex/sourceDirectory
-   testSourceDirectorysrc/test/flex/testSourceDirectory
+   !--testSourceDirectorysrc/test/flex/testSourceDirectory--
resources
resource
directorysrc/main/resources/directory
@@ -150,7 +150,7 @@ limitations under the License.
version${flex-mojos-plugin.version}/version
extensionstrue/extensions
configuration
-   
targetPlayer${flash-player.version}.0.0/targetPlayer
+   
targetPlayer${flash-player.version}/targetPlayer
/configuration
 dependencies
 !-- This handles a bug in maven which causes problems 
with flex resources --

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/8170bf35/FlexPMD/flex-pmd-flex/flex-pmd-flex-lib/src/main/flex/Version.as
--
diff --git a/FlexPMD/flex-pmd-flex/flex-pmd-flex-lib/src/main/flex/Version.as 
b/FlexPMD/flex-pmd-flex/flex-pmd-flex-lib/src/main/flex/Version.as
index 7b19419..2d4f516 100644
--- a/FlexPMD/flex-pmd-flex/flex-pmd-flex-lib/src/main/flex/Version.as
+++ b/FlexPMD/flex-pmd-flex/flex-pmd-flex-lib/src/main/flex/Version.as
@@ -1 +1 @@
-package{ public class Version { public static const BUILD_NUMBER : String = 
'1.3-SNAPSHOT'; public static const BUILD_TIME : String = '00:38:25'; public 
static const BUILD_DATE : String = '2014-08-27'; }}
\ No newline at end of file
+package{ public class Version { public static const BUILD_NUMBER : String = 
'1.3-SNAPSHOT'; public static const BUILD_TIME : String = '23:03:35'; public 
static const BUILD_DATE : String = '2014-09-01'; }}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/8170bf35/FlexPMD/flex-pmd-flex/flex-pmd-flex-lib/src/test/flex/AllTests.as
--
diff --git a/FlexPMD/flex-pmd-flex/flex-pmd-flex-lib/src/test/flex/AllTests.as 
b/FlexPMD/flex-pmd-flex/flex-pmd-flex-lib/src/test/flex/AllTests.as
index 65391b7..1749be1 100644
--- a/FlexPMD/flex-pmd-flex/flex-pmd-flex-lib/src/test/flex/AllTests.as
+++ b/FlexPMD/flex-pmd-flex/flex-pmd-flex-lib/src/test/flex/AllTests.as
@@ -16,7 +16,7 @@
 //  limitations under the License.
 //
 

-package flex - pmd - flex - lib.src.test.flex
+package
 {
import com.adobe.ac.pmd.model.RuleTest;
import com.adobe.ac.pmd.model.RulesetTest;


[43/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - FLEX-34530: Forced the vertical scroll to be active. Removed 2 bindings that were causing warnings and were not needed.

2014-09-21 Thread jmclean
FLEX-34530: Forced the vertical scroll to be active.  Removed 2 bindings that 
were causing warnings and were not needed.


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

Branch: refs/heads/master
Commit: df9ae1bd0a7f05f79ba5c59722ae6034216c535f
Parents: 45488c1
Author: Mark Kessler kesslerconsult...@gmail.com
Authored: Sun Sep 7 16:15:21 2014 -0400
Committer: Mark Kessler kesslerconsult...@gmail.com
Committed: Sun Sep 7 16:15:21 2014 -0400

--
 .../TourDeFlex3/src/spark/controls/ScrollBarExample.mxml  | 7 ++-
 1 file changed, 2 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/df9ae1bd/TourDeFlex/TourDeFlex3/src/spark/controls/ScrollBarExample.mxml
--
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/ScrollBarExample.mxml 
b/TourDeFlex/TourDeFlex3/src/spark/controls/ScrollBarExample.mxml
index 8de456e..bed0582 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/ScrollBarExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/ScrollBarExample.mxml
@@ -36,7 +36,7 @@
 
clipAndEnableScrolling=true
 
itemRenderer=spark.skins.spark.DefaultItemRenderer
s:layout 
-   s:VerticalLayout 
requestedRowCount=4/ 
+   s:VerticalLayout 
requestedRowCount=3/ 
/s:layout 
s:dataProvider 
s:ArrayCollection 
@@ -72,10 +72,7 @@
/s:DataGroup 

/s:HGroup
-   s:HScrollBar viewport={horizView} 
- left={horizView.left} 
- bottom={horizView.bottom} 
- width ={horizView.width}/
+   s:HScrollBar viewport={horizView} width 
={horizView.width}/
/mx:Box

s:Label paddingLeft=15 width=199 verticalAlign=justify 
color=0x323232



[40/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - minor edit

2014-09-21 Thread jmclean
minor edit


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

Branch: refs/heads/master
Commit: 5f0719e21f66bcca54127c85721442f646df8f68
Parents: e04e9a3
Author: Justin Mclean jmcl...@apache.org
Authored: Sun Sep 7 09:48:11 2014 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Sun Sep 7 09:48:11 2014 +1000

--
 TourDeFlex/TourDeFlex3/README | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/5f0719e2/TourDeFlex/TourDeFlex3/README
--
diff --git a/TourDeFlex/TourDeFlex3/README b/TourDeFlex/TourDeFlex3/README
index 4e13d8a..f09ffd9 100644
--- a/TourDeFlex/TourDeFlex3/README
+++ b/TourDeFlex/TourDeFlex3/README
@@ -10,7 +10,7 @@
 Initial Setup Required
 
==

   
-The environment variable FLEX_HOME need to be set to the absolute path of 
the Apache
+The environment variable FLEX_HOME needs to be set to the absolute path of 
the Apache
 Flex SDK. If you prefer you can set this in env.properties.
   
 
==
@@ -71,3 +71,9 @@ How to check the code out of Git
 
 2.  Change directory to:
cd TourDeFlex/TourDeFlex3
+
+
+Thanks for using Apache Flex.  Enjoy!
+
+   The Apache Flex Project
+   http://flex.apache.org



[46/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - Merge branch 'develop' of https://git-wip-us.apache.org/repos/asf/flex-utilities into develop

2014-09-21 Thread jmclean
Merge branch 'develop' of 
https://git-wip-us.apache.org/repos/asf/flex-utilities into develop


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

Branch: refs/heads/master
Commit: e9c744de93006618a9445f62c69cf40d4bed92c7
Parents: 1053775 df9ae1b
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Sep 13 03:23:21 2014 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Sep 13 03:23:21 2014 +1000

--
 TourDeFlex/TourDeFlex3/src/explorer.xml   | 4 ++--
 .../TourDeFlex3/src/spark/controls/ScrollBarExample.mxml  | 7 ++-
 .../src/spark/other/BidirectionalBinding1Example.mxml | 7 ++-
 3 files changed, 6 insertions(+), 12 deletions(-)
--




[21/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - Added BSD / MIT like licensed dictionaries from SCOWL (http://wordlist.aspell.net + https://github.com/kevina/wordlist)

2014-09-21 Thread jmclean
Added BSD / MIT like licensed dictionaries from SCOWL 
(http://wordlist.aspell.net + https://github.com/kevina/wordlist)


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

Branch: refs/heads/master
Commit: 54451db476bf792a506d7e288f176123c5285efd
Parents: 94ea50d
Author: Justin Mclean jmcl...@apache.org
Authored: Thu Sep 4 18:01:13 2014 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Thu Sep 4 18:01:13 2014 +1000

--
 Squiggly/dictionaries/en_GB/README|   309 +
 Squiggly/dictionaries/en_GB/en_GB.aff |   201 +
 Squiggly/dictionaries/en_GB/en_GB.dic | 48651 +++
 Squiggly/dictionaries/en_US/README|   309 +
 Squiggly/dictionaries/en_US/en_US.aff |   201 +
 Squiggly/dictionaries/en_US/en_US.dic | 48437 ++
 6 files changed, 98108 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/54451db4/Squiggly/dictionaries/en_GB/README
--
diff --git a/Squiggly/dictionaries/en_GB/README 
b/Squiggly/dictionaries/en_GB/README
new file mode 100644
index 000..a3a6270
--- /dev/null
+++ b/Squiggly/dictionaries/en_GB/README
@@ -0,0 +1,309 @@
+en_GB-ise Hunspell Dictionary
+Version 2014.08.11
+Mon Aug 11 18:23:56 2014 +0200 [be45e88]
+http://wordlist.sourceforge.net
+
+README file for English Hunspell dictionaries derived from SCOWL.
+
+These dictionaries are created using the speller/make-hunspell-dict
+script in SCOWL.
+
+The following dictionaries are available:
+
+  en_US (American)
+  en_CA (Canadian)
+  en_GB-ise (British with ize spelling)
+  en_GB-ize (British with ize spelling)
+
+  en_US-large
+  en_CA-large
+  en_GB-large (with both ize and ise spelling)
+
+The normal (non-large) dictionaries correspond to SCOWL size 60 and,
+to encourage consistent spelling, generally only include one spelling
+variant for a word.  The large dictionaries correspond to SCOWL size
+70 and may include multiple spelling for a word when both variants are
+considered almost equal.  Also, the general quality of the larger
+dictionaries may also be less as they are not as carefully checked for
+errors as the normal dictionaries.
+
+To get an idea of the difference in size, here are 25 random words
+only found in the large dictionary for American English:
+
+  Bermejo Freyr's Guenevere Hatshepsut Nottinghamshire arrestment
+  crassitudes crural dogwatches errorless fetial flaxseeds godroon
+  incretion jalapeño's kelpie kishkes neuroglias pietisms pullulation
+  stemwinder stenoses syce thalassic zees
+
+The en_US and en_CA are the official dictionaries for Hunspell.  The
+en_GB and large dictionaries are made available on an experimental
+basis.  If you find them useful please send me a quick email at
+kev...@gnu.org.
+
+If none of these dictionaries suite you (for example, maybe you want
+the larger dictionary but only use spelling of a word) additional
+dictionaries can be generated at http://app.aspell.net/create or by
+modifying speller/make-hunspell-dict in SCOWL.  Please do let me know
+if you end up publishing a customized dictionary.
+
+If a word is not found in the dictionary or a word is there you think
+shouldn't be, you can lookup the word up at http://app.aspell.net/lookup
+to help determine why that is.
+
+General comments on these list can be sent directly to me at
+kev...@gnu.org or to the wordlist-devel mailing lists
+(https://lists.sourceforge.net/lists/listinfo/wordlist-devel).  If you
+have specific issues with any of these dictionaries please file a bug
+report at https://github.com/kevina/wordlist/issues.
+
+ADDITIONAL NOTES:
+
+The NOSUGGEST flag was added to certain taboo words.  While I made an
+honest attempt to flag the strongest taboo words with the NOSUGGEST
+flag, I MAKE NO GUARANTEE THAT I FLAGGED EVERY POSSIBLE TABOO WORD.
+The list was originally derived from Németh László, however I removed
+some words which, while being considered taboo by some dictionaries,
+are not really considered swear words in today's society.
+
+COPYRIGHT, SOURCES, and CREDITS:
+
+The English dictionaries come directly from SCOWL 
+and is thus under the same copyright of SCOWL.  The affix file is
+a heavily modified version of the original english.aff file which was
+released as part of Geoff Kuenning's Ispell and as such is covered by
+his BSD license.  Part of SCOWL is also based on Ispell thus the
+Ispell copyright is included with the SCOWL copyright.
+
+The collective work is Copyright 2000-2014 by Kevin Atkinson as well
+as any of the copyrights mentioned below:
+
+  Copyright 2000-2014 

[44/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - add Piotr's full name

2014-09-21 Thread jmclean
add Piotr's full name


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

Branch: refs/heads/master
Commit: 6b819f7a1b1c56ffb02443e7648c35c9547c7ccb
Parents: 5f0719e
Author: Justin Mclean jmcl...@apache.org
Authored: Sat Sep 13 03:19:19 2014 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Sat Sep 13 03:19:19 2014 +1000

--
 TourDeFlex/CONTRIBUTORS | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/6b819f7a/TourDeFlex/CONTRIBUTORS
--
diff --git a/TourDeFlex/CONTRIBUTORS b/TourDeFlex/CONTRIBUTORS
index 924837b..ac81443 100644
--- a/TourDeFlex/CONTRIBUTORS
+++ b/TourDeFlex/CONTRIBUTORS
@@ -4,13 +4,13 @@ support to the Apache Flex Tour De Flex.
 Apache Flex Tour De Flex 1.1
 
 Andrew Wetmore, Alex Harui, Christofer Dutz, Justin Mclean, Lee Burrows,
-Nemi, OmPrakash Muppirala, Piotr
+Nemi, OmPrakash Muppirala, Piotr Zarzycki
 
 
 Apache Flex Tour De Flex 1.0
 
 Alex Harui, Chris Martin, Justin Mclean, Mark Kessler, Nicholas Kwiatkowski,
-OmPrakash Muppirala, Piotr, Tom Chiverton
+OmPrakash Muppirala, Piotr Zarzycki, Tom Chiverton
 
 If you've missing from this list please get in touch and you'll appear in 
future
 versions of this document.
\ No newline at end of file



[28/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - update versions and include contrib files

2014-09-21 Thread jmclean
update versions and include contrib files


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

Branch: refs/heads/master
Commit: 9e25022eea26435664b0af0fbbcb21a7fa976cf4
Parents: ca42d46
Author: Justin Mclean jmcl...@apache.org
Authored: Fri Sep 5 10:29:53 2014 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Fri Sep 5 10:29:53 2014 +1000

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


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9e25022e/TourDeFlex/TourDeFlex3/build.xml
--
diff --git a/TourDeFlex/TourDeFlex3/build.xml b/TourDeFlex/TourDeFlex3/build.xml
index 125ad7e..fee2590 100644
--- a/TourDeFlex/TourDeFlex3/build.xml
+++ b/TourDeFlex/TourDeFlex3/build.xml
@@ -26,7 +26,7 @@
 condition property=FLEX_HOME value=${env.FLEX_HOME}
 isset property=env.FLEX_HOME /
 /condition
-property name=version value=1.0 /
+property name=version value=1.1 /

 !-- additional tasks - mxmlc tag --
 path id=flexTasks.path
@@ -438,8 +438,7 @@
 tarfileset dir=${basedir}/..
 include name=LICENSE /
include name=NOTICE /
-   include name=CONTIBITORS /
-include name=CONTRIBITING /
+   include name=CONTRIB* /
 /tarfileset
 tarfileset dir=${basedir}
 include name=README /
@@ -459,7 +458,8 @@
 include name=**/*.mp3 /
 include name=**/*.fxg /
 include name=**/*.xml /
-exclude name=**/*.swf /
+   exclude name=**/*.swf /
+   exclude name=installer.xml /
  /tarfileset
  /tar
/target
@@ -469,8 +469,7 @@
 fileset dir=${basedir}/..
 include name=LICENSE /
 include name=NOTICE /
-   include name=CONTIBITORS /
-include name=CONTRIBITING /
+   include name=CONTRIB* /
 /fileset
 fileset dir=${basedir}
 include name=README /
@@ -491,6 +490,7 @@
 include name=**/*.fxg /
 include name=**/*.xml /
 exclude name=**/*.swf /
+   exclude name=installer.xml /
  /fileset
  /zip
/target



[27/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - minor changes to release notes

2014-09-21 Thread jmclean
minor changes to release notes


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

Branch: refs/heads/master
Commit: ca42d46a501a3655d4e6c88ea7e30074f6de4d19
Parents: 50cb79c
Author: Justin Mclean jmcl...@apache.org
Authored: Fri Sep 5 10:29:30 2014 +1000
Committer: Justin Mclean jmcl...@apache.org
Committed: Fri Sep 5 10:29:30 2014 +1000

--
 TourDeFlex/TourDeFlex3/RELEASE_NOTES | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/ca42d46a/TourDeFlex/TourDeFlex3/RELEASE_NOTES
--
diff --git a/TourDeFlex/TourDeFlex3/RELEASE_NOTES 
b/TourDeFlex/TourDeFlex3/RELEASE_NOTES
index ca02c43..c974efd 100644
--- a/TourDeFlex/TourDeFlex3/RELEASE_NOTES
+++ b/TourDeFlex/TourDeFlex3/RELEASE_NOTES
@@ -9,9 +9,9 @@ Changes since the version 1.0
 - Update READE and RELEASE_NOTES
 - Added some Apache Flex specific examples (we would like to see more)
 - Added button to copy code in source tab
-- Added button to link to github example
+- Added button to link to github code
 - Added button to copy link to example
-- Improved build file ant task descriptions
+- Improved build file ant tasks descriptions
 - Removed broken view source URLs
 - Fixed a few other minor issues
 - Now contains over 300 examples!



<    4   5   6   7   8   9   10   11   12   13   >