Re: how flexjs just get js-debug?

2016-04-13 Thread lizhi
it is have the command line ,this function?
i am not use the fdt,i now use the bat.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/how-flexjs-just-get-js-debug-tp52303p52309.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: how flexjs just get js-debug?

2016-04-13 Thread OmPrakash Muppirala
I dont think there is a command line option.  I believe Alex's solution
would be command line based.

Thanks,
Om

On Tue, Apr 12, 2016 at 11:31 PM, lizhi  wrote:

> it is have the command line ,this function?
> i am not use the fdt,i now use the bat.
>
>
>
> --
> View this message in context:
> http://apache-flex-development.247.n4.nabble.com/how-flexjs-just-get-js-debug-tp52303p52309.html
> Sent from the Apache Flex Development mailing list archive at Nabble.com.
>


Re: [FlexJS][XML]first milestone

2016-04-13 Thread Harbs
FYI, this now works:
rects.(@id==3).@height = "100px”;

Thanks Alex for fixing this!

On Apr 13, 2016, at 12:24 AM, Harbs  wrote:

> Today, the following is working too:
> 
> var svg:XML = 
> 
>   
>   
> 
> 
>   
>   
> 
> ;
> 
> var rects:XMLList = svg..rect;
> rects[1].@width = "100px";
> //rects.(@id==3).@height = "100px";
> trace(rects.toXMLString());
> 
> outputs:
>  id="4”/>
> 
> On Apr 12, 2016, at 12:56 AM, OmPrakash Muppirala  
> wrote:
> 
>> Awesome!
>> 
>> I'll post if I can remember any of my other common scenarios.
>> 
>> Thanks,
>> Om
>> 
>> On Mon, Apr 11, 2016 at 2:54 PM, Harbs  wrote:
>> 
>>> Absolutely!
>>> 
>>> I just ran this:
>>> var svg:XML = >> />;
>>> 
>>> var rects:XMLList = svg..rect;
>>> trace(rects.toXMLString());
>>> 
>>> and got this in the console:
>>> 
  
 
 
  
  
 
 
 
 var rects:XMLList = svg..rect;
 
 //rects should contain all the rects in the svg, i.e.
 
 
 
 
 
 Thanks,
 Om
 
 
 On Mon, Apr 11, 2016 at 2:21 PM, Harbs  wrote:
 
> I made some great progress today.
> 
> I just compared the output of some pretty whacky xml processing in Flash
> to the output using the JS XML classes and the output was pretty close!
> 
> There are definitely some issues I still need to work on (besides some
> compiler issues in JIRA), but I’m really happy with it already. I
>>> expect to
> be able to try and run some production code through the compiler in the
> next week or so and see what happens.
> 
> On Apr 10, 2016, at 4:02 PM, Harbs  wrote:
> 
>> I reached a milestone today with E4X. I have the first working test
> which reads an XML literal, writes it back out to a string and writes
>>> the
> value of an attribute using E4X notation in Javascript!
>> 
>> Over the next couple of weeks I expect to be fixing a lot of issues
> related to XML and the better the test-case coverage we have, the better
> the quality will be.
>> 
>> I’d like to put out a call for snippets of E4X code that people are
> using in the wild so we can incorporate tests for as many use cases as
>>> we
> can get.
>> 
>> If you have code snippets to contribute, please respond!
>> 
>> Thanks,
>> Harbs
>> 
>> (P.S. There is currently a compiler issue with two of the XML methods,
> so the XML.js file needs a bit of editing before it can be used.
>>> Hopefully
> this issue will be fixed soon.)
> 
> 
>>> 
>>> 
> 



Re: [FlexJS][XML]first milestone

2016-04-13 Thread lizhi
https://github.com/matrix3d/FlashShader/blob/master/example/src/gl3d/parser/dae/ColladaDecoder.as

https://github.com/matrix3d/FlashShader/blob/master/example/src/assets/astroBoy_walk_Max.dae



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-XML-first-milestone-tp52258p52312.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS][XML]first milestone

2016-04-13 Thread Harbs
Hi Lizhi,

This looks like good use cases.

Do you think you can extract some simple sample code for testing?

On Apr 13, 2016, at 10:16 AM, lizhi  wrote:

> https://github.com/matrix3d/FlashShader/blob/master/example/src/gl3d/parser/dae/ColladaDecoder.as
> 
> https://github.com/matrix3d/FlashShader/blob/master/example/src/assets/astroBoy_walk_Max.dae
> 
> 
> 
> --
> View this message in context: 
> http://apache-flex-development.247.n4.nabble.com/FlexJS-XML-first-milestone-tp52258p52312.html
> Sent from the Apache Flex Development mailing list archive at Nabble.com.



[FlexJS] Status on Maven migration

2016-04-13 Thread Christofer Dutz
Hi,


today I finished cleaning up the Tests so they should now work on Mac and 
Windows.


The current version now provides a little more sophisticated 
flexjs-maven-plugin that allows a packaging of type "swc" so it no longer 
produces the dummy jar files. I really didn't want them to go into the snapshot 
repo.


I am currently struggling to build the compiler and the externs in one build, 
but am having a little classloader problem, that I am currently working on. If 
you build the compiler and the externs in one build the extern compilations 
fail complaining about compiler classes missing. I am working on this minor 
issue. so currently we have to do 3 builds:


mvn -s settings-template.xml clean install -P minimal


mvn -s settings-template.xml clean install -P compiler


mvn -s settings-template.xml clean install -P externs


If you simply copy the "settings-template.xml" into a ".m2" directory inside 
your users home directory and name it "settings.xml" you can omit the "-s 
settings-template.xml" part of the command.


As soon as we are able to produce snapshots in the ASF snapshot repo, the first 
can be omitted and as soon as I have resolved the classloading issue, the third 
one can be removed as well ... reducing the default to just this build command 
for downloading third party stuff, building and testing:


mvn clean install

As soon as the classloading issue is resolved, I will concentrate on bringing 
in the debug-player automatically. This would then remove the need to set any 
environment variables at all. So it would bring down the effort to checking out 
the code and running "mvn install" ...


One thing the current Maven build doesn't do, is prepare an installable SDK. 
For this I will add an assembly project that will produce these, but I need a 
little more information on how these SDK distributions should look like.


For the long term, I would suggest to release the build-utils (jburg types and 
little helper maven plugins) separately from the rest. They will probably not 
change often and only complicate the build if they stay part of it. For the 
flex-maven-plugin I would suggest to move that code over to a separate git repo 
... we currently already have a flex-maven-plugin in the utils repo ... I guess 
this is where that code belongs. Currently the plugin is really dumb, all it 
does is set 3 or 4 command line arguments, I would like to make it more and 
more like Flexmojos, that it doesn't need a hand written build config, but 
generates one from the maven configuration.


So far for the update. Up till now I only have one report of someone having 
tried the maven build, I would really feel comfortable if some more would give 
it a try. I don't want to make this official without having a few people having 
used it. ... So just checkout the "feature/maven-migration" branch, run the 
"migrate-to-maven.sh" script (On windows run that script in the git-bash or in 
Cygwin) and then run the tree commands I posted above.


Chris





Re: [jira] [Comment Edited] (FLEX-35078) Fatal when SelectionManager tries to reapply selection onto changed textFlow

2016-04-13 Thread Mihai Chira
Hey guys, I feel I've done as much as I can on this ticket to pave the
way for someone with more TLF knowledge to hopefully have an easy time
understanding and fixing it. Do any of you have time to take a look?
Many thanks!

