Re: Closure compiler CompilationLevel

2015-12-30 Thread Alex Harui
On 12/30/15, 10:31 PM, "Andy Dufilie" wrote: >On Wed, Dec 30, 2015 at 1:05 PM, Alex Harui wrote: > >> Try: -js-compiler-option="--compilation_level WHITESPACE_ONLY" > > >That worked after fixing the special characters. Is there a place that >options like this are documented? Hmm. I guess not

[GitHub] flex-falcon pull request: updated test cases with labeled for-each...

2015-12-30 Thread adufilie
GitHub user adufilie opened a pull request: https://github.com/apache/flex-falcon/pull/3 updated test cases with labeled for-each loops See https://issues.apache.org/jira/browse/FLEX-34984?focusedCommentId=15075728&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpane

[GitHub] flex-falcon pull request: Updating assertion to preserve code beha...

2015-12-30 Thread adufilie
GitHub user adufilie opened a pull request: https://github.com/apache/flex-falcon/pull/2 Updating assertion to preserve code behavior See https://github.com/apache/flex-falcon/commit/3971196a4478853e1fd443e21e011ee1b8ea14c8#commitcomment-15157562 You can merge this pull request int

Re: Closure compiler CompilationLevel

2015-12-30 Thread Andy Dufilie
On Wed, Dec 30, 2015 at 1:05 PM, Alex Harui wrote: > Try: -js-compiler-option="--compilation_level WHITESPACE_ONLY" That worked after fixing the special characters. Is there a place that options like this are documented? Now that I'm compiling via flexjs/js/bin/mxmlc using the WHITESPACE_ONLY

Re: [FALCONJX][FLEXJS] XML handling (was Re: [FlexJS] Back port)

2015-12-30 Thread Alex Harui
On 12/30/15, 11:59 AM, "Harbs" wrote: >So, myXML.dim:baz = foo: >while compile to myXML.setChild(“dim:baz”,foo) > >Right? > >If so, I can handle that. I haven't tried namespaces, but I would expect that to be the desired result. -Alex

Re: [FALCONJX][FLEXJS] XML handling (was Re: [FlexJS] Back port)

2015-12-30 Thread Alex Harui
If possible, try to break up things into "beads" that are replaceable, so folks can swap in different behaviors if needed. A flag ends up bringing in code for all behaviors, "just in case". -Alex On 12/30/15, 3:45 PM, "Harbs" wrote: >DOMParser allows for more graceful handling of XML parsing e

[GitHub] flex-falcon pull request: Changed `dirname $0` to `dirname "$0"` t...

2015-12-30 Thread adufilie
Github user adufilie commented on the pull request: https://github.com/apache/flex-falcon/pull/1#issuecomment-168127810 See https://issues.apache.org/jira/browse/FLEX-34984?focusedCommentId=15075728&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-15075728

[4.15.0] # Apache Flex SDK 4.15.0 nightly build 150: Successful

2015-12-30 Thread flex . ci . builds
flex-sdk_release-candidate - Build #150 - Successful Changes since last build: No changes For more information, check the console output at http://apacheflexbuild.cloudapp.net:8080/job/flex-sdk_release-candidate/150/.

Re: [FALCONJX][FLEXJS] XML handling (was Re: [FlexJS] Back port)

2015-12-30 Thread Harbs
DOMParser allows for more graceful handling of XML parsing errors than we’re used to in Flash (or classic E4X). I’m not sure the best way to handle this on the JS side. I see three ways to handle errors: 1. I could just do what the Flash runtime does and just throw an error if there’s any kind

Re: [FALCONJX][FLEXJS] XML handling (was Re: [FlexJS] Back port)

2015-12-30 Thread Harbs
So, myXML.dim:baz = foo: while compile to myXML.setChild(“dim:baz”,foo) Right? If so, I can handle that. On Dec 30, 2015, at 8:02 PM, Alex Harui wrote: > > > On 12/30/15, 9:16 AM, "Harbs" wrote: > >> And I’m assuming the signature will be something like this: >> setChild(nameOrQualifiedNam

Re: Closure compiler CompilationLevel

2015-12-30 Thread Alex Harui
Try: -js-compiler-option=“—compilation_level WHITESPACE_ONLY” On 12/30/15, 9:28 AM, "adufilie" wrote: >The forum formatting in my previous message caused part of the text to be >omitted on the mailing list. The full message is below. If the forum >interface happens to omit the quoted text then

Re: [FALCONJX][FLEXJS] XML handling (was Re: [FlexJS] Back port)

2015-12-30 Thread Alex Harui
On 12/30/15, 9:16 AM, "Harbs" wrote: >And I’m assuming the signature will be something like this: >setChild(nameOrQualifiedName:String,xmlOrXmlList:Object) AS: myXML.someChild = someXMLorXMLList; JS: myXML.setChild('someChild', someXMLorXMLList); No idea of that actually is the case or not,

Re: Closure compiler CompilationLevel

2015-12-30 Thread adufilie
The forum formatting in my previous message caused part of the text to be omitted on the mailing list. The full message is below. If the forum interface happens to omit the quoted text then I apologize in advance. adufilie wrote > Is there a way to do this yet? I'm having the same problem - I wan

Re: Closure compiler CompilationLevel

2015-12-30 Thread adufilie
Is there a way to do this yet? I'm having the same problem - I want to be able to specify the compilation level as WHITESPACE_ONLY. I saw reference to "js-closure-compilation-level" in the code , so I t

Re: [FALCONJX][FLEXJS] XML handling (was Re: [FlexJS] Back port)

2015-12-30 Thread Harbs
And I’m assuming the signature will be something like this: setChild(nameOrQualifiedName:String,xmlOrXmlList:Object) On Dec 30, 2015, at 6:13 PM, Harbs wrote: > OK. I think we discussed this, but it’s been a few weeks… ;-) > > The method will accept either an XML or XMLList object. > > On Dec

Re: [FALCONJX][FLEXJS] XML handling (was Re: [FlexJS] Back port)

2015-12-30 Thread Harbs
OK. I think we discussed this, but it’s been a few weeks… ;-) The method will accept either an XML or XMLList object. On Dec 30, 2015, at 5:20 PM, Alex Harui wrote: > For assignment, there will be a call to setChild(). > > On 12/30/15, 3:09 AM, "Harbs" wrote: > >> The past month or so, I’ve

Re: [FALCONJX][FLEXJS] XML handling (was Re: [FlexJS] Back port)

2015-12-30 Thread Alex Harui
For assignment, there will be a call to setChild(). On 12/30/15, 3:09 AM, "Harbs" wrote: >The past month or so, I’ve been side-tracked with lots of things, but I’m >finally back on this. > >I’m not sure what we decided in terms of assignment. AFAIK, there’s no >assignment method in XML for repla

Re: AW: AW: [VOTE] Remove the Ant scripts from BlazeDS?

2015-12-30 Thread Alex Harui
OK, on the apacheflexbuilds CI server, I added a new build that runs the Ant script and it is now successful. I also got the Maven build back to an "operational" state but lots of tests fail there. Some open issues: 1) The Ant build currently builds the same set of jars, but puts them all in a l

Re: [FALCONJX][FLEXJS] XML handling (was Re: [FlexJS] Back port)

2015-12-30 Thread Harbs
The past month or so, I’ve been side-tracked with lots of things, but I’m finally back on this. I’m not sure what we decided in terms of assignment. AFAIK, there’s no assignment method in XML for replacing XML with a specific name with an XMLList. The closest we have is replace() which takes an