[royale-asjs] branch develop updated: Fixed svg x/y setters

2017-11-18 Thread harbs
This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
 new f158d8f  Fixed svg x/y setters
f158d8f is described below

commit f158d8f2cff5d944d49ac55acb90b0fde6f15215
Author: Harbs 
AuthorDate: Sat Nov 18 23:40:04 2017 +0200

Fixed svg x/y setters
---
 .../src/main/royale/org/apache/royale/svg/GraphicShape.as  | 14 ++
 1 file changed, 14 insertions(+)

diff --git 
a/frameworks/projects/Basic/src/main/royale/org/apache/royale/svg/GraphicShape.as
 
b/frameworks/projects/Basic/src/main/royale/org/apache/royale/svg/GraphicShape.as
index 96774a0..7e0dab5 100644
--- 
a/frameworks/projects/Basic/src/main/royale/org/apache/royale/svg/GraphicShape.as
+++ 
b/frameworks/projects/Basic/src/main/royale/org/apache/royale/svg/GraphicShape.as
@@ -251,5 +251,19 @@ package org.apache.royale.svg
 element.style.left = xOffset + "px";
 element.style.top = yOffset + "px";
 }
+   COMPILE::JS
+   override public function set x(value:Number):void
+   {
+   super.x = value;
+   // Needed for SVG inside SVG
+   element.setAttribute("x", value);
+   }
+   COMPILE::JS
+   override public function set y(value:Number):void
+   {
+   super.y = value;
+   // Needed for SVG inside SVG
+   element.setAttribute("y", value);
+   }
}
 }

-- 
To stop receiving notification emails like this one, please contact
['"commits@royale.apache.org" '].


[royale-asjs.wiki] branch master updated: Updated Build Apache Royale with Maven (markdown)

2017-11-18 Thread carlosrovira
This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-asjs.wiki.git


The following commit(s) were added to refs/heads/master by this push:
 new e597fe6  Updated Build Apache Royale with Maven (markdown)
e597fe6 is described below

commit e597fe679f0270b7896892fe925fd10d786a55a9
Author: Carlos Rovira 
AuthorDate: Sat Nov 18 20:46:09 2017 +0100

Updated Build Apache Royale with Maven (markdown)
---
 Build-Apache-Royale-with-Maven.md | 21 +++--
 1 file changed, 11 insertions(+), 10 deletions(-)

diff --git a/Build-Apache-Royale-with-Maven.md 
b/Build-Apache-Royale-with-Maven.md
index dc11209..f404c54 100644
--- a/Build-Apache-Royale-with-Maven.md
+++ b/Build-Apache-Royale-with-Maven.md
@@ -97,16 +97,17 @@ It also has a feature of **assembling a fully functional 
Royale distribution** i
 mvn -s settings-template.xml clean install
 ```
 
-### Build distribution (Royale SDK) with Maven
+   Now you have compiler, typedefs and framework ready. If you want to make 
some modification you can make the change and build only the part that was 
modified and you'll be ready to use it in your own project.
 
-optionally you can also build the distribution binaries:
-```
-mvn -s settings-template.xml -P build-distribution clean install
-```
+   ### Build distribution (Royale SDK) with Maven
+   Optionally you can also build the distribution binaries:
+   ```
+   mvn -s settings-template.xml -P build-distribution clean install
+   ```
 
-optionally you can also build the distribution binaries and a local 
distribution (including dependencies for Flash, AIR) in a local directory:
-```
-mvn -s settings-template.xml 
-DdistributionTargetFolder={pathToDistributionDirectory} -P build-distribution 
clean install
-```
+   Optionally you can also build the distribution binaries and a local 
distribution (including dependencies for Flash, AIR) in a local directory:
+   ```
+   mvn -s settings-template.xml 
-DdistributionTargetFolder={pathToDistributionDirectory} -P build-distribution 
clean install
+   ```
 
-The reason for specifying the "-s settings-template.xml" is that we currently 
are using unreleased artifacts for the mavenizer. If we don't explicitly tell 
maven to also look in the Apache Snapshot Repo, it will not find these. This 
option will no longer be needed as soon as we have released the Mavenizer for a 
first time.
\ No newline at end of file
+>The reason for specifying the "-s settings-template.xml" is that we currently 
are using unreleased artifacts for the mavenizer. If we don't explicitly tell 
maven to also look in the Apache Snapshot Repo, it will not find these. This 
option will no longer be needed as soon as we have released the Mavenizer for a 
first time.
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
['"commits@royale.apache.org" '].


[royale-asjs.wiki] branch master updated: Updated Build Apache Royale with Maven (markdown)

2017-11-18 Thread carlosrovira
This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-asjs.wiki.git


The following commit(s) were added to refs/heads/master by this push:
 new 786c27e  Updated Build Apache Royale with Maven (markdown)
786c27e is described below

commit 786c27e7137c88a026c10f97bf0800301d38ad12
Author: Carlos Rovira 
AuthorDate: Sat Nov 18 20:33:48 2017 +0100

Updated Build Apache Royale with Maven (markdown)
---
 Build-Apache-Royale-with-Maven.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Build-Apache-Royale-with-Maven.md 
b/Build-Apache-Royale-with-Maven.md
index 990be68..dc11209 100644
--- a/Build-Apache-Royale-with-Maven.md
+++ b/Build-Apache-Royale-with-Maven.md
@@ -97,13 +97,13 @@ It also has a feature of **assembling a fully functional 
Royale distribution** i
 mvn -s settings-template.xml clean install
 ```
 