On 13 April 2016 at 11:50, Mihai Chira (JIRA)  wrote:
>
> [ 
> https://issues.apache.org/jira/browse/FLEX-35078?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15238824#comment-15238824
>  ]
>
> Mihai Chira edited comment on FLEX-35078 at 4/13/16 9:49 AM:
> -
>
> * in {{TextFlowLine.makeSelectionBlocks()}} 
> {{textLine.getAtomIndexAtCharIndex(27) == -1}} although 
> {{textLine.rawTextLength == 37}}
> * after validation (see the *Workaround* in the ticket description) the text 
> flow
> {noformat}
>  xmlns="http://ns.adobe.com/textLayout/2008";> fontSize="15">The bug is in the function 
> TextFlowLine.adjustEndElementForBidi
> {noformat} is converted into {noformat}
>  xmlns="http://ns.adobe.com/textLayout/2008";>The bug is in the 
> function TextFlowLine.adjustEndElementForBidi{noformat}
> (where the empty span is where the bullet text used to be) and the fatal 
> isn't thrown.
>
>
> was (Author: evolverine):
> * in {{TextFlowLine.makeSelectionBlocks()}} 
> {{textLine.getAtomIndexAtCharIndex(27) == -1}} although 
> {{textLine.rawTextLength == 37}}
> * after validation (see the *Workaround* in the ticket description) the text 
> flow
> {noformat}
>  xmlns="http://ns.adobe.com/textLayout/2008";> fontSize="15">The bug is in the function 
> TextFlowLine.adjustEndElementForBidi
> {noformat} is converted into {noformat}
>  xmlns="http://ns.adobe.com/textLayout/2008";>The bug is in the 
> function TextFlowLine.adjustEndElementForBidi{noformat}
> where the empty span is where the bullet text used to be.
>
>> Fatal when SelectionManager tries to reapply selection onto changed textFlow
>> 
>>
>> Key: FLEX-35078
>> URL: https://issues.apache.org/jira/browse/FLEX-35078
>> Project: Apache Flex
>>  Issue Type: Bug
>>  Components: Spark: RichEditableText, TLF
>>Affects Versions: Apache Flex 4.15.0
>>Reporter: Mihai Chira
>>Assignee: Mihai Chira
>> Fix For: Apache Flex 4.16.0
>>
>> Attachments: Main.mxml
>>
>>
>> *Steps to reproduce*:
>> * run the attached mxml
>> * click on the "Bullets" button
>> *Expected results*: the bullet text is removed from the paragraph and the 
>> RichEditableText is focused.
>> *Actual results*: the bullet text is removed, but when the focus moves back 
>> to the RichEditableText component, the following fatal is thrown:
>> {noformat}
>> [Fault] exception, information=RangeError: Error #2006: The supplied index 
>> is out of bounds.
>> at flash.text.engine::TextLine/getAtomBidiLevel()
>> at 
>> flashx.textLayout.compose::TextFlowLine/adjustEndElementForBidi()[C:\Users\evolverine\Adobe
>>  Flash Builder 
>> 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:2499]
>> at 
>> flashx.textLayout.compose::TextFlowLine/makeSelectionBlocks()[C:\Users\evolverine\Adobe
>>  Flash Builder 
>> 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:1812]
>> at 
>> flashx.textLayout.compose::TextFlowLine/http://ns.adobe.com/textLayout/internal/2008::calculateSelectionBounds()[C:\Users\evolverine\Adobe
>>  Flash Builder 
>> 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:1517]
>> at 
>> flashx.textLayout.compose::TextFlowLine/getSelectionShapesCacheEntry()[C:\Users\evolverine\Adobe
>>  Flash Builder 
>> 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:1428]
>> at 
>> flashx.textLayout.compose::TextFlowLine/createSelectionShapes()[C:\Users\evolverine\Adobe
>>  Flash Builder 
>> 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:1664]
>> at 
>> flashx.textLayout.compose::TextFlowLine/http://ns.adobe.com/textLayout/internal/2008::hiliteBlockSelection()[C:\Users\evolverine\Adobe
>>  Flash Builder 
>> 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:2196]
>> at 
>> flashx.textLayout.container::ContainerController/http://ns.adobe.com/textLayout/internal/2008::addSelectionShapes()[C:\Users\evolverine\workspace\tlf\textLayout\src\flashx\textLayout\container\ContainerController.as:2920]
>> at 
>> flashx.textLayout.edit::SelectionManager/addSelectionShapes()[C:\Users\evolverine\workspace\tlf\textLayout\src\flashx\textLayout\edit\SelectionManager.as:1240]
>> at 
>> flashx.textLayout.edit::SelectionManager/refreshSelection()[C:\Users\evolverine\workspace\tlf\textLayout\src\flashx\textLayout\edit\SelectionManager.as:1272]
>> at 
>> flashx.textLayout.edit::SelectionManager/http://ns.adobe.com/textLayout/internal/2008::setSelectionFormatState()[C:\Users\evolverine\workspace\tlf\textLayout\src\flashx\textLayout\edit\SelectionManager.as:896]
>> at 
>> flashx.tex

Re: [jira] [Comment Edited] (FLEX-35078) Fatal when SelectionManager tries to reapply selection onto changed textFlow

2016-04-13 Thread Harbs
I think TLF is more aggressive than it used to be in removing empty spans.

I’ll try to look into this when I find the time.

On Apr 13, 2016, at 1:22 PM, Mihai Chira  wrote:

