My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Older

  • Sep 16, 2009
    Changes Wiki page edited by dani...@neophi.com   -   Revision r56 Edited wiki page through web user interface.
    Revision r56 Edited wiki page through web user interface.
  • Sep 16, 2009
    r55 (Tagging 1.2.3) committed by dani...@neophi.com   -   Tagging 1.2.3
    Tagging 1.2.3
  • Sep 16, 2009
    Antennae-1.2.3.zip (Antennae Version 1.2.3) file uploaded by dani...@neophi.com   -  
    Labels: Featured OpSys-All Type-Archive
    Labels: Featured OpSys-All Type-Archive
  • Sep 16, 2009
    Antennae1dot2dot2 Wiki page edited by dani...@neophi.com   -   Revision r54 Edited wiki page through web user interface.
    Revision r54 Edited wiki page through web user interface.
  • Sep 16, 2009
    Antennae1dot2dot3 Wiki page added by dani...@neophi.com   -   Revision r53 Created wiki page through web user interface.
    Revision r53 Created wiki page through web user interface.
  • Sep 16, 2009
    r52 (Fix typo in changes.txt) committed by dani...@neophi.com   -   Fix typo in changes.txt
    Fix typo in changes.txt
  • Sep 16, 2009
    Antennae-1.2.3.zip (Antennae-1.2.3.zip) file uploaded by dani...@neophi.com   -  
    Labels: Featured OpSys-All Type-Archive
    Labels: Featured OpSys-All Type-Archive
  • Sep 16, 2009
    issue 10 (Sometimes ARC Report Server exits with error before reportin...) Status changed by dani...@neophi.com   -   This issue is fixed in Antennae 1.2.3.
    Status: Fixed
    This issue is fixed in Antennae 1.2.3.
    Status: Fixed
  • Sep 16, 2009
    r51 (Updated changes file. Added new flag to disable the AlwaysFa...) committed by dani...@neophi.com   -   Updated changes file. Added new flag to disable the AlwaysFail test. Update the AIR Test descriptor for 1.5.
    Updated changes file. Added new flag to disable the AlwaysFail test. Update the AIR Test descriptor for 1.5.
  • Sep 16, 2009
    r50 (Fix timing bug in ARCResultPrinter.as. Add AS3 only project ...) committed by dani...@neophi.com   -   Fix timing bug in ARCResultPrinter.as. Add AS3 only project template. Fix testing launch issue for non Mac platforms.
    Fix timing bug in ARCResultPrinter.as. Add AS3 only project template. Fix testing launch issue for non Mac platforms.
  • May 01, 2009
    issue 11 (fearure request: add fcsh support) reported by arnoudb   -   Hi, first of all thanx for the really great build system. It scales nicely and allows for complex dependencies wich i didn't see anywhere else. A proposed improvement. It would be really nice if the anteannae build scripts could use the flex compiler shell in some way. Im building a complex project with modules and different css files. The build system becomes very slow compared to flex builder. This is because for each compile the compiler has to be started up, which is slow. It would be awesome if antannae could make use of the flex compiler shell. Them the compiler would remain in memory and incremental compiles are possible speading up the build system in a great way. There are some opensource solutions that could give a good start but im not a java programmer so for me it's a bit daunting. see: http://labs.adobe.com/wiki/index.php/Flex_Compiler_Shell http://labs.adobe.com/wiki/index.php/Talk:Flex_Compiler_Shell http://sourceforge.net/projects/fcshwrapper/ would be cool!
    Hi, first of all thanx for the really great build system. It scales nicely and allows for complex dependencies wich i didn't see anywhere else. A proposed improvement. It would be really nice if the anteannae build scripts could use the flex compiler shell in some way. Im building a complex project with modules and different css files. The build system becomes very slow compared to flex builder. This is because for each compile the compiler has to be started up, which is slow. It would be awesome if antannae could make use of the flex compiler shell. Them the compiler would remain in memory and incremental compiles are possible speading up the build system in a great way. There are some opensource solutions that could give a good start but im not a java programmer so for me it's a bit daunting. see: http://labs.adobe.com/wiki/index.php/Flex_Compiler_Shell http://labs.adobe.com/wiki/index.php/Talk:Flex_Compiler_Shell http://sourceforge.net/projects/fcshwrapper/ would be cool!
  • Mar 04, 2009
    issue 10 (Sometimes ARC Report Server exits with error before reportin...) changed by dani...@neophi.com   -   Thanks for the bug report and patch on the callback function timing issue. I'm really surprised it ever worked. I'll be including that in the next release of Antennae. Concerning the application exiting logic, I don't plan on including that change. The test harness is designed to be used for automated testing and I don't want to risk having a misbehaved component prevent the test application of exiting once the tests are done.
    Status: Started
    Owner: dani...@neophi.com
    Thanks for the bug report and patch on the callback function timing issue. I'm really surprised it ever worked. I'll be including that in the next release of Antennae. Concerning the application exiting logic, I don't plan on including that change. The test harness is designed to be used for automated testing and I don't want to risk having a misbehaved component prevent the test application of exiting once the tests are done.
    Status: Started
    Owner: dani...@neophi.com
  • Mar 01, 2009
    r49 (Include in distribution a way to rebuild the arc-flexunit pr...) committed by dani...@neophi.com   -   Include in distribution a way to rebuild the arc-flexunit project
    Include in distribution a way to rebuild the arc-flexunit project
  • Jan 23, 2009
    issue 10 (Sometimes ARC Report Server exits with error before reportin...) commented on by nvihinen   -   Also, this change to RunAirTests.mxml follows adobe's Air App exiting recommendations: /** * Kick off the tests. */ public function runTests():void { var callback:Function = function():void{applicationExit();}; ARCTestRunner.run(@arc-flexunit.alltests.suite@, "@arc-flexunit.reportserver.host@", @arc-flexunit.reportserver.port@, callback); } private function applicationExit() { var exitingEvent = new flash.events.Event(flash.events.Event.EXITING, false, true); flash.desktop.NativeApplication.nativeApplication.dispatchEvent(exitingEvent); if (!exitingEvent.isDefaultPrevented()) { flash.desktop.NativeApplication.nativeApplication.exit(); } }
    Also, this change to RunAirTests.mxml follows adobe's Air App exiting recommendations: /** * Kick off the tests. */ public function runTests():void { var callback:Function = function():void{applicationExit();}; ARCTestRunner.run(@arc-flexunit.alltests.suite@, "@arc-flexunit.reportserver.host@", @arc-flexunit.reportserver.port@, callback); } private function applicationExit() { var exitingEvent = new flash.events.Event(flash.events.Event.EXITING, false, true); flash.desktop.NativeApplication.nativeApplication.dispatchEvent(exitingEvent); if (!exitingEvent.isDefaultPrevented()) { flash.desktop.NativeApplication.nativeApplication.exit(); } }
  • Jan 23, 2009
    issue 10 (Sometimes ARC Report Server exits with error before reportin...) reported by nvihinen   -   What steps will reproduce the problem? 1. Run an Air Flexunit App with Antennae What is the expected output? What do you see instead? The expected output would be either a informational failure message, including the number of successful and failed tests, or a failed build reporting the reason why. Instead, the ARC Unit Test Report server sometimes doesn't receive notification of the results. The Report Server java process exits with code 1. The build fails because of this return code, but doesn't give any useful information. What version of the product are you using? On what operating system? Using trunk on Linux. Please provide any additional information below. This doesn't seem to be reproducible on mac. But is very reliable on RHEL. The fix is to call the optional AIR callback method at the end of the results printing handler. # svn diff arc-flexunit/flex/com/allurent/flexunit/framework/ARCResultPrinter.as Index: arc-flexunit/flex/com/allurent/flexunit/framework/ARCResultPrinter.as =================================================================== --- arc-flexunit/flex/com/allurent/flexunit/framework/ARCResultPrinter.as (revision 48) +++ arc-flexunit/flex/com/allurent/flexunit/framework/ARCResultPrinter.as (working copy) @@ -154,10 +154,6 @@ var runTime:int = endTime - _testsStartTime; prepareReport(runTime); sendReport(); - if (_callbackOnAllTestsEnd != null) - { - _callbackOnAllTestsEnd(); - } } /** @@ -355,6 +351,12 @@ _theSocket.close(); fscommand("quit", ""); + + // Finally, call any callback once we've reported to the report server. + if (_callbackOnAllTestsEnd != null) + { + _callbackOnAllTestsEnd(); + } } } }
    What steps will reproduce the problem? 1. Run an Air Flexunit App with Antennae What is the expected output? What do you see instead? The expected output would be either a informational failure message, including the number of successful and failed tests, or a failed build reporting the reason why. Instead, the ARC Unit Test Report server sometimes doesn't receive notification of the results. The Report Server java process exits with code 1. The build fails because of this return code, but doesn't give any useful information. What version of the product are you using? On what operating system? Using trunk on Linux. Please provide any additional information below. This doesn't seem to be reproducible on mac. But is very reliable on RHEL. The fix is to call the optional AIR callback method at the end of the results printing handler. # svn diff arc-flexunit/flex/com/allurent/flexunit/framework/ARCResultPrinter.as Index: arc-flexunit/flex/com/allurent/flexunit/framework/ARCResultPrinter.as =================================================================== --- arc-flexunit/flex/com/allurent/flexunit/framework/ARCResultPrinter.as (revision 48) +++ arc-flexunit/flex/com/allurent/flexunit/framework/ARCResultPrinter.as (working copy) @@ -154,10 +154,6 @@ var runTime:int = endTime - _testsStartTime; prepareReport(runTime); sendReport(); - if (_callbackOnAllTestsEnd != null) - { - _callbackOnAllTestsEnd(); - } } /** @@ -355,6 +351,12 @@ _theSocket.close(); fscommand("quit", ""); + + // Finally, call any callback once we've reported to the report server. + if (_callbackOnAllTestsEnd != null) + { + _callbackOnAllTestsEnd(); + } } } }
  • Nov 04, 2008
    issue 9 (new properties for mxmlc task needed for integration with bl...) reported by mich...@michielrop.nl   -   What is the expected output? What do you see instead? Expected is to be able to use context-root and services in the mxmlc task. Please add it to the next release: I updated the build-common-tasks: <macrodef name="mxmlc" description=""> <attribute name="src" /> <attribute name="dest" /> <attribute name="src.path" default="" /> <attribute name="lib.path.id" default="flex.lib.path" /> <attribute name="options" default="" /> <attribute name="config" default="" /> <attribute name="context-root" default="" /> <attribute name="services" default=""/> <sequential> <fail> <condition> <not> <isreference refid="@{lib.path.id}" /> </not> </condition> </fail> <pathconvert property="_mxmlc.lib.files" refid="@{lib.path.id}" pathsep="," /> <condition property="_mxmlc.libpath" value='-library-path+=""' else=""> <not> <equals arg1="" arg2="" trim="true" /> </not> </condition> <java jar="" dir="." fork="true" failonerror="true"> <jvmarg value="-Xmx512m" /> <arg line="@{options} " /> <arg value="+flexlib=" /> <arg value="-load-config=@{config}" /> <arg value="-source-path=@{src.path}" /> <arg value="-file-specs=@{src}" /> <arg value="-output=@{dest}" /> <arg value="-compiler.context-root=@{context-root}"/> <arg value="-compiler.services=@{services}"/> </java> </sequential> </macrodef> build-common-targets: <target name="flex-application" depends="init,flex-application-check,flex-application-copy" unless=".compiled" description="Compile the application"> <mxmlc src="/" dest="/" services="" context-root=""> </mxmlc> </target> and build-common-properties: <property name="flex.mxmlc.compiler.services" value=""/> <property name="flex.mxmlc.compiler.context-root=/seamserver" value=""/>
    What is the expected output? What do you see instead? Expected is to be able to use context-root and services in the mxmlc task. Please add it to the next release: I updated the build-common-tasks: <macrodef name="mxmlc" description=""> <attribute name="src" /> <attribute name="dest" /> <attribute name="src.path" default="" /> <attribute name="lib.path.id" default="flex.lib.path" /> <attribute name="options" default="" /> <attribute name="config" default="" /> <attribute name="context-root" default="" /> <attribute name="services" default=""/> <sequential> <fail> <condition> <not> <isreference refid="@{lib.path.id}" /> </not> </condition> </fail> <pathconvert property="_mxmlc.lib.files" refid="@{lib.path.id}" pathsep="," /> <condition property="_mxmlc.libpath" value='-library-path+=""' else=""> <not> <equals arg1="" arg2="" trim="true" /> </not> </condition> <java jar="" dir="." fork="true" failonerror="true"> <jvmarg value="-Xmx512m" /> <arg line="@{options} " /> <arg value="+flexlib=" /> <arg value="-load-config=@{config}" /> <arg value="-source-path=@{src.path}" /> <arg value="-file-specs=@{src}" /> <arg value="-output=@{dest}" /> <arg value="-compiler.context-root=@{context-root}"/> <arg value="-compiler.services=@{services}"/> </java> </sequential> </macrodef> build-common-targets: <target name="flex-application" depends="init,flex-application-check,flex-application-copy" unless=".compiled" description="Compile the application"> <mxmlc src="/" dest="/" services="" context-root=""> </mxmlc> </target> and build-common-properties: <property name="flex.mxmlc.compiler.services" value=""/> <property name="flex.mxmlc.compiler.context-root=/seamserver" value=""/>
  • Oct 08, 2008
    r48 (Tagging 1.2.2) committed by neophi   -   Tagging 1.2.2
    Tagging 1.2.2
  • Oct 08, 2008
  • Oct 08, 2008
    Changes Wiki page edited by dani...@neophi.com
  • Oct 08, 2008
  • Oct 08, 2008
  • Oct 08, 2008
    r43 (Updated to latest version of FlexUnit.swc available from Ado...) committed by neophi   -   Updated to latest version of FlexUnit.swc available from Adobe's Open Source Site. Added ignores for files that get copied in during dist build.
    Updated to latest version of FlexUnit.swc available from Adobe's Open Source Site. Added ignores for files that get copied in during dist build.
  • Jul 25, 2008
    r42 (Fix a couple of typos) committed by neophi   -   Fix a couple of typos
    Fix a couple of typos
  • Jul 25, 2008
    Antennae1dot2dot0 Wiki page edited by neophi
  • Jul 25, 2008
    Antennae1dot2dot1 Wiki page added by neophi
  • Jul 25, 2008
    Changes Wiki page edited by neophi
  • Jul 25, 2008
    issue 7 (Test AIR Apps) changed by neophi   -   Thanks for the patch. It will be included it in the next release of Antennae.
    Status: Fixed
    Owner: neophi
    Thanks for the patch. It will be included it in the next release of Antennae.
    Status: Fixed
    Owner: neophi
  • Jul 25, 2008
    r38 (Fix EOL. Remove files from Antennae/lib directory that are s...) committed by neophi   -   Fix EOL. Remove files from Antennae/lib directory that are sourced elsewhere.
    Fix EOL. Remove files from Antennae/lib directory that are sourced elsewhere.
  • Jul 23, 2008
    r37 (Finish updates to CHANGES document. Move location of interna...) committed by neophi   -   Finish updates to CHANGES document. Move location of internal testing document for template projects. Fix small typo in targets file. Add template for creating a new CHANGES section.
    Finish updates to CHANGES document. Move location of internal testing document for template projects. Fix small typo in targets file. Add template for creating a new CHANGES section.
 
Hosted by Google Code