+### Build distribution (Royale SDK) with Maven
+
 optionally you can also build the distribution binaries:
 ```
 mvn -s settings-template.xml -P build-distribution clean install
 ```
 
-## Build distribution (Royale SDK) with Maven
-
 optionally you can also build the distribution binaries and a local 
distribution (including dependencies for Flash, AIR) in a local directory:
 ```
 mvn -s settings-template.xml 
-DdistributionTargetFolder={pathToDistributionDirectory} -P build-distribution 
clean install

-- 
To stop receiving notification emails like this one, please contact
['"commits@royale.apache.org" '].


[royale-asjs.wiki] branch master updated: Updated Build Apache Royale with Maven (markdown)

2017-11-18 Thread carlosrovira
This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-asjs.wiki.git


The following commit(s) were added to refs/heads/master by this push:
 new 605f15c  Updated Build Apache Royale with Maven (markdown)
605f15c is described below

commit 605f15cf2e134ff408532c0082c4e3c8dee49c2b
Author: Carlos Rovira 
AuthorDate: Sat Nov 18 20:33:20 2017 +0100

Updated Build Apache Royale with Maven (markdown)
---
 Build-Apache-Royale-with-Maven.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Build-Apache-Royale-with-Maven.md 
b/Build-Apache-Royale-with-Maven.md
index 1c88a5a..990be68 100644
--- a/Build-Apache-Royale-with-Maven.md
+++ b/Build-Apache-Royale-with-Maven.md
@@ -102,6 +102,8 @@ It also has a feature of **assembling a fully functional 
Royale distribution** i
 mvn -s settings-template.xml -P build-distribution clean install
 ```
 
+## Build distribution (Royale SDK) with Maven
+
 optionally you can also build the distribution binaries and a local 
distribution (including dependencies for Flash, AIR) in a local directory:
 ```
 mvn -s settings-template.xml 
-DdistributionTargetFolder={pathToDistributionDirectory} -P build-distribution 
clean install

-- 
To stop receiving notification emails like this one, please contact
['"commits@royale.apache.org" '].


[royale-asjs.wiki] branch master updated: Updated Build Apache Royale with Maven (markdown)

2017-11-18 Thread carlosrovira
This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-asjs.wiki.git


The following commit(s) were added to refs/heads/master by this push:
 new 6e0858a  Updated Build Apache Royale with Maven (markdown)
6e0858a is described below

commit 6e0858aa2d94b74c9828a343f88c1bee84de895c
Author: Carlos Rovira 
AuthorDate: Sat Nov 18 20:31:10 2017 +0100

Updated Build Apache Royale with Maven (markdown)
---
 Build-Apache-Royale-with-Maven.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Build-Apache-Royale-with-Maven.md 
b/Build-Apache-Royale-with-Maven.md
index 826a8ee..1c88a5a 100644
--- a/Build-Apache-Royale-with-Maven.md
+++ b/Build-Apache-Royale-with-Maven.md
@@ -83,7 +83,7 @@ It also has a feature of **assembling a fully functional 
Royale distribution** i
 
 1. Clone:
 ```