> Hey guys, I feel I've done as much as I can on this ticket to pave the
> way for someone with more TLF knowledge to hopefully have an easy time
> understanding and fixing it. Do any of you have time to take a look?
> Many thanks!
> 
> On 13 April 2016 at 11:50, Mihai Chira (JIRA)  wrote:
>> 
>>[ 
>> https://issues.apache.org/jira/browse/FLEX-35078?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15238824#comment-15238824
>>  ]
>> 
>> Mihai Chira edited comment on FLEX-35078 at 4/13/16 9:49 AM:
>> -
>> 
>> * in {{TextFlowLine.makeSelectionBlocks()}} 
>> {{textLine.getAtomIndexAtCharIndex(27) == -1}} although 
>> {{textLine.rawTextLength == 37}}
>> * after validation (see the *Workaround* in the ticket description) the text 
>> flow
>> {noformat}
>> > xmlns="http://ns.adobe.com/textLayout/2008";>> fontSize="15">The bug is in the function 
>> TextFlowLine.adjustEndElementForBidi
>> {noformat} is converted into {noformat}
>> > xmlns="http://ns.adobe.com/textLayout/2008";>The bug is in the 
>> function TextFlowLine.adjustEndElementForBidi{noformat}
>> (where the empty span is where the bullet text used to be) and the fatal 
>> isn't thrown.
>> 
>> 
>> was (Author: evolverine):
>> * in {{TextFlowLine.makeSelectionBlocks()}} 
>> {{textLine.getAtomIndexAtCharIndex(27) == -1}} although 
>> {{textLine.rawTextLength == 37}}
>> * after validation (see the *Workaround* in the ticket description) the text 
>> flow
>> {noformat}
>> > xmlns="http://ns.adobe.com/textLayout/2008";>> fontSize="15">The bug is in the function 
>> TextFlowLine.adjustEndElementForBidi
>> {noformat} is converted into {noformat}
>> > xmlns="http://ns.adobe.com/textLayout/2008";>The bug is in the 
>> function TextFlowLine.adjustEndElementForBidi{noformat}
>> where the empty span is where the bullet text used to be.
>> 
>>> Fatal when SelectionManager tries to reapply selection onto changed textFlow
>>> 
>>> 
>>>Key: FLEX-35078
>>>URL: https://issues.apache.org/jira/browse/FLEX-35078
>>>Project: Apache Flex
>>> Issue Type: Bug
>>> Components: Spark: RichEditableText, TLF
>>>   Affects Versions: Apache Flex 4.15.0
>>>   Reporter: Mihai Chira
>>>   Assignee: Mihai Chira
>>>Fix For: Apache Flex 4.16.0
>>> 
>>>Attachments: Main.mxml
>>> 
>>> 
>>> *Steps to reproduce*:
>>> * run the attached mxml
>>> * click on the "Bullets" button
>>> *Expected results*: the bullet text is removed from the paragraph and the 
>>> RichEditableText is focused.
>>> *Actual results*: the bullet text is removed, but when the focus moves back 
>>> to the RichEditableText component, the following fatal is thrown:
>>> {noformat}
>>> [Fault] exception, information=RangeError: Error #2006: The supplied index 
>>> is out of bounds.
>>> at flash.text.engine::TextLine/getAtomBidiLevel()
>>> at 
>>> flashx.textLayout.compose::TextFlowLine/adjustEndElementForBidi()[C:\Users\evolverine\Adobe
>>>  Flash Builder 
>>> 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:2499]
>>> at 
>>> flashx.textLayout.compose::TextFlowLine/makeSelectionBlocks()[C:\Users\evolverine\Adobe
>>>  Flash Builder 
>>> 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:1812]
>>> at 
>>> flashx.textLayout.compose::TextFlowLine/http://ns.adobe.com/textLayout/internal/2008::calculateSelectionBounds()[C:\Users\evolverine\Adobe
>>>  Flash Builder 
>>> 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:1517]
>>> at 
>>> flashx.textLayout.compose::TextFlowLine/getSelectionShapesCacheEntry()[C:\Users\evolverine\Adobe
>>>  Flash Builder 
>>> 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:1428]
>>> at 
>>> flashx.textLayout.compose::TextFlowLine/createSelectionShapes()[C:\Users\evolverine\Adobe
>>>  Flash Builder 
>>> 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:1664]
>>> at 
>>> flashx.textLayout.compose::TextFlowLine/http://ns.adobe.com/textLayout/internal/2008::hiliteBlockSelection()[C:\Users\evolverine\Adobe
>>>  Flash Builder 
>>> 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:2196]
>>> at 
>>> flashx.textLayout.container::ContainerController/http://ns.adobe.com/textLayout/internal/2008::addSelectionShapes()[C:\Users\evolverine\workspace\tlf\textLayout\src\flashx\textLayout\container\ContainerController.as:2920]
>>> at 
>>> flashx.textLayout.edit::SelectionManager/addSelectionShapes()[C:\Users\evolverine\workspace\tlf\textLayout\src\flashx\textLayout\edit\SelectionManager.as:1240]
>>> at 
>>> flashx.textLayout.edit::SelectionManager/refreshSelection()[C:\Users\evolverine\workspace\tlf\textLayout\src\fl

Re: [jira] [Comment Edited] (FLEX-35078) Fatal when SelectionManager tries to reapply selection onto changed textFlow

2016-04-13 Thread Mihai Chira
Actually this bug seems to occur when the empty span is *not* removed.
Thanks for taking a look!

On 13 April 2016 at 12:53, Harbs  wrote:
> I think TLF is more aggressive than it used to be in removing empty spans.
>
> I’ll try to look into this when I find the time.
>
> On Apr 13, 2016, at 1:22 PM, Mihai Chira  wrote:
>
>> Hey guys, I feel I've done as much as I can on this ticket to pave the
>> way for someone with more TLF knowledge to hopefully have an easy time
>> understanding and fixing it. Do any of you have time to take a look?
>> Many thanks!
>>
>> On 13 April 2016 at 11:50, Mihai Chira (JIRA)  wrote:
>>>
>>>[ 
>>> https://issues.apache.org/jira/browse/FLEX-35078?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15238824#comment-15238824
>>>  ]
>>>
>>> Mihai Chira edited comment on FLEX-35078 at 4/13/16 9:49 AM:
>>> -
>>>
>>> * in {{TextFlowLine.makeSelectionBlocks()}} 
>>> {{textLine.getAtomIndexAtCharIndex(27) == -1}} although 
>>> {{textLine.rawTextLength == 37}}
>>> * after validation (see the *Workaround* in the ticket description) the 
>>> text flow
>>> {noformat}
>>> >> xmlns="http://ns.adobe.com/textLayout/2008";>>> fontSize="15">The bug is in the function 
>>> TextFlowLine.adjustEndElementForBidi
>>> {noformat} is converted into {noformat}
>>> >> xmlns="http://ns.adobe.com/textLayout/2008";>The bug is in the 
>>> function 
>>> TextFlowLine.adjustEndElementForBidi{noformat}
>>> (where the empty span is where the bullet text used to be) and the fatal 
>>> isn't thrown.
>>>
>>>
>>> was (Author: evolverine):
>>> * in {{TextFlowLine.makeSelectionBlocks()}} 
>>> {{textLine.getAtomIndexAtCharIndex(27) == -1}} although 
>>> {{textLine.rawTextLength == 37}}
>>> * after validation (see the *Workaround* in the ticket description) the 
>>> text flow
>>> {noformat}
>>> >> xmlns="http://ns.adobe.com/textLayout/2008";>>> fontSize="15">The bug is in the function 
>>> TextFlowLine.adjustEndElementForBidi
>>> {noformat} is converted into {noformat}
>>> >> xmlns="http://ns.adobe.com/textLayout/2008";>The bug is in the 
>>> function 
>>> TextFlowLine.adjustEndElementForBidi{noformat}
>>> where the empty span is where the bullet text used to be.
>>>
 Fatal when SelectionManager tries to reapply selection onto changed 
 textFlow
 

Key: FLEX-35078
URL: https://issues.apache.org/jira/browse/FLEX-35078
Project: Apache Flex
 Issue Type: Bug
 Components: Spark: RichEditableText, TLF
   Affects Versions: Apache Flex 4.15.0
   Reporter: Mihai Chira
   Assignee: Mihai Chira
Fix For: Apache Flex 4.16.0

Attachments: Main.mxml


 *Steps to reproduce*:
 * run the attached mxml
 * click on the "Bullets" button
 *Expected results*: the bullet text is removed from the paragraph and the 
 RichEditableText is focused.
 *Actual results*: the bullet text is removed, but when the focus moves 
 back to the RichEditableText component, the following fatal is thrown:
 {noformat}
 [Fault] exception, information=RangeError: Error #2006: The supplied index 
 is out of bounds.
 at flash.text.engine::TextLine/getAtomBidiLevel()
 at 
 flashx.textLayout.compose::TextFlowLine/adjustEndElementForBidi()[C:\Users\evolverine\Adobe
  Flash Builder 
 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:2499]
 at 
 flashx.textLayout.compose::TextFlowLine/makeSelectionBlocks()[C:\Users\evolverine\Adobe
  Flash Builder 
 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:1812]
 at 
 flashx.textLayout.compose::TextFlowLine/http://ns.adobe.com/textLayout/internal/2008::calculateSelectionBounds()[C:\Users\evolverine\Adobe
  Flash Builder 
 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:1517]
 at 
 flashx.textLayout.compose::TextFlowLine/getSelectionShapesCacheEntry()[C:\Users\evolverine\Adobe
  Flash Builder 
 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:1428]
 at 
 flashx.textLayout.compose::TextFlowLine/createSelectionShapes()[C:\Users\evolverine\Adobe
  Flash Builder 
 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:1664]
 at 
 flashx.textLayout.compose::TextFlowLine/http://ns.adobe.com/textLayout/internal/2008::hiliteBlockSelection()[C:\Users\evolverine\Adobe
  Flash Builder 
 4.7\FLEX-33058\src\flashx\textLayout\compose\TextFlowLine.as:2196]
 at 
 flashx.textLayout.container::ContainerController/http://ns.adobe.com/textLayout/internal/2008::addSelectionShapes()[C:\Users\evolverine\workspace\tlf\textLayout\src\flashx\textLayout\container\ContainerController.as:2920]
 at 
 flashx.textLayout.edit::Se

How to use source maps. (was: how flexjs just get js-debug?)

2016-04-13 Thread Josh Tynjala
I'm not done with source maps yet, but you should be able to start playing
around with them in their current state. Some lines may not allow
breakpoints right now, but browsers seem to move them to the next valid
line automatically.

Using source maps is pretty easy:

1. Add the --source-map compiler argument.

2. Run the js-debug version in your browser.

3. Open the browser's developer tools and find the debugger. It should
automatically map to the generated JavaScript to the original ActionScript
files.

4. Add breakpoints to your ActionScript!

Right now, source maps for MXML files are not supported. The compiler will
exit with an error. It should be possible to support it in the future, but
I'm focusing on pure ActionScript for now.

I tried getting the IntelliJ IDEA debugger working with source maps. It
recognizes them in other places, but breakpoints won't work. I think I've
figured out that ActionScript files have their own type of breakpoint in
IDEA that isn't recognized as a JavaScript breakpoint.

- Josh
On Apr 12, 2016 11:13 PM, "Harbs"  wrote:

Hi Lizhi,

I’m not sure what you are asking. Are you asking how to enable the source
debugging via the source maps which Josh is working on? If yes, I was
wondering the same thing. I’m not sure if it’s ready for use.

On Apr 13, 2016, at 8:38 AM, lizhi  wrote:

>
>
>
>
> --
> View this message in context:
http://apache-flex-development.247.n4.nabble.com/how-flexjs-just-get-js-debug-tp52303.html
> Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: How to use source maps. (was: how flexjs just get js-debug?)

2016-04-13 Thread Harbs
> Right now, source maps for MXML files are not supported. The compiler will
> exit with an error. It should be possible to support it in the future, but
> I'm focusing on pure ActionScript for now.

So, a project with ANY mxml file cannot be used right now with the --source-map 
option?

If so, I’ll have to wait to try it out.

> I tried getting the IntelliJ IDEA debugger working with source maps. It
> recognizes them in other places, but breakpoints won't work. I think I've
> figured out that ActionScript files have their own type of breakpoint in
> IDEA that isn't recognized as a JavaScript breakpoint.

In-IDE debugging would be REALLY cool. I hope some of the IDE folks jump on the 
band-wagon to get that working.

I wonder how hard it would be to get that working in Visual Studio Code[1]. (In 
fact, I wonder about FlexJS integration in general.) It has support for in-IDE 
debugging of TypeScript and the whole IDE is open-source.

[1]https://www.visualstudio.com/products/code-vs



Re: How to use source maps. (was: how flexjs just get js-debug?)

2016-04-13 Thread OmPrakash Muppirala
Sounds very cool, Josh!  Thanks for getting this done.

On Wed, Apr 13, 2016 at 11:27 AM, Harbs  wrote:

