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

Yesterday

  • 33 hours ago
    issue 133 (Request for StringUtil.contains) reported by to.srwn   -   I would appreciate a "contains" method for Strings similiar to the Java method. Basically it would like this: public static function contains(s1:String, s2:String):Boolean { return s1.indexOf(s2) > -1; }
    I would appreciate a "contains" method for Strings similiar to the Java method. Basically it would like this: public static function contains(s1:String, s2:String):Boolean { return s1.indexOf(s2) > -1; }

Last 7 days

  • Dec 16, 2009
    issue 132 (JSONEncoder bug on UTF-8 chars) reported by alexis.a...@gmail.com   -   What steps will reproduce the problem? 1. var enc:String = JSON.encode( "éè" ); What is the expected output? What do you see instead? Expected: "\u00e9\u00e8" Encoder doesn't produce accurate json notation Please use labels and text to provide additional information. Simply replace: http://code.google.com/p/as3corelib/source/browse/trunk/src/com/adobe/serialization/json/J SONEncoder.as#163 By if ( ch < ' ' || ch > '}' ) { // get the hex digit(s) of the character (either 1 or 2 digits) var hexCode:String = ch.charCodeAt( 0 ).toString( 16 ); // ensure that there are 4 digits by adjusting // the # of zeros accordingly. while( hexCode.length < 4 ) { hexCode = "0"+hexCode; } // create the unicode escape sequence with 4 hex digits s += "\\u" + hexCode; } else { // no need to do any special encoding, just pass-through s += ch; }
    What steps will reproduce the problem? 1. var enc:String = JSON.encode( "éè" ); What is the expected output? What do you see instead? Expected: "\u00e9\u00e8" Encoder doesn't produce accurate json notation Please use labels and text to provide additional information. Simply replace: http://code.google.com/p/as3corelib/source/browse/trunk/src/com/adobe/serialization/json/J SONEncoder.as#163 By if ( ch < ' ' || ch > '}' ) { // get the hex digit(s) of the character (either 1 or 2 digits) var hexCode:String = ch.charCodeAt( 0 ).toString( 16 ); // ensure that there are 4 digits by adjusting // the # of zeros accordingly. while( hexCode.length < 4 ) { hexCode = "0"+hexCode; } // create the unicode escape sequence with 4 hex digits s += "\\u" + hexCode; } else { // no need to do any special encoding, just pass-through s += ch; }

Last 30 days

  • Dec 07, 2009
    issue 131 (PSD parser) reported by nuthinking   -   It would be GREAT if Adobe will provide an AS3 class to read and write PSD files for open-source projects. Best, chr
    It would be GREAT if Adobe will provide an AS3 class to read and write PSD files for open-source projects. Best, chr
  • Nov 23, 2009
    issue 130 (BSD License ) reported by sohail30   -   I am developing a flash player that uses this library. To my knowledge BSD license requires that I distribute it with binaries or the source code. Since that player will be running in the browser when the user clicks on the page. I don't know how I can distribute the license in some text form. Any ideas??
    I am developing a flash player that uses this library. To my knowledge BSD license requires that I distribute it with binaries or the source code. Since that player will be running in the browser when the user clicks on the page. I don't know how I can distribute the license in some text form. Any ideas??

