Merge branch 'develop' into improvement_Binarydata
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/c7bb721c Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/c7bb721c Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/c7bb721c Branch: refs/heads/develop Commit: c7bb721cd76985529b4dc0bb033ef5f2e96c5210 Parents: ae06cfd c383fa7 Author: greg-dove <[email protected]> Authored: Tue Jul 26 18:20:01 2016 +1200 Committer: greg-dove <[email protected]> Committed: Tue Jul 26 18:20:01 2016 +1200 ---------------------------------------------------------------------- .gitignore | 1 + distribution/pom.xml | 213 ++- .../src/main/assembly/component-air.xml | 103 ++ .../src/main/assembly/component-fontkit.xml | 30 + distribution/src/main/assembly/component.xml | 9 +- distribution/src/main/assembly/dir.xml | 1 + .../src/main/assembly/filter.properties | 21 + distribution/src/main/resources/air/adt | 24 + distribution/src/main/resources/air/adt.bat | 22 + .../frameworks/air-config-template.xml | 6 +- .../main/resources/frameworks/air-config.xml | 6 +- .../frameworks/flex-config-template.xml | 6 +- .../main/resources/frameworks/flex-config.xml | 6 +- frameworks/build.xml | 4 +- frameworks/flex-config-template.xml | 12 + frameworks/flex-config.xml | 12 + .../flex/binding/ApplicationDataBinding.as | 20 +- .../apache/flex/binding/ContainerDataBinding.as | 20 +- .../flex/binding/MXMLBeadViewDataBinding.as | 20 +- .../org/apache/flex/binding/ViewDataBinding.as | 16 +- .../apache/flex/charts/beads/AxisBaseBead.as | 15 +- .../flex/charts/beads/layouts/PieChartLayout.as | 4 +- .../org/apache/flex/charts/core/IAxisBead.as | 2 +- .../org/apache/flex/charts/core/IAxisGroup.as | 4 +- .../flex/charts/optimized/SVGBoxItemRenderer.as | 12 +- .../flex/charts/optimized/SVGChartAxisGroup.as | 10 +- .../flex/charts/optimized/SVGChartDataGroup.as | 4 +- .../optimized/SVGLineSegmentItemRenderer.as | 12 +- .../charts/optimized/SVGWedgeItemRenderer.as | 12 +- .../charts/supportClasses/BoxItemRenderer.as | 10 +- .../charts/supportClasses/ChartAxisGroup.as | 6 +- .../supportClasses/ILineSegmentItemRenderer.as | 2 +- .../charts/supportClasses/IWedgeItemRenderer.as | 4 +- .../supportClasses/LineSegmentItemRenderer.as | 4 +- .../charts/supportClasses/WedgeItemRenderer.as | 10 +- .../projects/Core/src/main/flex/CoreClasses.as | 1 + .../main/flex/org/apache/flex/utils/CSSUtils.as | 145 +- .../flex/org/apache/flex/utils/StringPadder.as | 69 + .../src/main/config/compile-as-config.xml | 1 + .../flex/org/apache/flex/createjs/CheckBox.as | 4 +- .../main/flex/org/apache/flex/createjs/Label.as | 4 +- .../flex/org/apache/flex/createjs/TextButton.as | 4 +- .../apache/flex/createjs/core/CreateJSBase.as | 6 +- .../org/apache/flex/createjs/core/UIBase.as | 12 +- .../org/apache/flex/createjs/graphics/Circle.as | 10 +- .../flex/createjs/graphics/GraphicShape.as | 8 +- .../org/apache/flex/createjs/graphics/Rect.as | 10 +- .../org/apache/flex/createjs/tween/Sequence.as | 52 + .../org/apache/flex/createjs/tween/Tween.as | 45 +- .../CreateJS/src/main/resources/defaults.css | 6 + frameworks/projects/Graphics/pom.xml | 4 + .../Graphics/src/main/flex/GraphicsClasses.as | 32 +- .../org/apache/flex/core/graphics/Circle.as | 102 -- .../org/apache/flex/core/graphics/Ellipse.as | 94 - .../apache/flex/core/graphics/GradientBase.as | 229 --- .../apache/flex/core/graphics/GradientEntry.as | 133 -- .../apache/flex/core/graphics/GraphicShape.as | 213 --- .../flex/core/graphics/GraphicsContainer.as | 302 --- .../flex/org/apache/flex/core/graphics/IFill.as | 32 - .../org/apache/flex/core/graphics/IStroke.as | 29 - .../apache/flex/core/graphics/LinearGradient.as | 123 -- .../flex/org/apache/flex/core/graphics/Path.as | 100 - .../flex/org/apache/flex/core/graphics/Rect.as | 90 - .../org/apache/flex/core/graphics/SolidColor.as | 136 -- .../flex/core/graphics/SolidColorStroke.as | 130 -- .../flex/org/apache/flex/core/graphics/Text.as | 147 -- .../graphics/utils/AdvancedLayoutFeatures.as | 1140 ------------ .../core/graphics/utils/CompoundTransform.as | 777 -------- .../core/graphics/utils/IAssetLayoutFeatures.as | 371 ---- .../flex/core/graphics/utils/MatrixUtil.as | 1605 ---------------- .../flex/core/graphics/utils/PathHelper.as | 1712 ------------------ .../core/graphics/utils/TransformOffsets.as | 367 ---- .../flex/org/apache/flex/graphics/CubicCurve.as | 56 + .../org/apache/flex/graphics/GradientBase.as | 229 +++ .../org/apache/flex/graphics/GradientEntry.as | 133 ++ .../apache/flex/graphics/ICompoundGraphic.as | 30 + .../main/flex/org/apache/flex/graphics/IFill.as | 32 + .../org/apache/flex/graphics/IGraphicShape.as | 30 + .../org/apache/flex/graphics/IPathCommand.as | 16 + .../flex/org/apache/flex/graphics/IStroke.as | 38 + .../flex/org/apache/flex/graphics/LineStyle.as | 59 + .../flex/org/apache/flex/graphics/LineTo.as | 47 + .../flex/org/apache/flex/graphics/MoveTo.as | 47 + .../org/apache/flex/graphics/PathBuilder.as | 292 +++ .../org/apache/flex/graphics/QuadraticCurve.as | 51 + .../flex/org/apache/flex/graphics/SolidColor.as | 134 ++ .../apache/flex/graphics/SolidColorStroke.as | 251 +++ .../graphics/utils/AdvancedLayoutFeatures.as | 1140 ++++++++++++ .../flex/graphics/utils/CompoundTransform.as | 777 ++++++++ .../flex/graphics/utils/IAssetLayoutFeatures.as | 371 ++++ .../apache/flex/graphics/utils/MatrixUtil.as | 1605 ++++++++++++++++ .../apache/flex/graphics/utils/PathHelper.as | 1712 ++++++++++++++++++ .../flex/graphics/utils/TransformOffsets.as | 367 ++++ .../src/main/flex/org/apache/flex/svg/Circle.as | 102 ++ .../flex/org/apache/flex/svg/CompoundGraphic.as | 528 ++++++ .../main/flex/org/apache/flex/svg/DOMWrapper.as | 56 + .../main/flex/org/apache/flex/svg/Ellipse.as | 94 + .../org/apache/flex/svg/GraphicContainer.as | 79 + .../flex/org/apache/flex/svg/GraphicShape.as | 225 +++ .../flex/org/apache/flex/svg/LinearGradient.as | 126 ++ .../src/main/flex/org/apache/flex/svg/Path.as | 100 + .../src/main/flex/org/apache/flex/svg/Rect.as | 90 + .../src/main/flex/org/apache/flex/svg/Text.as | 149 ++ .../src/main/resources/basic-manifest.xml | 14 +- .../src/main/resources/svg-manifest.xml | 30 + .../src/main/flex/org/apache/flex/html/Label.as | 27 + .../apache/flex/html/beads/DataGridLinesBead.as | 14 +- .../flex/html/beads/DecrementButtonView.as | 8 +- .../flex/html/beads/IncrementButtonView.as | 8 +- .../apache/flex/html/beads/RangeStepperView.as | 4 +- .../html/supportClasses/GraphicsItemRenderer.as | 4 +- .../flex/mobile/beads/ToggleSwitchView.as | 6 +- manualtests/.gitignore | 1 + .../FlexJSTest_SVG/src/GraphicsView.mxml | 24 +- manualtests/FlexJSTest_SVG/src/SkinsView.mxml | 15 +- 115 files changed, 9922 insertions(+), 8107 deletions(-) ----------------------------------------------------------------------