> > Right now, source maps for MXML files are not supported. The compiler
> will
> > exit with an error. It should be possible to support it in the future,
> but
> > I'm focusing on pure ActionScript for now.
>
> So, a project with ANY mxml file cannot be used right now with the
> --source-map option?
>
> If so, I’ll have to wait to try it out.
>
> > I tried getting the IntelliJ IDEA debugger working with source maps. It
> > recognizes them in other places, but breakpoints won't work. I think I've
> > figured out that ActionScript files have their own type of breakpoint in
> > IDEA that isn't recognized as a JavaScript breakpoint.
>
> In-IDE debugging would be REALLY cool. I hope some of the IDE folks jump
> on the band-wagon to get that working.
>

Yes, that would be so cool!
In the past, I had to open individual tickets to each IDE developer to get
their attention.  I don't they are all paying close attention to this
mailing list.

Thanks,
Om


>
> I wonder how hard it would be to get that working in Visual Studio
> Code[1]. (In fact, I wonder about FlexJS integration in general.) It has
> support for in-IDE debugging of TypeScript and the whole IDE is open-source.
>
> [1]https://www.visualstudio.com/products/code-vs
>
>


Re: How to use source maps. (was: how flexjs just get js-debug?)

2016-04-13 Thread Josh Tynjala
Yes, any MXML file will cause the --source-map argument to fail right now.
I'll try to get it to skip MXML files, as a temporary workaround.

I expect that it is possible to get debugging working in VS Code.

The Flash/Flex plugin for IntelliJ IDEA is also open source.

https://github.com/JetBrains/intellij-plugins/tree/master/flex

- Josh
On Apr 13, 2016 11:28 AM, "Harbs"  wrote:

> > Right now, source maps for MXML files are not supported. The compiler
> will
> > exit with an error. It should be possible to support it in the future,
> but
> > I'm focusing on pure ActionScript for now.
>
> So, a project with ANY mxml file cannot be used right now with the
> --source-map option?
>
> If so, I’ll have to wait to try it out.
>
> > I tried getting the IntelliJ IDEA debugger working with source maps. It
> > recognizes them in other places, but breakpoints won't work. I think I've
> > figured out that ActionScript files have their own type of breakpoint in
> > IDEA that isn't recognized as a JavaScript breakpoint.
>
> In-IDE debugging would be REALLY cool. I hope some of the IDE folks jump
> on the band-wagon to get that working.
>
> I wonder how hard it would be to get that working in Visual Studio
> Code[1]. (In fact, I wonder about FlexJS integration in general.) It has
> support for in-IDE debugging of TypeScript and the whole IDE is open-source.
>
> [1]https://www.visualstudio.com/products/code-vs
>
>


Re: [2/2] git commit: [flex-falcon] [refs/heads/develop] - FalconJX now checks debug flag to determine whether to generate the release build via Google Closure Compiler. Also added -skip-transpile opt

2016-04-13 Thread Harbs
I’m confused about the options here.

If I’m reading this right, there’s 3 scenarios:
1. Generate js-debug and js-release
2. Only generate js-debug
3. Only generate js-release from an existing js-debug.

Did I get that right?

If so, what are the compile arguments for each case?

On Apr 13, 2016, at 10:08 PM, aha...@apache.org wrote:

> FalconJX now checks debug flag to determine whether to generate the release 
> build via Google Closure Compiler.  Also added -skip-transpile option so when 
> debug==false, you can skip the debug-mode transpilation.  By default, when 
> debug==false, the compiler wil first transpile into the js-debug folder then 
> call GCC on that folder.  If you set -skip-transpile, the copiler will not 
> transpile into the js-debug folder and just hand the js-debug folder to GCC.  
> This can come in handy if the compiler isn't generating the right code and 
> you want to hand-edit it before sending it to GCC for optimization
> 
> 
> Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
> Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/3357a102
> Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/3357a102
> Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/3357a102
> 
> Branch: refs/heads/develop
> Commit: 3357a10216f66f0ef93630a8861c43f975f509da
> Parents: fd87205
> Author: Alex Harui 
> Authored: Wed Apr 13 12:07:52 2016 -0700
> Committer: Alex Harui 
> Committed: Wed Apr 13 12:07:52 2016 -0700
> 
> --
> .../apache/flex/compiler/clients/MXMLJSC.java   | 109 ---
> .../mxml/flexjs/MXMLFlexJSPublisher.java| 140 ++-
> .../driver/js/goog/JSGoogConfiguration.java |  20 +++
> 3 files changed, 154 insertions(+), 115 deletions(-)
> --
> 
> 
> http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/3357a102/compiler.jx/src/org/apache/flex/compiler/clients/MXMLJSC.java
> --
> diff --git a/compiler.jx/src/org/apache/flex/compiler/clients/MXMLJSC.java 
> b/compiler.jx/src/org/apache/flex/compiler/clients/MXMLJSC.java
> index d324c9f..c6d9508 100644
> --- a/compiler.jx/src/org/apache/flex/compiler/clients/MXMLJSC.java
> +++ b/compiler.jx/src/org/apache/flex/compiler/clients/MXMLJSC.java
> @@ -349,7 +349,7 @@ public class MXMLJSC implements JSCompilerEntryPoint, 
> ProblemQueryProvider,
> if (continueCompilation)
> {
> project.setProblems(problems.getProblems());
> -compile();
> + compile();
> if (problems.hasFilteredProblems())
> {
> if (problems.hasErrors())
> @@ -410,12 +410,14 @@ public class MXMLJSC implements JSCompilerEntryPoint, 
> ProblemQueryProvider,
> {
> 
> project.getSourceCompilationUnitFactory().addHandler(asFileHandler);
> 
> -if (!setupTargetFile())
> -return false;
> -
> -buildArtifact();
> +if (!((JSGoogConfiguration) config).getSkipTranspile())
> +{
> + if (!setupTargetFile())
> + return false;
> 
> -if (jsTarget != null)
> + buildArtifact();
> +}
> +if (jsTarget != null || ((JSGoogConfiguration) 
> config).getSkipTranspile())
> {
> List errors = new 
> ArrayList();
> List warnings = new 
> ArrayList();
> @@ -432,54 +434,57 @@ public class MXMLJSC implements JSCompilerEntryPoint, 
> ProblemQueryProvider,
> 
> File outputFolder = jsPublisher.getOutputFolder();
> 
> -ArrayList roots = new 
> ArrayList();
> -roots.add(mainCU);
> -Set incs = 
> target.getIncludesCompilationUnits();
> -roots.addAll(incs);
> -List reachableCompilationUnits = 
> project.getReachableCompilationUnitsInSWFOrder(roots);
> -for (final ICompilationUnit cu : reachableCompilationUnits)
> +if (!((JSGoogConfiguration) config).getSkipTranspile())
> {
> -ICompilationUnit.UnitType cuType = 
> cu.getCompilationUnitType();
> -
> -if (cuType == ICompilationUnit.UnitType.AS_UNIT
> -|| cuType == ICompilationUnit.UnitType.MXML_UNIT)
> -{
> -final File outputClassFile = getOutputClassFile(
> -cu.getQualifiedNames().get(0), outputFolder);
> -
> -System.out.println("Compiling file: " + 
> outputClassFile);
> -
> -ICompilationUnit unit = cu;
> -
> -IJSWriter writer;
> -if (cuType == ICompilationUnit.UnitType.AS_UNIT)
> 

Re: [2/2] git commit: [flex-falcon] [refs/heads/develop] - FalconJX now checks debug flag to determine whether to generate the release build via Google Closure Compiler. Also added -skip-transpile opt

2016-04-13 Thread Alex Harui


On 4/13/16, 1:08 PM, "Harbs"  wrote:

>I’m confused about the options here.
>
>If I’m reading this right, there’s 3 scenarios:
>1. Generate js-debug and js-release

-debug=false

>2. Only generate js-debug

-debug=true

>3. Only generate js-release from an existing js-debug.

-debug=false -skip-transpile=true

And after I get the wrinkles out of the flex-asjs builds to only use the
26 files from Google Closure Library we currently actually need (out of
2446 files), I can build debug versions of some examples in 6 seconds (vs
30 seconds).

-Alex



Re: [2/2] git commit: [flex-falcon] [refs/heads/develop] - FalconJX now checks debug flag to determine whether to generate the release build via Google Closure Compiler. Also added -skip-transpile opt

2016-04-13 Thread OmPrakash Muppirala
On Wed, Apr 13, 2016 at 1:34 PM, Alex Harui  wrote:

>
>
> On 4/13/16, 1:08 PM, "Harbs"  wrote:
>
> >I’m confused about the options here.
> >
> >If I’m reading this right, there’s 3 scenarios:
> >1. Generate js-debug and js-release
>
> -debug=false
>
> >2. Only generate js-debug
>
> -debug=true
>
> >3. Only generate js-release from an existing js-debug.
>
> -debug=false -skip-transpile=true
>
> And after I get the wrinkles out of the flex-asjs builds to only use the
> 26 files from Google Closure Library we currently actually need (out of
> 2446 files), I can build debug versions of some examples in 6 seconds (vs
> 30 seconds).
>

Wow!  This is significant.


>
> -Alex
>
>


Re: [2/2] git commit: [flex-falcon] [refs/heads/develop] - FalconJX now checks debug flag to determine whether to generate the release build via Google Closure Compiler. Also added -skip-transpile opt

2016-04-13 Thread Harbs
Thanks.

On Apr 13, 2016, at 11:34 PM, Alex Harui  wrote:

> 
> 
> On 4/13/16, 1:08 PM, "Harbs"  wrote:
> 
>> I’m confused about the options here.
>> 
>> If I’m reading this right, there’s 3 scenarios:
>> 1. Generate js-debug and js-release
> 
> -debug=false
> 
>> 2. Only generate js-debug
> 
> -debug=true
> 
>> 3. Only generate js-release from an existing js-debug.
> 
> -debug=false -skip-transpile=true
> 
> And after I get the wrinkles out of the flex-asjs builds to only use the
> 26 files from Google Closure Library we currently actually need (out of
> 2446 files), I can build debug versions of some examples in 6 seconds (vs
> 30 seconds).
> 
> -Alex
> 



Docs

2016-04-13 Thread Harbs
Documentation on the Flex SDK is pretty mature. You can find just about 
anything you want on the web.

FlexJS has next to nothing. As things are ramping up with FlexJS, there is more 
an more functionality buried here in the dev list. I know I tend to be really 
bad at documentation. Even if we were perfect about ASDoc comments in the 
source code, that only helps for API documentation. Beyond that we have a 
strong need for general usage documentation. This includes general background, 
workflow, component usage, compiler arguments, IDEs, contribution, integrating 
third party libraries, etc. Do we have anyone subscribing to the list who has 
good writing skills who might want to take on some of this? Does anyone have a 
good documentation platform to display and help people find the info easily. 
(No. I don’t think the wiki is a good platform for that.) I think Angular has a 
good documentation site[1]. (Of course they probably had a team dedicated to 
writing it.)

Thoughts?

Harbs

[1]https://docs.angularjs.org/guide

Re: [FlexJS] Build examples and debug it using sources

2016-04-13 Thread piotrz
Harbs,

So your path to work on features are

1) Changing something in FlexJS code
2) Rebuild framework using ant
3) Rebuild example app and trace the results 

This is how it looks like ?

Piotr




-
Apache Flex PMC
piotrzarzyck...@gmail.com
--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Build-examples-and-debug-it-using-sources-tp52285p52327.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Build examples and debug it using sources

2016-04-13 Thread Harbs
Exactly.

If I need to pull in FalconJX changes I use ant all on asjs first.

The “manual test” apps have a “Test” button which runs the js code and outputs 
the results to the console. When trying to figure out what the code should 
compile into (when something is not working correctly), I modify the js files 
and re-run.

On Apr 13, 2016, at 11:38 PM, piotrz  wrote:

> Harbs,
> 
> So your path to work on features are
> 
> 1) Changing something in FlexJS code
> 2) Rebuild framework using ant
> 3) Rebuild example app and trace the results 
> 
> This is how it looks like ?
> 
> Piotr
> 
> 
> 
> 
> -
> Apache Flex PMC
> piotrzarzyck...@gmail.com
> --
> View this message in context: 
> http://apache-flex-development.247.n4.nabble.com/FlexJS-Build-examples-and-debug-it-using-sources-tp52285p52327.html
> Sent from the Apache Flex Development mailing list archive at Nabble.com.



