You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ha...@apache.org on 2016/10/26 13:54:25 UTC

[23/23] git commit: [flex-asjs] [refs/heads/refactor-sprite] - Merge branch 'develop' into refactor-sprite

Merge branch 'develop' into refactor-sprite

* develop: (21 commits)
  allow CI build to use download cache in case true source is unavailable
  change name so the instance and static properties have different names.  This was messing up reflection info
  - Removed the TODOs for adding cordova packaging
  - Removed stuff from the site.xml which accidentally slipped in
  - Added support for Cordova packaging (In order to have this working, you have to enable the "with-cordova" maven profile)
  use maven target folder if exists
  update run configs for changes in cordova_build.xml
  Checks to see if a platform needs to be loaded and if so, uses Cordova to load it.
  assume path to npm and cordova on mac.  FB can't always find it since it might be started without the bash environment.  Might need improving upon for when the path isn't right
  switch AIR visible flag to true if exists
  Now loads the cordoba-plugin-file if needed.
  Modified the cordova-build.xml ANT script to include the iOS platform. Once built, apps can be launched with the run.android or run.ios targets. The former runs on the device while the latter runs in a simulator.
  Cleaned up the example MobileStocks source code.
  Refactor to ButtonBase to avoid carry CSS styles
  Cleaned up MobileStocks example with chart and text alignment issues.
  Cleaned up the label positioning for the horizontal linear axis (ArrayList data). Added more CSS classNames to help styles the charts better.
  Changed token value test for vertical-align css.
  First implementation of js:Form. Is nesting tags, but action attribute is not working
  updated release notes, and added some missing things from 0.7
  add default property for TextButton
  ...


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

Branch: refs/heads/refactor-sprite
Commit: 37ab65649c528f7e02093c17d0546715b89f299e
Parents: 2e3fc30 4b79670
Author: Harbs <ha...@in-tools.com>
Authored: Wed Oct 26 16:53:55 2016 +0300
Committer: Harbs <ha...@in-tools.com>
Committed: Wed Oct 26 16:53:55 2016 +0300

----------------------------------------------------------------------
 RELEASE_NOTES                                   |  13 +-
 cordova-build.xml                               | 128 ++++++++++++-----
 examples/examples-tests/pom.xml                 |  46 ++++++
 .../flexjs/examples/tests/ExampleBuildTest.java | 104 ++++++++++++++
 examples/flexjs/CordovaCameraExample/pom.xml    |  21 +--
 .../CordovaCameraExample/resources/config.xml   |  44 ++++++
 examples/flexjs/MobileMap/pom.xml               |   6 +-
 examples/flexjs/MobileMap/resources/config.xml  |  44 ++++++
 examples/flexjs/MobileStocks/pom.xml            |   4 +
 .../flexjs/MobileStocks/resources/config.xml    |  44 ++++++
 .../flexjs/MobileStocks/src/MobileStocks.mxml   |  13 +-
 .../flexjs/MobileStocks/src/MyInitialView.mxml  |  41 ++----
 .../src/controller/AlertsViewController.as      | 141 -------------------
 .../flexjs/MobileStocks/src/models/Alert.as     |  94 -------------
 .../flexjs/MobileStocks/src/models/Asset.as     |  77 ----------
 .../MobileStocks/src/models/AssetsModel.as      |  57 --------
 .../MobileStocks/src/models/ProductsModel.as    |  26 ----
 .../MobileStocks/src/views/AlertsView.mxml      | 102 --------------
 .../MobileStocks/src/views/AssetsView.mxml      | 125 ----------------
 .../MobileStocks/src/views/LaunchView.mxml      |  55 +++++---
 .../MobileStocks/src/views/SearchView.mxml      |  37 -----
 examples/flexjs/MobileTrader/pom.xml            |   4 +
 .../flexjs/MobileTrader/resources/config.xml    |  44 ++++++
 examples/flexjs/StorageExample/pom.xml          |  10 +-
 .../flexjs/StorageExample/resources/config.xml  |  44 ++++++
 examples/flexjs/pom.xml                         |  41 +++++-
 examples/pom.xml                                |  42 ++++++
 frameworks/downloads.xml                        |  76 +++++++++-
 .../org/apache/flex/charts/beads/ChartView.as   |   2 +
 .../HorizontalLinearAxisForArrayListBead.as     |  14 +-
 .../charts/supportClasses/ChartAxisGroup.as     |   2 +
 .../main/flex/org/apache/flex/html/Button.as    |  29 +---
 .../flex/org/apache/flex/html/ButtonBase.as     | 101 +++++++++++++
 .../src/main/flex/org/apache/flex/html/Form.as  |  99 +++++++++++++
 .../flex/org/apache/flex/html/SimpleAlert.as    |   4 +-
 .../flex/org/apache/flex/html/TextButton.as     |   4 +-
 .../layouts/OneFlexibleChildHorizontalLayout.as |   2 +-
 .../HTML/src/main/resources/basic-manifest.xml  |   1 +
 .../HTML/src/main/resources/defaults.css        |   4 +
 .../FlexJS (Cordova Run Android).launch         |  39 +++++
 .../FlexJS (Cordova Run IOS).launch             |  39 +++++
 ide/flashbuilder/FlexJS (Cordova Run).launch    |  39 -----
 ide/flashbuilder/antscripts.xml                 |  14 ++
 src/site/site.xml                               |  42 ++++++
 44 files changed, 1063 insertions(+), 855 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/37ab6564/frameworks/projects/Charts/src/main/flex/org/apache/flex/charts/supportClasses/ChartAxisGroup.as
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/37ab6564/frameworks/projects/HTML/src/main/resources/basic-manifest.xml
----------------------------------------------------------------------

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/37ab6564/frameworks/projects/HTML/src/main/resources/defaults.css
----------------------------------------------------------------------