Earlier this year

  • Nov 20, 2009
    issue 119 (JSONParseError: Unexpected o encountered) commented on by pe...@mopics.nl   -   here's some code that gives this Error :
    here's some code that gives this Error :
  • Nov 19, 2009
    issue 129 (Source error in FileMonitorEvent.as) Status changed by mikechambers   -   Fixed in commit 113
    Status: Fixed
    Fixed in commit 113
    Status: Fixed
  • Nov 19, 2009
    r113 (fixing issue 129, constructor argument named incorrectly) committed by mikechambers   -   fixing issue 129 , constructor argument named incorrectly
    fixing issue 129 , constructor argument named incorrectly
  • Nov 19, 2009
    issue 129 (Source error in FileMonitorEvent.as) reported by avalo...@lineacontinua.com   -   At line 16 there is "ancelable" instead of "cancelable". **************** What steps will reproduce the problem? 1. 2. 3. What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below.
    At line 16 there is "ancelable" instead of "cancelable". **************** What steps will reproduce the problem? 1. 2. 3. What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below.
  • Nov 13, 2009
    issue 98 (EncryptionKeyGenerator is not included in the library) commented on by chan.matthew   -   You can always download the source code and build the library yourself. There is a script provided to do that.
    You can always download the source code and build the library yourself. There is a script provided to do that.
  • Nov 09, 2009
    issue 98 (EncryptionKeyGenerator is not included in the library) commented on by handi.tan   -   I hope that EncryptionKeyGenerator class just got accidentally removed instead of permantently removed.
    I hope that EncryptionKeyGenerator class just got accidentally removed instead of permantently removed.
  • Oct 02, 2009
    issue 128 (DateUtil#parseW3CDTF cannot be used in ActionScript-only pro...) reported by actionscribe   -   What steps will reproduce the problem? 1. Create a non-Flex (i.e. ActionScript-only project) 2. Include as3corelib.swc in the project 3. Invoke DateUtil.parseW3CDTF(); What is the expected output? What do you see instead? Expect project to compile without errors, but Resource bundle errors are thrown by MXMLC.exe (because DateUtil references mx.formatters.DateBase) Please provide any additional information below. Please refactor out dependencies on the Flex framework.
    What steps will reproduce the problem? 1. Create a non-Flex (i.e. ActionScript-only project) 2. Include as3corelib.swc in the project 3. Invoke DateUtil.parseW3CDTF(); What is the expected output? What do you see instead? Expect project to compile without errors, but Resource bundle errors are thrown by MXMLC.exe (because DateUtil references mx.formatters.DateBase) Please provide any additional information below. Please refactor out dependencies on the Flex framework.
  • Oct 01, 2009
    Main Wiki page commented on by anil.kadimisetty   -   I am trying to use the JSON API to encode decode the data. I get the below run time error: ReferenceError: Error #1065: Variable {"id":646,"method":"getInfo","jsonrpc":"2","params":[]} is not defined. at global/flash.utils::getDefinitionByName() at mx.utils::DescribeTypeCache$/describeType()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\utils\DescribeTypeCache.as:95] at mx.utils::ObjectUtil$/getClassInfo()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\utils\ObjectUtil.as:829] at mx.rpc.http::HTTPService/send()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\http\HTTPService.as:710] at mx.rpc.http.mxml::HTTPService/send()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\http\mxml\HTTPService.as:232] at Px2try/doLogin()[C:\Documents and Settings\anilk\workspace\Px2try\src\Px2try.mxml:30] at Px2try/___Px2try_Application1_creationComplete()[C:\Documents and Settings\anilk\workspace\Px2try\src\Px2try.mxml:3] at flash.events::EventDispatcher/dispatchEventFunction() at flash.events::EventDispatcher/dispatchEvent() at mx.core::UIComponent/dispatchEvent()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UIComponent.as:9298] at mx.core::UIComponent/set initialized()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UIComponent.as:1169] at mx.managers::LayoutManager/doPhasedInstantiation()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\managers\LayoutManager.as:718] at Function/http://adobe.com/AS3/2006/builtin::apply() at mx.core::UIComponent/callLaterDispatcher2()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UIComponent.as:8628] at mx.core::UIComponent/callLaterDispatcher()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UIComponent.as:8568] The code is as shown below:- <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns="*" creationComplete="doLogin()"> <mx:Script> <![CDATA[ import mx.controls.Alert; import mx.rpc.events.FaultEvent; import mx.collections.ArrayCollection; import com.adobe.serialization.json.JSON; import mx.rpc.events.ResultEvent; private function resultHandler(event:ResultEvent):void { var rawData:String = event.result.toString(); var arr:Array = (JSON.decode(rawData) as Array); var arrCol:ArrayCollection = new ArrayCollection(arr); trace(arrCol); } private function faultHandler(event:FaultEvent):void { Alert.show(event.fault.toString()); } public function doLogin():void { var obj:Object = {"jsonrpc":"2","method":"getInfo","params":[],"id":646}; var req:String = JSON.encode(obj); trace(req); service.send(req); } ]]> </mx:Script> <mx:HTTPService id="service" resultFormat="text" url="http://px2-demo.peppercon.de/auth/user/admin" result="resultHandler(event)" fault="faultHandler(event)" /> </mx:Application> I added the swc to the library path manually. Please let me know what am I missing. Thanks in Advance, Anil
    I am trying to use the JSON API to encode decode the data. I get the below run time error: ReferenceError: Error #1065: Variable {"id":646,"method":"getInfo","jsonrpc":"2","params":[]} is not defined. at global/flash.utils::getDefinitionByName() at mx.utils::DescribeTypeCache$/describeType()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\utils\DescribeTypeCache.as:95] at mx.utils::ObjectUtil$/getClassInfo()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\utils\ObjectUtil.as:829] at mx.rpc.http::HTTPService/send()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\http\HTTPService.as:710] at mx.rpc.http.mxml::HTTPService/send()[C:\autobuild\3.2.0\frameworks\projects\rpc\src\mx\rpc\http\mxml\HTTPService.as:232] at Px2try/doLogin()[C:\Documents and Settings\anilk\workspace\Px2try\src\Px2try.mxml:30] at Px2try/___Px2try_Application1_creationComplete()[C:\Documents and Settings\anilk\workspace\Px2try\src\Px2try.mxml:3] at flash.events::EventDispatcher/dispatchEventFunction() at flash.events::EventDispatcher/dispatchEvent() at mx.core::UIComponent/dispatchEvent()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UIComponent.as:9298] at mx.core::UIComponent/set initialized()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UIComponent.as:1169] at mx.managers::LayoutManager/doPhasedInstantiation()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\managers\LayoutManager.as:718] at Function/http://adobe.com/AS3/2006/builtin::apply() at mx.core::UIComponent/callLaterDispatcher2()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UIComponent.as:8628] at mx.core::UIComponent/callLaterDispatcher()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UIComponent.as:8568] The code is as shown below:- <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns="*" creationComplete="doLogin()"> <mx:Script> <![CDATA[ import mx.controls.Alert; import mx.rpc.events.FaultEvent; import mx.collections.ArrayCollection; import com.adobe.serialization.json.JSON; import mx.rpc.events.ResultEvent; private function resultHandler(event:ResultEvent):void { var rawData:String = event.result.toString(); var arr:Array = (JSON.decode(rawData) as Array); var arrCol:ArrayCollection = new ArrayCollection(arr); trace(arrCol); } private function faultHandler(event:FaultEvent):void { Alert.show(event.fault.toString()); } public function doLogin():void { var obj:Object = {"jsonrpc":"2","method":"getInfo","params":[],"id":646}; var req:String = JSON.encode(obj); trace(req); service.send(req); } ]]> </mx:Script> <mx:HTTPService id="service" resultFormat="text" url="http://px2-demo.peppercon.de/auth/user/admin" result="resultHandler(event)" fault="faultHandler(event)" /> </mx:Application> I added the swc to the library path manually. Please let me know what am I missing. Thanks in Advance, Anil
  • Sep 26, 2009
    issue 84 (Serialization of dynamic class doesn't serialize correctly.) commented on by bungeye   -   You can just remove the top level if statement, that begins with if ( classInfo.@name.toString() == "Object" ); Properties gathered by the for(var prop:String in object) loop are not exposed in the class definition xml. so you don't get a double up. There is also a "IsDynamic" flag on the class definition xml if you really want to look into it.
    You can just remove the top level if statement, that begins with if ( classInfo.@name.toString() == "Object" ); Properties gathered by the for(var prop:String in object) loop are not exposed in the class definition xml. so you don't get a double up. There is also a "IsDynamic" flag on the class definition xml if you really want to look into it.
  • Sep 24, 2009
    issue 127 (ResourceCache doesn't have functionality to allow adding tim...) commented on by flashtronaut   -   I added some description of the changes I made on my blog: http://blog.flashtronaut.com/2009/09/24/contribution-to-the-as3corelib-resourcecache- class/
    I added some description of the changes I made on my blog: http://blog.flashtronaut.com/2009/09/24/contribution-to-the-as3corelib-resourcecache- class/
  • Sep 23, 2009
    issue 127 (ResourceCache doesn't have functionality to allow adding tim...) commented on by flashtronaut   -   I updated my update :) I added a method called "callbackRetrieve" that works exactly the same as the normal "retrieve" except that it takes a callback function as an extra argument and it calls that callback function with the loaded file as an argument once the file is ready. Since each callbackRetrieve method creates a unique loader instance, it may be used to simultaneously retrieve multiple files without having to think about which file is ready once the ResourceCache dispatched an ITEM_READY event. Also added functionality to clean up and remove each loader instance once it's no longer needed.
    I updated my update :) I added a method called "callbackRetrieve" that works exactly the same as the normal "retrieve" except that it takes a callback function as an extra argument and it calls that callback function with the loaded file as an argument once the file is ready. Since each callbackRetrieve method creates a unique loader instance, it may be used to simultaneously retrieve multiple files without having to think about which file is ready once the ResourceCache dispatched an ITEM_READY event. Also added functionality to clean up and remove each loader instance once it's no longer needed.
  • Sep 23, 2009
    issue 127 (ResourceCache doesn't have functionality to allow adding tim...) reported by flashtronaut   -   Currently the ResourceCache does not allow for cached items to have information on when the item should be reloaded from the server. I made a version that supports this functionality. Adding timeouts is optional and the class can be used in the exact same way as before. When the storage directory is set, a Dictionary with the files of the folder is created for fast checkup of cached files I also added more events and added event metadata to the main class ITEM_EXPIRED ITEM_LOADING ITEM_LOAD_PROGRESS ITEM_LOAD_FAILED CACHE_CLEARED CACHE_REFRESHED CACHE_REFRESHING Mikko Tormala flashtronaut.com
    Currently the ResourceCache does not allow for cached items to have information on when the item should be reloaded from the server. I made a version that supports this functionality. Adding timeouts is optional and the class can be used in the exact same way as before. When the storage directory is set, a Dictionary with the files of the folder is created for fast checkup of cached files I also added more events and added event metadata to the main class ITEM_EXPIRED ITEM_LOADING ITEM_LOAD_PROGRESS ITEM_LOAD_FAILED CACHE_CLEARED CACHE_REFRESHED CACHE_REFRESHING Mikko Tormala flashtronaut.com
  • Sep 23, 2009
    issue 120 (Drop support for Flash Player 9) commented on by mitsuru.takeuchi   -   If you don't want to maintain 2 branches, I want you to maintain FP10 version and leave FP9 version as previous version. The reason is: 1. Maybe FP9 (this means, "previous Flash Player version") version of as3corelib will be added new features. 2. I want to know the merit of new features. 3. Because as3corelib is under new BSD license, other developers can develop previous version of Flash Player if needed.
    If you don't want to maintain 2 branches, I want you to maintain FP10 version and leave FP9 version as previous version. The reason is: 1. Maybe FP9 (this means, "previous Flash Player version") version of as3corelib will be added new features. 2. I want to know the merit of new features. 3. Because as3corelib is under new BSD license, other developers can develop previous version of Flash Player if needed.
  • Sep 22, 2009
    issue 49 (JPGEncoder Poor Performance) changed by mikechambers   -  
    Status: Accepted
    Owner: thibault.imbert
    Labels: Priority-High Priority-Low
    Status: Accepted
    Owner: thibault.imbert
    Labels: Priority-High Priority-Low
  • Sep 22, 2009
    issue 18 (Need to add SHA512 Class) Status changed by mikechambers   -   We can leave this to as3crypto: http://code.google.com/p/as3crypto/
    Status: WontFix
    We can leave this to as3crypto: http://code.google.com/p/as3crypto/
    Status: WontFix
  • Sep 22, 2009
    issue 17 (Need SHA 384 Class) Status changed by mikechambers   -   We can leave this to as3crypto: http://code.google.com/p/as3crypto/
    Status: WontFix
    We can leave this to as3crypto: http://code.google.com/p/as3crypto/
    Status: WontFix
  • Sep 22, 2009
    issue 122 (Create interface for image encoding) commented on by mikechambers   -   Note, one thing to consider when thinking about whether we have a static encode method, or require the use the create an instance of the encoding class, is whether we plan to eventually support an asynchronous encode method / api. RIght now, I think this would be useful as encoding can be pretty CPU intensive, although some of the performance improvements we are considering might not make this as important. Anyways, we should consider this when designing the interface / api.
    Note, one thing to consider when thinking about whether we have a static encode method, or require the use the create an instance of the encoding class, is whether we plan to eventually support an asynchronous encode method / api. RIght now, I think this would be useful as encoding can be pretty CPU intensive, although some of the performance improvements we are considering might not make this as important. Anyways, we should consider this when designing the interface / api.
  • Sep 22, 2009
    issue 23 (Standardize the API for image encoders) changed by mikechambers   -  
    Owner: thibault.imbert
    Labels: Priority-High Priority-Medium
    Owner: thibault.imbert
    Labels: Priority-High Priority-Medium
  • Sep 22, 2009
    issue 88 (Detaied package overview) changed by mikechambers   -  
    Status: Accepted
    Labels: Priority-Low
    Status: Accepted
    Labels: Priority-Low
  • Sep 22, 2009
    issue 91 (DateUtil.toW3CDTF shifts milliseconds if millis<100) changed by mikechambers   -  
    Status: Accepted
    Owner: mikechambers
    Status: Accepted
    Owner: mikechambers
  • Sep 22, 2009
    issue 92 (Allow UTC instead of time zone offset in DateUtil.toW3CDTF) changed by mikechambers   -  
    Status: Accepted
    Owner: mikechambers
    Status: Accepted
    Owner: mikechambers
  • Sep 22, 2009
    issue 96 (Current download doesn't work on Windows systems) Status changed by mikechambers   -   What doesnt work? The zip file?
    Status: NeedMoreInfo
    What doesnt work? The zip file?
    Status: NeedMoreInfo
  • Sep 22, 2009
    issue 102 (AS3 JPGEncoder not work) Status changed by mikechambers   -   Can you post an example so we can reproduce the issue?
    Status: NeedMoreInfo
    Can you post an example so we can reproduce the issue?
    Status: NeedMoreInfo
  • Sep 22, 2009
    issue 122 (Create interface for image encoding) Owner changed by mikechambers   -  
    Owner: thibault.imbert
    Owner: thibault.imbert
  • Sep 22, 2009
    issue 112 (FileTarget class don't output logs to file formated as expec...) commented on by mikechambers   -   Fixed. Committed revision 112. Thanks for the report and patch.
    Fixed. Committed revision 112. Thanks for the report and patch.
  • Sep 22, 2009
    issue 112 (FileTarget class don't output logs to file formated as expec...) Status changed by mikechambers   -   This issue was closed by revision r112.
    Status: Fixed
    This issue was closed by revision r112.
    Status: Fixed
  • Sep 22, 2009
    r112 (Fixed issue #112.) committed by mikechambers   -   Fixed issue #112 .
  • Sep 22, 2009
    issue 113 (Code causes errors in FDT due to inappropriate use of 'final...) commented on by mikechambers   -   Fixed. Committed revision 111. Thanks for the report and patch.
    Fixed. Committed revision 111. Thanks for the report and patch.
  • Sep 22, 2009
    issue 113 (Code causes errors in FDT due to inappropriate use of 'final...) Status changed by mikechambers   -   This issue was closed by revision r111.
    Status: Fixed
    This issue was closed by revision r111.
    Status: Fixed
  • Sep 22, 2009
    r111 (Fixed issue #113.) committed by mikechambers   -   Fixed issue #113 .
  • Sep 22, 2009
    issue 115 (DateUtil.parseW3CDTF parses incorrectly when time has more t...) commented on by mikechambers   -   Fix. Committed revision 110. Thanks for the report and patch.
    Fix. Committed revision 110. Thanks for the report and patch.
  • Sep 22, 2009
    issue 115 (DateUtil.parseW3CDTF parses incorrectly when time has more t...) Status changed by mikechambers   -   This issue was closed by revision r110.
    Status: Fixed
    This issue was closed by revision r110.
    Status: Fixed
  • Sep 22, 2009
    r110 (Updated unit test to reproduce issue #115 Fixed issue #115) committed by mikechambers   -   Updated unit test to reproduce issue #115 Fixed issue #115
    Updated unit test to reproduce issue #115 Fixed issue #115
  • Sep 22, 2009
    issue 87 (StringUtil.replace Performance Comparison) Status changed by mikechambers   -   Fixed. Committed revision 109.
    Status: Fixed
    Fixed. Committed revision 109.
    Status: Fixed
  • Sep 22, 2009
    r109 (Changed replace implementation per issue #87 http://code.goo...) committed by mikechambers   -   Changed replace implementation per issue #87 http://code.google.com/p/as3corelib/issues/detail?id=87
  • Sep 22, 2009
    issue 126 (Implement clone tests) Status changed by mikechambers   -   Fixed in revision 108.
    Status: Fixed
    Fixed in revision 108.
    Status: Fixed
  • Sep 22, 2009
    r108 (Refactored com.adobe.protocols.dict.* to use events in a way...) committed by mikechambers   -   Refactored com.adobe.protocols.dict.* to use events in a way more consitent with rest of library and ActionScript. Added test cases for all dict events.
    Refactored com.adobe.protocols.dict.* to use events in a way more consitent with rest of library and ActionScript. Added test cases for all dict events.
  • Sep 21, 2009
    issue 3 (JSON cannot encode/decode date instances correctly) commented on by gmariani405   -   Is any progress being made to this? It's been an issue for going on 3 years.
    Is any progress being made to this? It's been an issue for going on 3 years.
  • Sep 21, 2009
    issue 120 (Drop support for Flash Player 9) commented on by troy.gilbert   -   My clients are still requiring FP9 for a lot of stuff, so definitely keep a branch around for bug fixes.
    My clients are still requiring FP9 for a lot of stuff, so definitely keep a branch around for bug fixes.
  • Sep 21, 2009
    issue 120 (Drop support for Flash Player 9) commented on by mdw1980   -   Definitely branch it.
    Definitely branch it.
  • Sep 21, 2009
    r107 (Removed a trace call.) committed by mikechambers   -   Removed a trace call.
    Removed a trace call.
  • Sep 21, 2009
    r106 (Implemented clone method, and unit test for it.) committed by mikechambers   -   Implemented clone method, and unit test for it.
    Implemented clone method, and unit test for it.
  • Sep 21, 2009
    r105 (removed trace accidentally left in.) committed by mikechambers   -   removed trace accidentally left in.
    removed trace accidentally left in.
  • Sep 21, 2009
    r104 (Changed script reference to CoreLibTestRunnerClass.as) committed by mikechambers   -   Changed script reference to CoreLibTestRunnerClass.as
    Changed script reference to CoreLibTestRunnerClass.as
  • Sep 21, 2009
    r103 (renaming CoreLibTestRunner_script to CoreLibTestRunnerClass....) committed by mikechambers   -   renaming CoreLibTestRunner_script to CoreLibTestRunnerClass. Removing duplicate copy of CoreLibTestRunner
    renaming CoreLibTestRunner_script to CoreLibTestRunnerClass. Removing duplicate copy of CoreLibTestRunner
  • Sep 21, 2009
    r102 (Added a couple of additional property checks in the clone te...) committed by mikechambers   -   Added a couple of additional property checks in the clone test.
    Added a couple of additional property checks in the clone test.
 
Hosted by Google Code