Re: Docs

2016-04-13 Thread Andrew Wetmore
I have good writing skills and have headed doc teams for software companies
large and small. I have built doc platforms with Madcap Flare and other
tools, but when I am working on a shoestring I prefer HelpScribble (
https://www.helpscribble.com/). I would be glad to help with this,
especially if someone could point me to the existing documentation and help
me develop a table of contents to populate.

a

On Wed, Apr 13, 2016 at 5:09 PM, Harbs  wrote:

> Documentation on the Flex SDK is pretty mature. You can find just about
> anything you want on the web.
>
> FlexJS has next to nothing. As things are ramping up with FlexJS, there is
> more an more functionality buried here in the dev list. I know I tend to be
> really bad at documentation. Even if we were perfect about ASDoc comments
> in the source code, that only helps for API documentation. Beyond that we
> have a strong need for general usage documentation. This includes general
> background, workflow, component usage, compiler arguments, IDEs,
> contribution, integrating third party libraries, etc. Do we have anyone
> subscribing to the list who has good writing skills who might want to take
> on some of this? Does anyone have a good documentation platform to display
> and help people find the info easily. (No. I don’t think the wiki is a good
> platform for that.) I think Angular has a good documentation site[1]. (Of
> course they probably had a team dedicated to writing it.)
>
> Thoughts?
>
> Harbs
>
> [1]https://docs.angularjs.org/guide




-- 
Andrew Wetmore

http://cottage14.blogspot.com/


Re: How to use source maps. (was: how flexjs just get js-debug?)

2016-04-13 Thread Josh Tynjala
Hey Harbs,

I tweaked the compiler so that a warning is printed to the console when
trying to use source maps with MXML, but it should work fine with any AS
files in the project.

- Josh

On Wed, Apr 13, 2016 at 11:27 AM, Harbs  wrote:

> > Right now, source maps for MXML files are not supported. The compiler
> will
> > exit with an error. It should be possible to support it in the future,
> but
> > I'm focusing on pure ActionScript for now.
>
> So, a project with ANY mxml file cannot be used right now with the
> --source-map option?
>
> If so, I’ll have to wait to try it out.
>
> > I tried getting the IntelliJ IDEA debugger working with source maps. It
> > recognizes them in other places, but breakpoints won't work. I think I've
> > figured out that ActionScript files have their own type of breakpoint in
> > IDEA that isn't recognized as a JavaScript breakpoint.
>
> In-IDE debugging would be REALLY cool. I hope some of the IDE folks jump
> on the band-wagon to get that working.
>
> I wonder how hard it would be to get that working in Visual Studio
> Code[1]. (In fact, I wonder about FlexJS integration in general.) It has
> support for in-IDE debugging of TypeScript and the whole IDE is open-source.
>
> [1]https://www.visualstudio.com/products/code-vs
>
>


Re: Docs

2016-04-13 Thread Justin Mclean
Hi,

I’ve used Mkdocs [1] before. It produces nice document web sites that can be 
hosted anywhere. It’s license is compatible with Apache [2].

But in this case it’s more having the content in the first place I think?

Thanks,
Justin

1  http://www.mkdocs.org
2. http://www.mkdocs.org/about/license/

Re: Docs

2016-04-13 Thread Andrew Wetmore
Does the team prefer to write in Markdown?

On Wed, Apr 13, 2016 at 6:46 PM, Justin Mclean 
wrote:

> Hi,
>
> I’ve used Mkdocs [1] before. It produces nice document web sites that can
> be hosted anywhere. It’s license is compatible with Apache [2].
>
> But in this case it’s more having the content in the first place I think?
>
> Thanks,
> Justin
>
> 1  http://www.mkdocs.org
> 2. http://www.mkdocs.org/about/license/




-- 
Andrew Wetmore

http://cottage14.blogspot.com/


Re: FlexJS World Tour - Livestream NOW!

2016-04-13 Thread Shubham Gupta
Hi Alex,

While editing the videos, I found some problem with your and Om's
presentation videos. The 3rd video (afternoon session) is good but the
presentation videos do not have clear images of the presentation but have
clear audio. It would be great if you can check the videos at your end also.

-- 
Thank You

Regards,
Shubham Gupta

On Mon, Apr 11, 2016 at 9:52 AM, Shubham Gupta 
wrote:

> Thanks Alex, I will edit and upload the videos in a day.
>
> Regards,
> Shubham
>
> On Mon, Apr 11, 2016 at 9:44 AM, Alex Harui  wrote:
>
>> I just sent Shubham the links to the videos.
>>
>> -Alex
>>
>> On 4/8/16, 1:28 PM, "Shubham Gupta"  wrote:
>>
>> >Hi Alex,
>> >
>> >Can you please share those files with me. I will upload them on YouTube.
>> >
>> >Regards,
>> >Shubham
>> >
>> >On Fri, Apr 8, 2016 at 7:35 AM, Alex Harui  wrote:
>> >
>> >> There will be 3 separate FLV files.  One for my press, one for Om's and
>> >> one for the afternoon.  There was a fourth one that was made during
>> >>lunch,
>> >> but I'll probably toss that unless folks can remind me of something
>> >>useful
>> >> that occurred during that time.
>> >>
>> >> HTH,
>> >> -Alex
>> >>
>> >> On 4/8/16, 3:07 AM, "carlos.rov...@gmail.com on behalf of Carlos
>> Rovira"
>> >> 
>> >> wrote:
>> >>
>> >> >Hi Om, do you mean admin of the Apache Flex PMC youtube account?
>> >> >
>> >> >Seems Shubham already created the account. Maybe we only need to have
>> >> >permissions to upload videos we or community people send to us to make
>> >> >Apache Flex Youtube channel get some size and useful videos.
>> >> >
>> >> >We should see about the file size of the SF recordings. I think the
>> >>Adobe
>> >> >Connect was recording even in the break time, so maybe the videos
>> >>could be
>> >> >heavy size. I'll help as material arise and we could see what we
>> found.
>> >> >
>> >> >
>> >> >
>> >> >2016-04-07 22:01 GMT+02:00 Shubham Gupta :
>> >> >
>> >> >> I have created a YouTube account for Apache Flex, where we can
>> upload
>> >> >> videos. I am figuring out how to assign multiple admins.
>> >> >>
>> >> >> Thanks,
>> >> >> Shubham
>> >> >>
>> >> >> On Thu, Apr 7, 2016 at 12:57 PM, OmPrakash Muppirala
>> >> >>> >> >> >
>> >> >> wrote:
>> >> >>
>> >> >> > Carlos, can you take up the task of becoming an admin on behalf
>> the
>> >> >> Apache
>> >> >> > Flex PMC?  Shubham should be able to help you out with that.
>> >> >> >
>> >> >> > We can probably set this up while waiting for Alex's video files.
>> >> >> >
>> >> >> > Thanks,
>> >> >> > Om
>> >> >> >
>> >> >> > On Thu, Apr 7, 2016 at 8:26 AM, Carlos Rovira <
>> >> >> > carlos.rov...@codeoscopic.com> wrote:
>> >> >> >
>> >> >> >> Hi,
>> >> >> >>
>> >> >> >> getting here at last, great to see there are plans for youtube. I
>> >> >>think
>> >> >> >> that account and getting videos would make the technology more
>> >> >>accesible
>> >> >> >> for everyone.
>> >> >> >> And would make make people jump to Flex thanks to that.
>> >> >> >>
>> >> >> >> Thanks!
>> >> >> >>
>> >> >> >> Carlos
>> >> >> >>
>> >> >> >>
>> >> >> >>
>> >> >> >> 2016-04-07 11:02 GMT+02:00 Deepak MS :
>> >> >> >>
>> >> >> >> > On a side note, if it's an official apache flex youtube
>> >>account, I
>> >> >> feel
>> >> >> >> we
>> >> >> >> > can also create a adsense account and link it with the youtube
>> >> >> account.
>> >> >> >> > Just in case views and subscriptions grow(in turn
>> >>advertisements),
>> >> >> >> > financially it may help the community. Just a thought.
>> >> >> >> >
>> >> >> >> > On Thu, Apr 7, 2016 at 3:59 AM, OmPrakash Muppirala <
>> >> >> >> bigosma...@gmail.com>
>> >> >> >> > wrote:
>> >> >> >> >
>> >> >> >> > > Shubham,
>> >> >> >> > >
>> >> >> >> > > This would be a good time to create a YouTube channel for
>> >>Apache
>> >> >> Flex.
>> >> >> >> > > Hopefully there will more videos to showcase in the future.
>> >> >> >> > >
>> >> >> >> > > I think you can create the account and add me as an Admin
>> that
>> >> >>would
>> >> >> >> be
>> >> >> >> > > great.  Youtube now supports multiple admins per channel [1]
>> >> >> >> > >
>> >> >> >> > > Thanks,
>> >> >> >> > > Om
>> >> >> >> > >
>> >> >> >> > > [1] http://sproutsocial.com/insights/manage-youtube-channel/
>> >> >> >> > >
>> >> >> >> > > On Wed, Apr 6, 2016 at 3:21 PM, Shubham Gupta <
>> >> >> >> gupta08shub...@gmail.com>
>> >> >> >> > > wrote:
>> >> >> >> > >
>> >> >> >> > > > Awesome, may be Alex can share the videos with me via
>> google
>> >> >>drive
>> >> >> >> and
>> >> >> >> > > > then I will edit and upload them on YouTube.
>> >> >> >> > > >
>> >> >> >> > > > Thanks,
>> >> >> >> > > > Shubham Gupta
>> >> >> >> > > >
>> >> >> >> > > > On Wed, Apr 6, 2016 at 3:18 PM, OmPrakash Muppirala <
>> >> >> >> > > bigosma...@gmail.com>
>> >> >> >> > > > wrote:
>> >> >> >> > > >
>> >> >> >> > > >> On Wed, Apr 6, 2016 at 3:17 PM, Shubham Gupta <
>> >> >> >> > gupta08shub...@gmail.com
>> >> >> >> > > >
>> >> >> >> > > >> wrote:
>> >> >> >> > > >>
>> >> >> >> > > >>> I would require the

Re: FlexJS World Tour - Livestream NOW!

2016-04-13 Thread Alex Harui
The afternoon video may have been in a lower resolution.  I will try that 
resolution for the other video.


Sent from my LG G3, an AT&T 4G LTE smartphone


-- Original message--

From: Shubham Gupta

Date: Wed, Apr 13, 2016 3:59 PM

To: dev@flex.apache.org;

Cc: OmPrakash Muppirala;

Subject:Re: FlexJS World Tour - Livestream NOW!


Hi Alex,

While editing the videos, I found some problem with your and Om's
presentation videos. The 3rd video (afternoon session) is good but the
presentation videos do not have clear images of the presentation but have
clear audio. It would be great if you can check the videos at your end also.

--
Thank You

Regards,
Shubham Gupta

On Mon, Apr 11, 2016 at 9:52 AM, Shubham Gupta 
wrote:

> Thanks Alex, I will edit and upload the videos in a day.
>
> Regards,
> Shubham
>
> On Mon, Apr 11, 2016 at 9:44 AM, Alex Harui  wrote:
>
>> I just sent Shubham the links to the videos.
>>
>> -Alex
>>
>> On 4/8/16, 1:28 PM, "Shubham Gupta"  wrote:
>>
>> >Hi Alex,
>> >
>> >Can you please share those files with me. I will upload them on YouTube.
>> >
>> >Regards,
>> >Shubham
>> >
>> >On Fri, Apr 8, 2016 at 7:35 AM, Alex Harui  wrote:
>> >
>> >> There will be 3 separate FLV files.  One for my press, one for Om's and
>> >> one for the afternoon.  There was a fourth one that was made during
>> >>lunch,
>> >> but I'll probably toss that unless folks can remind me of something
>> >>useful
>> >> that occurred during that time.
>> >>
>> >> HTH,
>> >> -Alex
>> >>
>> >> On 4/8/16, 3:07 AM, "carlos.rov...@gmail.com on behalf of Carlos
>> Rovira"
>> >> 
>> >> wrote:
>> >>
>> >> >Hi Om, do you mean admin of the Apache Flex PMC youtube account?
>> >> >
>> >> >Seems Shubham already created the account. Maybe we only need to have
>> >> >permissions to upload videos we or community people send to us to make
>> >> >Apache Flex Youtube channel get some size and useful videos.
>> >> >
>> >> >We should see about the file size of the SF recordings. I think the
>> >>Adobe
>> >> >Connect was recording even in the break time, so maybe the videos
>> >>could be
>> >> >heavy size. I'll help as material arise and we could see what we
>> found.
>> >> >
>> >> >
>> >> >
>> >> >2016-04-07 22:01 GMT+02:00 Shubham Gupta :
>> >> >
>> >> >> I have created a YouTube account for Apache Flex, where we can
>> upload
>> >> >> videos. I am figuring out how to assign multiple admins.
>> >> >>
>> >> >> Thanks,
>> >> >> Shubham
>> >> >>
>> >> >> On Thu, Apr 7, 2016 at 12:57 PM, OmPrakash Muppirala
>> >> >>> >> >> >
>> >> >> wrote:
>> >> >>
>> >> >> > Carlos, can you take up the task of becoming an admin on behalf
>> the
>> >> >> Apache
>> >> >> > Flex PMC?  Shubham should be able to help you out with that.
>> >> >> >
>> >> >> > We can probably set this up while waiting for Alex's video files.
>> >> >> >
>> >> >> > Thanks,
>> >> >> > Om
>> >> >> >
>> >> >> > On Thu, Apr 7, 2016 at 8:26 AM, Carlos Rovira <
>> >> >> > carlos.rov...@codeoscopic.com> wrote:
>> >> >> >
>> >> >> >> Hi,
>> >> >> >>
>> >> >> >> getting here at last, great to see there are plans for youtube. I
>> >> >>think
>> >> >> >> that account and getting videos would make the technology more
>> >> >>accesible
>> >> >> >> for everyone.
>> >> >> >> And would make make people jump to Flex thanks to that.
>> >> >> >>
>> >> >> >> Thanks!
>> >> >> >>
>> >> >> >> Carlos
>> >> >> >>
>> >> >> >>
>> >> >> >>
>> >> >> >> 2016-04-07 11:02 GMT+02:00 Deepak MS :
>> >> >> >>
>> >> >> >> > On a side note, if it's an official apache flex youtube
>> >>account, I
>> >> >> feel
>> >> >> >> we
>> >> >> >> > can also create a adsense account and link it with the youtube
>> >> >> account.
>> >> >> >> > Just in case views and subscriptions grow(in turn
>> >>advertisements),
>> >> >> >> > financially it may help the community. Just a thought.
>> >> >> >> >
>> >> >> >> > On Thu, Apr 7, 2016 at 3:59 AM, OmPrakash Muppirala <
>> >> >> >> bigosma...@gmail.com>
>> >> >> >> > wrote:
>> >> >> >> >
>> >> >> >> > > Shubham,
>> >> >> >> > >
>> >> >> >> > > This would be a good time to create a YouTube channel for
>> >>Apache
>> >> >> Flex.
>> >> >> >> > > Hopefully there will more videos to showcase in the future.
>> >> >> >> > >
>> >> >> >> > > I think you can create the account and add me as an Admin
>> that
>> >> >>would
>> >> >> >> be
>> >> >> >> > > great.  Youtube now supports multiple admins per channel [1]
>> >> >> >> > >
>> >> >> >> > > Thanks,
>> >> >> >> > > Om
>> >> >> >> > >
>> >> >> >> > > [1] http://sproutsocial.com/insights/manage-youtube-channel/
>> >> >> >> > >
>> >> >> >> > > On Wed, Apr 6, 2016 at 3:21 PM, Shubham Gupta <
>> >> >> >> gupta08shub...@gmail.com>
>> >> >> >> > > wrote:
>> >> >> >> > >
>> >> >> >> > > > Awesome, may be Alex can share the videos with me via
>> google
>> >> >>drive
>> >> >> >> and
>> >> >> >> > > > then I will edit and upload them on YouTube.
>> >> >> >> > > >
>> >> >> >> > > > Thanks,
>> >> >> >> > > > Shubham Gupta
>> >> >>

Re: Docs

2016-04-13 Thread Alex Harui


On 4/13/16, 3:59 PM, "Andrew Wetmore"  wrote:

>Does the team prefer to write in Markdown?

IMO, the factors involved here are:
1) Are these pages going on the flex.a.o website?
2) If so, does the Apache CMS support the choice of doc system?
3) Does the doc system use something relative popular and/or easy to learn?
4) Could we change our minds about which doc system to use and easily port
existing content?