-git clone https://git-wip-us.apache.org/repos/asf/royale-asjs.git 
royale-asjs
+git clone https://github.com/apache/royale-asjs.git royale-asjs
 ```
 
 2. Go into the new directory:

-- 
To stop receiving notification emails like this one, please contact
['"commits@royale.apache.org" '].


[royale-asjs.wiki] branch master updated: Updated Build Apache Royale with Maven (markdown)

2017-11-18 Thread carlosrovira
This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-asjs.wiki.git


The following commit(s) were added to refs/heads/master by this push:
 new 2a1e725  Updated Build Apache Royale with Maven (markdown)
2a1e725 is described below

commit 2a1e7251a3da1a333f37e3b399bc1d2665a794ea
Author: Carlos Rovira 
AuthorDate: Sat Nov 18 20:30:24 2017 +0100

Updated Build Apache Royale with Maven (markdown)
---
 Build-Apache-Royale-with-Maven.md | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/Build-Apache-Royale-with-Maven.md 
b/Build-Apache-Royale-with-Maven.md
index 1e8c255..826a8ee 100644
--- a/Build-Apache-Royale-with-Maven.md
+++ b/Build-Apache-Royale-with-Maven.md
@@ -61,9 +61,6 @@ It also has a feature of **assembling a fully functional 
Royale distribution** i
 mvn -s settings-template.xml -DskipITs clean install
 ```
 
- Note: we are fixing the text due to the migration, so you need to add 
-DskipTests to the line above to get asuccessful build. We'll remove this 
line when we fix all the test.
-
-
 5. Build Typedefs (royale-typedefs)
 
 1. Clone:

-- 
To stop receiving notification emails like this one, please contact
['"commits@royale.apache.org" '].


[royale-asjs.wiki] branch master updated: Updated Build Apache Royale with Maven (markdown)

2017-11-18 Thread carlosrovira
This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-asjs.wiki.git


The following commit(s) were added to refs/heads/master by this push:
 new dac9a07  Updated Build Apache Royale with Maven (markdown)
dac9a07 is described below

commit dac9a0723b93a895f56db2649d9215b497bb872a
Author: Carlos Rovira 
AuthorDate: Sat Nov 18 20:28:49 2017 +0100

Updated Build Apache Royale with Maven (markdown)
---
 Build-Apache-Royale-with-Maven.md | 80 +++
 1 file changed, 56 insertions(+), 24 deletions(-)

diff --git a/Build-Apache-Royale-with-Maven.md 
b/Build-Apache-Royale-with-Maven.md
index b08b89e..1e8c255 100644
--- a/Build-Apache-Royale-with-Maven.md
+++ b/Build-Apache-Royale-with-Maven.md
@@ -18,32 +18,48 @@ It also has a feature of **assembling a fully functional 
Royale distribution** i
 3. Download the "Flash Player projector content debugger" for your system 
from: https://www.adobe.com/support/flashplayer/debug_downloads.html (The 
Browser plugin or ActiveX component will not work)
 1. Set an environment variable called FLASHPLAYER_DEBUGGER and set it to 
the path of the Flash Debug Player executable (On windows and Linux machined 
this is trivial as you simply provide the full path (including the executable 
name), on Mac's this will look something like this: {Place the Player is 
installed to}/Flash Player.app/Contents/MacOS/Flash Player Debugger)
 
- Example for Windows:
-`FLASHPLAYER_DEBUGGER=C:\Program 
Files\Adobe\Flash\flashplayer_22_sa_debug.exe`
+Example for Windows:
+```
+FLASHPLAYER_DEBUGGER=C:\Program 
Files\Adobe\Flash\flashplayer_22_sa_debug.exe
+```
 
