This is an automated email from the ASF dual-hosted git repository.
cdutz pushed a change to branch feature/distribution-allignment
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git.
from 26c96b5 - Re-imported the current versions of Ant distribution
descriptors and adjusted them for a maven directory structure.
new 3716110 added in Accordion
new b922c81 in mx DataGridColumn itemtoDataTip added
new a8f6264 autoload property added in mx Image
new b358cc7 autoLayout property added to mx container
new 9ac5449 jewel-daterangerestriction: Fix logic when both min and max
dates are set
new 2d43f40 tour-de-jewel: reduce code on h list
new de7c335 jewel-tilelayouts: perform layout when changed at runtime
new 9371acb jewel-tilelayouts: perform layout when changed at runtime 2
new f6f1fe4 Formatting tidyup and avoid duplicate var declaration warning
new e6bca55 reduce build noise, avoid warnings for (presumably)
intentional 'this within closure' usage (matches maven build)
new 5e6a287 fix typo
new a0591e7 AppWithLib: start of an example that uses a library. This is
just the app part, created with the maven archetype on the fly
new 31a7933 maven-archetype: new "royale-jewel-library-archetype" to
generate libraries quickly
new f7b3d36 add "royale-jewel-library-archetype" to modules
new 57a5710 royale-jewel-library-archetype: few namespace fixes
new b26894c SampleLib: The lib part to use with AppWithLib example app,
generated with the maven archetype "royale-jewel-library-archetype"
new db3e22e AppWithLib: add SampleLib dependency to AppWithLib example app
new 957e6a6 moving new example from examples/jewel to crux, since it will
have some crux code
new 7dd4295 - Hopefully fixed the ACE build
The 19 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
archetypes/pom.xml | 1 +
archetypes/royale-jewel-library-archetype/pom.xml | 45 +++
.../META-INF/archetype-post-generate.groovy | 0
.../META-INF/maven/archetype-metadata.xml | 87 ++++++
.../archetype-resources/.vscode/tasks.json | 0
.../__artifactId__.mxml.as3proj | 0
.../resources/archetype-resources/asconfig.json | 58 ++++
.../src/main/resources/archetype-resources/pom.xml | 312 +++++++++++++++++++++
.../__artifactIdLowerCase__-as-manifest.xml | 26 ++
.../resources/__artifactIdLowerCase__-manifest.xml | 26 ++
.../src/main/royale/SampleClass.as | 31 ++
.../src/main/royale/__artifactId__Classes.as | 46 +++
.../archetype-resources/src/main/sass/_global.sass | 25 ++
.../src/main/sass/default.sass | 0
distribution/pom.xml | 4 +-
examples/crux/AppWithLib/AppWithLib.mxml.as3proj | 117 ++++++++
examples/crux/AppWithLib/asconfig.json | 44 +++
examples/crux/AppWithLib/pom.xml | 202 +++++++++++++
.../crux/AppWithLib/src/main/resources/default.css | 21 ++
.../resources/jewel-example-index-template.html | 0
.../AppWithLib/src/main/royale/AppWithLib.mxml | 51 ++++
.../org/apache/royale/examples}/config/Beans.mxml | 0
.../org/apache/royale/examples/events/SomeEvent.as | 44 +++
.../org/apache/royale/examples/views/MainView.mxml | 40 +++
.../crux/AppWithLib/src/main/sass/_global.sass | 26 ++
.../AppWithLib}/src/main/sass/default.sass | 0
examples/crux/SampleLib/SampleLib.mxml.as3proj | 117 ++++++++
examples/crux/SampleLib/asconfig.json | 58 ++++
examples/crux/SampleLib/pom.xml | 307 ++++++++++++++++++++
.../crux/SampleLib/src/main/resources/default.css | 20 ++
.../src/main/resources/samplelib-as-manifest.xml | 26 ++
.../src/main/resources/samplelib-manifest.xml | 27 ++
.../SampleLib/src/main/royale/SampleLibClasses.as | 46 +++
.../org/apache/royale/examples/SampleClass.as | 31 ++
examples/crux/SampleLib/src/main/sass/_global.sass | 25 ++
.../SampleLib}/src/main/sass/default.sass | 0
.../src/main/royale/ListPlayGround.mxml | 4 +-
.../src/main/config/compile-js-config.xml | 3 +
frameworks/projects/Ace/pom.xml | 3 +-
.../org/apache/royale/core/BrowserOrientation.as | 2 +-
.../datechooser/DateChooserDateRangeRestriction.as | 6 +-
.../jewel/beads/layouts/TileHorizontalLayout.as | 1 +
.../jewel/beads/layouts/TileVerticalLayout.as | 3 +-
.../src/main/config/compile-swf-config.xml | 3 +
.../src/main/royale/mx/containers/Accordion.as | 69 +++++
.../MXRoyale/src/main/royale/mx/controls/Image.as | 19 ++
.../mx/controls/dataGridClasses/DataGridColumn.as | 52 ++++
.../VirtualDataItemRendererFactoryForIListData.as | 11 +-
.../MXRoyale/src/main/royale/mx/core/Container.as | 63 +++++
frameworks/projects/pom.xml | 2 +-
50 files changed, 2087 insertions(+), 17 deletions(-)
create mode 100644 archetypes/royale-jewel-library-archetype/pom.xml
copy archetypes/{royale-jewel-application-archetype =>
royale-jewel-library-archetype}/src/main/resources/META-INF/archetype-post-generate.groovy
(100%)
create mode 100644
archetypes/royale-jewel-library-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
copy archetypes/{royale-jewel-application-archetype =>
royale-jewel-library-archetype}/src/main/resources/archetype-resources/.vscode/tasks.json
(100%)
copy archetypes/{royale-jewel-application-archetype =>
royale-jewel-library-archetype}/src/main/resources/archetype-resources/__artifactId__.mxml.as3proj
(100%)
create mode 100644
archetypes/royale-jewel-library-archetype/src/main/resources/archetype-resources/asconfig.json
create mode 100644
archetypes/royale-jewel-library-archetype/src/main/resources/archetype-resources/pom.xml
create mode 100644
archetypes/royale-jewel-library-archetype/src/main/resources/archetype-resources/src/main/resources/__artifactIdLowerCase__-as-manifest.xml
create mode 100644
archetypes/royale-jewel-library-archetype/src/main/resources/archetype-resources/src/main/resources/__artifactIdLowerCase__-manifest.xml
create mode 100644
archetypes/royale-jewel-library-archetype/src/main/resources/archetype-resources/src/main/royale/SampleClass.as
create mode 100644
archetypes/royale-jewel-library-archetype/src/main/resources/archetype-resources/src/main/royale/__artifactId__Classes.as
create mode 100644
archetypes/royale-jewel-library-archetype/src/main/resources/archetype-resources/src/main/sass/_global.sass
copy {examples/jewel/todomvc =>
archetypes/royale-jewel-library-archetype/src/main/resources/archetype-resources}/src/main/sass/default.sass
(100%)
create mode 100644 examples/crux/AppWithLib/AppWithLib.mxml.as3proj
create mode 100644 examples/crux/AppWithLib/asconfig.json
create mode 100644 examples/crux/AppWithLib/pom.xml
create mode 100644 examples/crux/AppWithLib/src/main/resources/default.css
copy examples/{blog/BE0016_Live_Editing_DataGrid =>
crux/AppWithLib}/src/main/resources/jewel-example-index-template.html (100%)
create mode 100644 examples/crux/AppWithLib/src/main/royale/AppWithLib.mxml
copy
{archetypes/royale-jewel-module-application-archetype/src/main/resources/archetype-resources/__application__/src/main/royale
=>
examples/crux/AppWithLib/src/main/royale/org/apache/royale/examples}/config/Beans.mxml
(100%)
create mode 100644
examples/crux/AppWithLib/src/main/royale/org/apache/royale/examples/events/SomeEvent.as
create mode 100644
examples/crux/AppWithLib/src/main/royale/org/apache/royale/examples/views/MainView.mxml
create mode 100644 examples/crux/AppWithLib/src/main/sass/_global.sass
copy examples/{jewel/todomvc => crux/AppWithLib}/src/main/sass/default.sass
(100%)
create mode 100644 examples/crux/SampleLib/SampleLib.mxml.as3proj
create mode 100644 examples/crux/SampleLib/asconfig.json
create mode 100644 examples/crux/SampleLib/pom.xml
create mode 100644 examples/crux/SampleLib/src/main/resources/default.css
create mode 100644
examples/crux/SampleLib/src/main/resources/samplelib-as-manifest.xml
create mode 100644
examples/crux/SampleLib/src/main/resources/samplelib-manifest.xml
create mode 100644 examples/crux/SampleLib/src/main/royale/SampleLibClasses.as
create mode 100644
examples/crux/SampleLib/src/main/royale/org/apache/royale/examples/SampleClass.as
create mode 100644 examples/crux/SampleLib/src/main/sass/_global.sass
copy examples/{jewel/todomvc => crux/SampleLib}/src/main/sass/default.sass
(100%)