Other than that, those who are going to do the writing should have the
most say in what we use as long as these factors are considered.  As long
as the content can be published were we want it, and we have flexibility
in switching to another system or having someone do a lot of writing at
first but then someone else picks it up from there, then IMO, folks who
want to write can just start writing.

-Alex



Re: FlexJS World Tour - Livestream NOW!

2016-04-13 Thread Alex Harui
I sent Shubham links to videos with a different resolution.  Shubham, if
they are still bad, is there a recommended resolution I can try?

Thanks,
-Alex

On 4/13/16, 5:28 PM, "Alex Harui"  wrote:

>The afternoon video may have been in a lower resolution.  I will try that
>resolution for the other video.
>
>
>Sent from my LG G3, an AT&T 4G LTE smartphone
>
>
>-- Original message--
>
>From: Shubham Gupta
>
>Date: Wed, Apr 13, 2016 3:59 PM
>
>To: dev@flex.apache.org;
>
>Cc: OmPrakash Muppirala;
>
>Subject:Re: FlexJS World Tour - Livestream NOW!
>
>
>Hi Alex,
>
>While editing the videos, I found some problem with your and Om's
>presentation videos. The 3rd video (afternoon session) is good but the
>presentation videos do not have clear images of the presentation but have
>clear audio. It would be great if you can check the videos at your end
>also.
>
>--
>Thank You
>
>Regards,
>Shubham Gupta
>
>On Mon, Apr 11, 2016 at 9:52 AM, Shubham Gupta 
>wrote:
>
>> Thanks Alex, I will edit and upload the videos in a day.
>>
>> Regards,
>> Shubham
>>
>> On Mon, Apr 11, 2016 at 9:44 AM, Alex Harui  wrote:
>>
>>> I just sent Shubham the links to the videos.
>>>
>>> -Alex
>>>
>>> On 4/8/16, 1:28 PM, "Shubham Gupta"  wrote:
>>>
>>> >Hi Alex,
>>> >
>>> >Can you please share those files with me. I will upload them on
>>>YouTube.
>>> >
>>> >Regards,
>>> >Shubham
>>> >
>>> >On Fri, Apr 8, 2016 at 7:35 AM, Alex Harui  wrote:
>>> >
>>> >> There will be 3 separate FLV files.  One for my press, one for Om's
>>>and
>>> >> one for the afternoon.  There was a fourth one that was made during
>>> >>lunch,
>>> >> but I'll probably toss that unless folks can remind me of something
>>> >>useful
>>> >> that occurred during that time.
>>> >>
>>> >> HTH,
>>> >> -Alex
>>> >>
>>> >> On 4/8/16, 3:07 AM, "carlos.rov...@gmail.com on behalf of Carlos
>>> Rovira"
>>> >> 
>>> >> wrote:
>>> >>
>>> >> >Hi Om, do you mean admin of the Apache Flex PMC youtube account?
>>> >> >
>>> >> >Seems Shubham already created the account. Maybe we only need to
>>>have
>>> >> >permissions to upload videos we or community people send to us to
>>>make
>>> >> >Apache Flex Youtube channel get some size and useful videos.
>>> >> >
>>> >> >We should see about the file size of the SF recordings. I think the
>>> >>Adobe
>>> >> >Connect was recording even in the break time, so maybe the videos
>>> >>could be
>>> >> >heavy size. I'll help as material arise and we could see what we
>>> found.
>>> >> >
>>> >> >
>>> >> >
>>> >> >2016-04-07 22:01 GMT+02:00 Shubham Gupta
>>>:
>>> >> >
>>> >> >> I have created a YouTube account for Apache Flex, where we can
>>> upload
>>> >> >> videos. I am figuring out how to assign multiple admins.
>>> >> >>
>>> >> >> Thanks,
>>> >> >> Shubham
>>> >> >>
>>> >> >> On Thu, Apr 7, 2016 at 12:57 PM, OmPrakash Muppirala
>>> >>  >> >> >
>>> >> >> wrote:
>>> >> >>
>>> >> >> > Carlos, can you take up the task of becoming an admin on behalf
>>> the
>>> >> >> Apache
>>> >> >> > Flex PMC?  Shubham should be able to help you out with that.
>>> >> >> >
>>> >> >> > We can probably set this up while waiting for Alex's video
>>>files.
>>> >> >> >
>>> >> >> > Thanks,
>>> >> >> > Om
>>> >> >> >
>>> >> >> > On Thu, Apr 7, 2016 at 8:26 AM, Carlos Rovira <
>>> >> >> > carlos.rov...@codeoscopic.com> wrote:
>>> >> >> >
>>> >> >> >> Hi,
>>> >> >> >>
>>> >> >> >> getting here at last, great to see there are plans for
>>>youtube. I
>>> >> >>think
>>> >> >> >> that account and getting videos would make the technology more
>>> >> >>accesible
>>> >> >> >> for everyone.
>>> >> >> >> And would make make people jump to Flex thanks to that.
>>> >> >> >>
>>> >> >> >> Thanks!
>>> >> >> >>
>>> >> >> >> Carlos
>>> >> >> >>
>>> >> >> >>
>>> >> >> >>
>>> >> >> >> 2016-04-07 11:02 GMT+02:00 Deepak MS
>>>:
>>> >> >> >>
>>> >> >> >> > On a side note, if it's an official apache flex youtube
>>> >>account, I
>>> >> >> feel
>>> >> >> >> we
>>> >> >> >> > can also create a adsense account and link it with the
>>>youtube
>>> >> >> account.
>>> >> >> >> > Just in case views and subscriptions grow(in turn
>>> >>advertisements),
>>> >> >> >> > financially it may help the community. Just a thought.
>>> >> >> >> >
>>> >> >> >> > On Thu, Apr 7, 2016 at 3:59 AM, OmPrakash Muppirala <
>>> >> >> >> bigosma...@gmail.com>
>>> >> >> >> > wrote:
>>> >> >> >> >
>>> >> >> >> > > Shubham,
>>> >> >> >> > >
>>> >> >> >> > > This would be a good time to create a YouTube channel for
>>> >>Apache
>>> >> >> Flex.
>>> >> >> >> > > Hopefully there will more videos to showcase in the
>>>future.
>>> >> >> >> > >
>>> >> >> >> > > I think you can create the account and add me as an Admin
>>> that
>>> >> >>would
>>> >> >> >> be
>>> >> >> >> > > great.  Youtube now supports multiple admins per channel
>>>[1]
>>> >> >> >> > >
>>> >> >> >> > > Thanks,
>>> >> >> >> > > Om
>>> >> >> >> > >
>>> >> >> >> > > [1]
>>>http://sproutsocial.com/insights/manage-youtube-channel/
>>> >> >> >> > >
>>>