- Example for Linux:
-
`FLASHPLAYER_DEBUGGER=/opt/adobe/flash/flashplayer_11_sa_debug.i386/flashplayerdebugger`
+Example for Linux:
+```
+
FLASHPLAYER_DEBUGGER=/opt/adobe/flash/flashplayer_11_sa_debug.i386/flashplayerdebugger
+```
 
- Example for Mac:
-`FLASHPLAYER_DEBUGGER=/Applications/Adobe/Flash/22.0/Flash 
Player.app/Contents/MacOS/Flash Player Debugger`
+Example for Mac:
+```
+FLASHPLAYER_DEBUGGER=/Applications/Adobe/Flash/22.0/Flash 
Player.app/Contents/MacOS/Flash Player Debugger
+```
 
 4. Build Compiler (royale-compiler)
 
 1. Clone:
-`git clone https://github.com/apache/royale-compiler.git royale-compiler`
+```
+git clone https://github.com/apache/royale-compiler.git royale-compiler
+```
 
 2. Go into the new directory:
-`cd royale-compiler
- git checkout develop`
+```
+cd royale-compiler
+git checkout develop
+```
 
 3. Build the compiler:
-`mvn -s settings-template.xml clean install`
+```
+mvn -s settings-template.xml clean install
+```
 
-  This will execute all unit-tests and integration-tests. You can however 
run the build without any tests:
-`mvn -s settings-template.xml -DskipTests clean install`
+This will execute all unit-tests and integration-tests. You can however 
run the build without any tests:
+```
+mvn -s settings-template.xml -DskipTests clean install
+```
 
-  And if you just want to run the unit-tests and skip the 
integration-tests:
-`mvn -s settings-template.xml -DskipITs clean install`
+And if you just want to run the unit-tests and skip the integration-tests:
+```
+mvn -s settings-template.xml -DskipITs clean install
+```
 
  Note: we are fixing the text due to the migration, so you need to add 
-DskipTests to the line above to get asuccessful build. We'll remove this 
line when we fix all the test.
 
@@ -51,31 +67,47 @@ It also has a feature of **assembling a fully functional 
Royale distribution** i
 5. Build Typedefs (royale-typedefs)
 
 1. Clone:
-`git clone https://github.com/apache/royale-typedefs.git royale-typedefs`
+```
+git clone https://github.com/apache/royale-typedefs.git royale-typedefs
+```
 
 2. Go into the new directory:
-`cd royale-typedefs
-git checkout develop`
+```
+cd royale-typedefs
+git checkout develop
+```
 
 3. Build the typedefs:
-`mvn -s settings-template.xml clean install`
+```
+mvn -s settings-template.xml clean install
+```
 
 6. Build the Framework (royale-asjs)
 
 1. Clone:
-`git clone https://git-wip-us.apache.org/repos/asf/royale-asjs.git 
royale-asjs`
+```
+git clone https://git-wip-us.apache.org/repos/asf/royale-asjs.git 
royale-asjs
+```
 
 2. Go into the new directory:
-`cd royale-asjs
- git checkout develop`
+```
+cd royale-asjs
+git checkout develop
+```
 
 3. Build the framework libs:
-`mvn -s settings-template.xml clean install`
+```
+mvn -s settings-template.xml clean install
+```
 
 optionally you can also build the distribution binaries:
-`mvn -s settings-template.x

[royale-asjs.wiki] branch master updated: Updated Build Apache Royale with Maven (markdown)

2017-11-18 Thread carlosrovira
This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-asjs.wiki.git


The following commit(s) were added to refs/heads/master by this push:
 new 0c94497  Updated Build Apache Royale with Maven (markdown)
0c94497 is described below

commit 0c9449778129ac8da03f08dc00424a3bac2e20cf
Author: Carlos Rovira 
AuthorDate: Sat Nov 18 20:21:22 2017 +0100

Updated Build Apache Royale with Maven (markdown)
---
 Build-Apache-Royale-with-Maven.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Build-Apache-Royale-with-Maven.md 
b/Build-Apache-Royale-with-Maven.md
index 37d58e8..b08b89e 100644
--- a/Build-Apache-Royale-with-Maven.md
+++ b/Build-Apache-Royale-with-Maven.md
@@ -33,8 +33,8 @@ It also has a feature of **assembling a fully functional 
Royale distribution** i
 `git clone https://github.com/apache/royale-compiler.git royale-compiler`
 
 2. Go into the new directory:
-`.   cd royale-compiler
- git checkout develop'
+`cd royale-compiler
+ git checkout develop`
 
 3. Build the compiler:
 `mvn -s settings-template.xml clean install`

-- 
To stop receiving notification emails like this one, please contact
['"commits@royale.apache.org" '].


[royale-asjs.wiki] branch master updated: Updated Build Apache Royale with Maven (markdown)

2017-11-18 Thread carlosrovira
This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-asjs.wiki.git


The following commit(s) were added to refs/heads/master by this push:
 new 79dca2a  Updated Build Apache Royale with Maven (markdown)
79dca2a is described below

commit 79dca2a6e563d12e64461925c7fcf17241586ec0
Author: Carlos Rovira 
AuthorDate: Sat Nov 18 20:20:59 2017 +0100

Updated Build Apache Royale with Maven (markdown)
---
 Build-Apache-Royale-with-Maven.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Build-Apache-Royale-with-Maven.md 
b/Build-Apache-Royale-with-Maven.md
index def5d91..37d58e8 100644
--- a/Build-Apache-Royale-with-Maven.md
+++ b/Build-Apache-Royale-with-Maven.md
@@ -33,8 +33,8 @@ It also has a feature of **assembling a fully functional 
Royale distribution** i
 `git clone https://github.com/apache/royale-compiler.git royale-compiler`
 
 2. Go into the new directory:
-`cd royale-compiler
-git checkout develop'
+`.   cd royale-compiler
+ git checkout develop'
 
 3. Build the compiler:
 `mvn -s settings-template.xml clean install`

-- 
To stop receiving notification emails like this one, please contact
['"commits@royale.apache.org" '].


[royale-asjs.wiki] branch master updated: Updated Build Apache Royale with Maven (markdown)

2017-11-18 Thread carlosrovira
This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-asjs.wiki.git


The following commit(s) were added to refs/heads/master by this push:
 new aaf70f3  Updated Build Apache Royale with Maven (markdown)
aaf70f3 is described below

commit aaf70f34b278d04a83728f88251640e55c41dfc2
Author: Carlos Rovira 
AuthorDate: Sat Nov 18 20:19:20 2017 +0100

Updated Build Apache Royale with Maven (markdown)
---
 Build-Apache-Royale-with-Maven.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Build-Apache-Royale-with-Maven.md 
b/Build-Apache-Royale-with-Maven.md
index eb285bc..def5d91 100644
--- a/Build-Apache-Royale-with-Maven.md
+++ b/Build-Apache-Royale-with-Maven.md
@@ -18,7 +18,7 @@ It also has a feature of **assembling a fully functional 
Royale distribution** i
 3. Download the "Flash Player projector content debugger" for your system 
from: https://www.adobe.com/support/flashplayer/debug_downloads.html (The 
Browser plugin or ActiveX component will not work)
 1. Set an environment variable called FLASHPLAYER_DEBUGGER and set it to 
the path of the Flash Debug Player executable (On windows and Linux machined 
this is trivial as you simply provide the full path (including the executable 
name), on Mac's this will look something like this: {Place the Player is 
installed to}/Flash Player.app/Contents/MacOS/Flash Player Debugger)
 
- Example for Windows: 
+ Example for Windows:
 `FLASHPLAYER_DEBUGGER=C:\Program 
Files\Adobe\Flash\flashplayer_22_sa_debug.exe`
 
  Example for Linux:
@@ -51,7 +51,7 @@ It also has a feature of **assembling a fully functional 
Royale distribution** i
 5. Build Typedefs (royale-typedefs)
 
 1. Clone:
-`git clone https://github.com/apache/royale-typedefs.git royale-typedefs
+`git clone https://github.com/apache/royale-typedefs.git royale-typedefs`
 
 2. Go into the new directory:
 `cd royale-typedefs

-- 
To stop receiving notification emails like this one, please contact
['"commits@royale.apache.org" '].