AW: Docs

2016-04-13 Thread Christofer Dutz
Hi,

In the Maven world, this year asciidoc has become THE tool for creating 
documentation including diagrams. Every conference here seems to have some 
talks on it. Perhaps you should have a look at that. It would make it easier to 
integrate into automated builds.
I was planning on adding that to the falcon Maven build. So I guess that's what 
I'll do as soon as I'm in the office.

Chris



Von meinem Samsung Galaxy Smartphone gesendet.


 Ursprüngliche Nachricht 
Von: Justin Mclean 
Datum: 14.04.16 00:46 (GMT+01:00)
An: dev@flex.apache.org
Betreff: Re: Docs

Hi,

I’ve used Mkdocs [1] before. It produces nice document web sites that can be 
hosted anywhere. It’s license is compatible with Apache [2].

But in this case it’s more having the content in the first place I think?

Thanks,
Justin

1  http://www.mkdocs.org
2. http://www.mkdocs.org/about/license/


Re: FlexJS World Tour - Livestream NOW!

2016-04-13 Thread Shubham Gupta
Hi Alex,

This resolution works well. Thank you,

Regards,
Shubham Gupta

On Wed, Apr 13, 2016 at 10:42 PM, Alex Harui  wrote:

> I sent Shubham links to videos with a different resolution.  Shubham, if
> they are still bad, is there a recommended resolution I can try?
>
> Thanks,
> -Alex
>
> On 4/13/16, 5:28 PM, "Alex Harui"  wrote:
>
> >The afternoon video may have been in a lower resolution.  I will try that
> >resolution for the other video.
> >
> >
> >Sent from my LG G3, an AT&T 4G LTE smartphone
> >
> >
> >-- Original message--
> >
> >From: Shubham Gupta
> >
> >Date: Wed, Apr 13, 2016 3:59 PM
> >
> >To: dev@flex.apache.org;
> >
> >Cc: OmPrakash Muppirala;
> >
> >Subject:Re: FlexJS World Tour - Livestream NOW!
> >
> >
> >Hi Alex,
> >
> >While editing the videos, I found some problem with your and Om's
> >presentation videos. The 3rd video (afternoon session) is good but the
> >presentation videos do not have clear images of the presentation but have
> >clear audio. It would be great if you can check the videos at your end
> >also.
> >
> >--
> >Thank You
> >
> >Regards,
> >Shubham Gupta
> >
> >On Mon, Apr 11, 2016 at 9:52 AM, Shubham Gupta 
> >wrote:
> >
> >> Thanks Alex, I will edit and upload the videos in a day.
> >>
> >> Regards,
> >> Shubham
> >>
> >> On Mon, Apr 11, 2016 at 9:44 AM, Alex Harui  wrote:
> >>
> >>> I just sent Shubham the links to the videos.
> >>>
> >>> -Alex
> >>>
> >>> On 4/8/16, 1:28 PM, "Shubham Gupta"  wrote:
> >>>
> >>> >Hi Alex,
> >>> >
> >>> >Can you please share those files with me. I will upload them on
> >>>YouTube.
> >>> >
> >>> >Regards,
> >>> >Shubham
> >>> >
> >>> >On Fri, Apr 8, 2016 at 7:35 AM, Alex Harui  wrote:
> >>> >
> >>> >> There will be 3 separate FLV files.  One for my press, one for Om's
> >>>and
> >>> >> one for the afternoon.  There was a fourth one that was made during
> >>> >>lunch,
> >>> >> but I'll probably toss that unless folks can remind me of something
> >>> >>useful
> >>> >> that occurred during that time.
> >>> >>
> >>> >> HTH,
> >>> >> -Alex
> >>> >>
> >>> >> On 4/8/16, 3:07 AM, "carlos.rov...@gmail.com on behalf of Carlos
> >>> Rovira"
> >>> >>  >
> >>> >> wrote:
> >>> >>
> >>> >> >Hi Om, do you mean admin of the Apache Flex PMC youtube account?
> >>> >> >
> >>> >> >Seems Shubham already created the account. Maybe we only need to
> >>>have
> >>> >> >permissions to upload videos we or community people send to us to
> >>>make
> >>> >> >Apache Flex Youtube channel get some size and useful videos.
> >>> >> >
> >>> >> >We should see about the file size of the SF recordings. I think the
> >>> >>Adobe
> >>> >> >Connect was recording even in the break time, so maybe the videos
> >>> >>could be
> >>> >> >heavy size. I'll help as material arise and we could see what we
> >>> found.
> >>> >> >
> >>> >> >
> >>> >> >
> >>> >> >2016-04-07 22:01 GMT+02:00 Shubham Gupta
> >>>:
> >>> >> >
> >>> >> >> I have created a YouTube account for Apache Flex, where we can
> >>> upload
> >>> >> >> videos. I am figuring out how to assign multiple admins.
> >>> >> >>
> >>> >> >> Thanks,
> >>> >> >> Shubham
> >>> >> >>
> >>> >> >> On Thu, Apr 7, 2016 at 12:57 PM, OmPrakash Muppirala
> >>> >> >> >>> >> >> >
> >>> >> >> wrote:
> >>> >> >>
> >>> >> >> > Carlos, can you take up the task of becoming an admin on behalf
> >>> the
> >>> >> >> Apache
> >>> >> >> > Flex PMC?  Shubham should be able to help you out with that.
> >>> >> >> >
> >>> >> >> > We can probably set this up while waiting for Alex's video
> >>>files.
> >>> >> >> >
> >>> >> >> > Thanks,
> >>> >> >> > Om
> >>> >> >> >
> >>> >> >> > On Thu, Apr 7, 2016 at 8:26 AM, Carlos Rovira <
> >>> >> >> > carlos.rov...@codeoscopic.com> wrote:
> >>> >> >> >
> >>> >> >> >> Hi,
> >>> >> >> >>
> >>> >> >> >> getting here at last, great to see there are plans for
> >>>youtube. I
> >>> >> >>think
> >>> >> >> >> that account and getting videos would make the technology more
> >>> >> >>accesible
> >>> >> >> >> for everyone.
> >>> >> >> >> And would make make people jump to Flex thanks to that.
> >>> >> >> >>
> >>> >> >> >> Thanks!
> >>> >> >> >>
> >>> >> >> >> Carlos
> >>> >> >> >>
> >>> >> >> >>
> >>> >> >> >>
> >>> >> >> >> 2016-04-07 11:02 GMT+02:00 Deepak MS
> >>>:
> >>> >> >> >>
> >>> >> >> >> > On a side note, if it's an official apache flex youtube
> >>> >>account, I
> >>> >> >> feel
> >>> >> >> >> we
> >>> >> >> >> > can also create a adsense account and link it with the
> >>>youtube
> >>> >> >> account.
> >>> >> >> >> > Just in case views and subscriptions grow(in turn
> >>> >>advertisements),
> >>> >> >> >> > financially it may help the community. Just a thought.
> >>> >> >> >> >
> >>> >> >> >> > On Thu, Apr 7, 2016 at 3:59 AM, OmPrakash Muppirala <
> >>> >> >> >> bigosma...@gmail.com>
> >>> >> >> >> > wrote:
> >>> >> >> >> >
> >>> >> >> >> > > Shubham,
> >>> >> >> >> > >
> >>> >> >> >> > > This would be a good time to create a YouTube channel for
> >>> >>Apache
> >>> >> >> Flex.
> >>> >>