[svn:cairngorm3:] 15157: Simplifying the design of the module lib by:

Revision: 15157
Revision: 15157
Author:   [email protected]
Date:     2010-03-31 05:29:35 -0700 (Wed, 31 Mar 2010)
Log Message:
Simplifying the design of the module lib by:
- Refactoring the existing mechanism to support the inter-communication between modules thru a unique identifier.
- Ability to communicate between multiple instances of the same module.
- Removed the LazyLoader which was a temporary workaround.
- Adding a new Metadata which must be used within messages that are inter-communication API messages (to communicate between modules).
- Adding a message pool which basically keep all messages that need to be redirected to a module which is not yet instantiated until the module is available and ready to accept the messages.
- Redo from scratch the ModuleTest application to show the new behaviors.
- Refactored the InSync sample to use the new Module lib.
Modified Paths:
    cairngorm3/trunk/libraries/Module/.actionScriptProperties
    cairngorm3/trunk/libraries/Module/.flexLibProperties
    cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/ModuleInfo.as
    cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/ModuleMessageInterceptor .as
    cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/ParsleyFlexModuleFactory .as
    cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/ParsleyModuleDescriptor. as
    cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/ParsleyModuleInfo.as
    cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/ViewLoader.as
    cairngorm3/trunk/libraries/ModuleTest/.actionScriptProperties
    cairngorm3/trunk/libraries/ModuleTest/.flexProperties
    cairngorm3/trunk/libraries/ModuleTest/src/example/MyViewLoader.mxml
    cairngorm3/trunk/samples/insync/insync-modularExtended-api/.actionScriptProperties
    cairngorm3/trunk/samples/insync/insync-modularExtended-api/.flexLibProperties
    cairngorm3/trunk/samples/insync/insync-modularExtended-api/src/insync/messaging/ComposeMe ssageEvent.as
    cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/insync/contacts/prese ntation/ContactFormPM.as
    cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/src/ComposeMessageModule .mxml
    cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/src/ComposeMessageModule Rig.mxml
    cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/src/insync/messaging/pre sentation/ComposeMessagePM.as
    cairngorm3/trunk/samples/insync/insync-modularExtended-shell/src/InsyncModularExtendedShe ll.mxml
    cairngorm3/trunk/samples/insync/insync-modularExtended-shell/src/insync/InsyncContext.mxm l
    cairngorm3/trunk/samples/insync/insync-modularExtended-shell/src/insync/presentation/Cont entViewStack.mxml
Added Paths:
    cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/CairngormModuleLib.as
    cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/IParsleyModule.as
    cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/ModuleIdMetadata.as
    cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/ModuleMessageDispatcher. as
    cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/ParsleyModuleReadyMessag e.as
    cairngorm3/trunk/libraries/ModuleTest/src/CairngormModuleLibSample.mxml
    cairngorm3/trunk/libraries/ModuleTest/src/CairngormModuleLibSampleContext.mxml
    cairngorm3/trunk/libraries/ModuleTest/src/example/ModulePod.mxml
    cairngorm3/trunk/libraries/ModuleTest/src/example/api/
    cairngorm3/trunk/libraries/ModuleTest/src/example/api/PingMessage.as
    cairngorm3/trunk/libraries/ModuleTest/src/example/moduleA/
    cairngorm3/trunk/libraries/ModuleTest/src/example/moduleA/ModuleA.mxml
    cairngorm3/trunk/libraries/ModuleTest/src/example/moduleA/ModuleAContext.mxml
    cairngorm3/trunk/libraries/ModuleTest/src/example/moduleA/ModuleAPM.as
    cairngorm3/trunk/libraries/ModuleTest/src/example/moduleB/
    cairngorm3/trunk/libraries/ModuleTest/src/example/moduleB/ModuleB.mxml
    cairngorm3/trunk/libraries/ModuleTest/src/example/moduleB/ModuleBContext.mxml
    cairngorm3/trunk/libraries/ModuleTest/src/example/moduleB/ModuleBPM.as
    cairngorm3/trunk/samples/insync/insync-modularExtended-api/src/insync/application/
    cairngorm3/trunk/samples/insync/insync-modularExtended-api/src/insync/application/Content Destination.as
Removed Paths:
    cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/LazyLoader.as
    cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/ModuleDescriptor.as
    cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/StyledModuleDescriptor.a s
    cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/StyledModuleInfo.as
    cairngorm3/trunk/libraries/ModuleTest/src/CairngormModules.mxml
    cairngorm3/trunk/libraries/ModuleTest/src/CairngormModules2.mxml
    cairngorm3/trunk/libraries/ModuleTest/src/example/ExampleContext.mxml
    cairngorm3/trunk/libraries/ModuleTest/src/example/ModuleA.mxml
    cairngorm3/trunk/libraries/ModuleTest/src/example/ModuleB.mxml
    cairngorm3/trunk/libraries/ModuleTest/src/example/parsley/
    cairngorm3/trunk/samples/insync/insync-modularExtended-shell/src/insync/application/Conte ntDestination.as

This may be the same fix that ningunos2010 provided but I got this idea from anthbs's post. I looked up what .exe files the ISim tool used, and then simply took the nt64 files and copied them over to the nt folder so that it wouldn't run the 32 bit ISim but the 64 bit one that anthbs claimed would work. At first it didn't come up with any errors it says the simulation ran successfully but it wouldn't open the actual ISim gui. In order to fix this I went to the ISimgui.exe file and unclicked run as administrator. I'm not sure if that's clicked by default or if I had changed it at some point trying to fix the issue.
Anyway these are the files I copied over from nt64 to nt folder:
fuse.exe
isimgui.exe
vhpcomp.exe
vlogcomp.exe

Similar Messages

  • [svn:cairngorm3:] 19052: migrating the latest lib to flex 4.5.0. 17855 to share the same sdk as the todo sample

    Revision: 19052
    Revision: 19052
    Author:   [email protected]
    Date:     2010-12-06 05:34:03 -0800 (Mon, 06 Dec 2010)
    Log Message:
    migrating the latest lib to flex 4.5.0.17855 to share the same sdk as the todo sample
    Modified Paths:
        cairngorm3/trunk/build-parent/pom.xml

    Hi, those technologies are so cool but I failed to run the sample:
    - I am using Maven 3.0.2.
    Runnung mvn build from the latest source code from trunk "....cairngorm3\samples\todo>mvn install". I got the error relating to "unable to transacoding"
    D:\Java\workspaces\misc\cairngorm3\samples\todo\todo_flex\todo_flex_shell\src\ma
    in\flex\com\adobe\txi\todo\shell\skins\ApplicationHeaderSkin.mxml: Error: unable
    to resolve '/assets/todoLogo_big.png' for transcoding
    D:\Java\workspaces\misc\cairngorm3\samples\todo\todo_flex\todo_flex_shell\src\ma
    in\flex\com\adobe\txi\todo\shell\skins\ApplicationHeaderSkin.mxml: Error: Unable
    to transcode /assets/todoLogo_big.png.
    I shift the assets folder to src/main/flex. It got compiled then I can deploy succesfully into Tomcat 6. But I still get empty screen.
    Do I have to do something else like "run db script", "create DB schema" ?
    Note: my adt.jar is from flex_sdk_4.5.0.17855
    Thanks

  • [svn:cairngorm3:] 15920: Adding the use of Spark component into ModuleC to add the scenario where a Module must be able to get its default spark skin  (currently this is failing due to a bug in the Module Lib)

    Revision: 15920
    Revision: 15920
    Author:   [email protected]
    Date:     2010-05-06 02:11:21 -0700 (Thu, 06 May 2010)
    Log Message:
    Adding the use of Spark component into ModuleC to add the scenario where a Module must be able to get its default spark skin (currently this is failing due to a bug in the Module Lib)
    Modified Paths:
        cairngorm3/trunk/libraries/ModuleTest/src/example/moduleC/ModuleC.mxml

    As the server.xml is big enough, I took the minimum portion of it. Hope u can proceed with it.
    <!-- Tomcat Root Context -->
    <Context path="" docBase="ROOT" debug="0"/>
    <!-- New contexts -->
    <Context path="/xyz" docBase="pathTo_xyz" debug="0" crossContext="true"/>
    <Context path="/pqr" docBase="pathTo_pqr" debug="0" crossContext="true"/>
    <!-- Tomcat Examples Context -->
    <Context path="/examples" docBase="examples" debug="0"
    reloadable="true" crossContext="true">
    You should also provide a WEB-INF folder under pqr or xyz folder.
    You should also provide a web.xml file under each WEB-INF folder.
    The minimal web.xml is
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/j2ee/dtd/web-app_2_3.dtd">
    <web-app>
    </web-app>
    That's it. Try it out. Hope it is OK.
    Hafizur Rahman
    SCJP

  • [svn:cairngorm3:] 16282: committing the CAIRNGORM3 3.0. 11 flex3 libraries to our svn maven repository

    Revision: 16282
    Revision: 16282
    Author:   [email protected]
    Date:     2010-05-21 08:47:54 -0700 (Fri, 21 May 2010)
    Log Message:
    committing the CAIRNGORM3 3.0.11 flex3 libraries to our svn maven repository
    Added Paths:
        cairngorm3/maven-repository/com/adobe/cairngorm/contract-flex3/
        cairngorm3/maven-repository/com/adobe/cairngorm/contract-flex3/1.1/
        cairngorm3/maven-repository/com/adobe/cairngorm/contract-flex3/1.1/contract-flex3-1.1.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/contract-flex3/1.1/contract-flex3-1.1.pom .md5
        cairngorm3/maven-repository/com/adobe/cairngorm/contract-flex3/1.1/contract-flex3-1.1.pom .sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/contract-flex3/1.1/contract-flex3-1.1.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/contract-flex3/1.1/contract-flex3-1.1.swc .md5
        cairngorm3/maven-repository/com/adobe/cairngorm/contract-flex3/1.1/contract-flex3-1.1.swc .sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/contract-flex3/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/contract-flex3/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/contract-flex3/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integration-flex3/
        cairngorm3/maven-repository/com/adobe/cairngorm/integration-flex3/0.9/
        cairngorm3/maven-repository/com/adobe/cairngorm/integration-flex3/0.9/integration-flex3-0 .9.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/integration-flex3/0.9/integration-flex3-0 .9.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integration-flex3/0.9/integration-flex3-0 .9.pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integration-flex3/0.9/integration-flex3-0 .9.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/integration-flex3/0.9/integration-flex3-0 .9.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integration-flex3/0.9/integration-flex3-0 .9.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integration-flex3/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/integration-flex3/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integration-flex3/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS-flex3/
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS-flex3/0.9/
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS-flex3/0.9/integrationDMS-f lex3-0.9.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS-flex3/0.9/integrationDMS-f lex3-0.9.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS-flex3/0.9/integrationDMS-f lex3-0.9.pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS-flex3/0.9/integrationDMS-f lex3-0.9.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS-flex3/0.9/integrationDMS-f lex3-0.9.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS-flex3/0.9/integrationDMS-f lex3-0.9.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS-flex3/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS-flex3/maven-metadata.xml.m d5
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS-flex3/maven-metadata.xml.s ha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC-flex3/
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC-flex3/0.9/
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC-flex3/0.9/integrationRPC-f lex3-0.9.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC-flex3/0.9/integrationRPC-f lex3-0.9.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC-flex3/0.9/integrationRPC-f lex3-0.9.pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC-flex3/0.9/integrationRPC-f lex3-0.9.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC-flex3/0.9/integrationRPC-f lex3-0.9.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC-flex3/0.9/integrationRPC-f lex3-0.9.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC-flex3/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC-flex3/maven-metadata.xml.m d5
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC-flex3/maven-metadata.xml.s ha1
        cairngorm3/maven-repository/com/adobe/cairngorm/module-flex3/
        cairngorm3/maven-repository/com/adobe/cairngorm/module-flex3/0.8/
        cairngorm3/maven-repository/com/adobe/cairngorm/module-flex3/0.8/module-flex3-0.8.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/module-flex3/0.8/module-flex3-0.8.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/module-flex3/0.8/module-flex3-0.8.pom.sha 1
        cairngorm3/maven-repository/com/adobe/cairngorm/module-flex3/0.8/module-flex3-0.8.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/module-flex3/0.8/module-flex3-0.8.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/module-flex3/0.8/module-flex3-0.8.swc.sha 1
        cairngorm3/maven-repository/com/adobe/cairngorm/module-flex3/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/module-flex3/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/module-flex3/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation-flex3/
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation-flex3/0.8/
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation-flex3/0.8/navigation-flex3-0.8 .pom
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation-flex3/0.8/navigation-flex3-0.8 .pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation-flex3/0.8/navigation-flex3-0.8 .pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation-flex3/0.8/navigation-flex3-0.8 .swc
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation-flex3/0.8/navigation-flex3-0.8 .swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation-flex3/0.8/navigation-flex3-0.8 .swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation-flex3/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation-flex3/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation-flex3/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley-flex3/
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley-flex3/0.8/
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley-flex3/0.8/navigationPar sley-flex3-0.8.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley-flex3/0.8/navigationPar sley-flex3-0.8.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley-flex3/0.8/navigationPar sley-flex3-0.8.pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley-flex3/0.8/navigationPar sley-flex3-0.8.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley-flex3/0.8/navigationPar sley-flex3-0.8.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley-flex3/0.8/navigationPar sley-flex3-0.8.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley-flex3/maven-metadata.xm l
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley-flex3/maven-metadata.xm l.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley-flex3/maven-metadata.xm l.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/observer-flex3/
        cairngorm3/maven-repository/com/adobe/cairngorm/observer-flex3/1.8/
        cairngorm3/maven-repository/com/adobe/cairngorm/observer-flex3/1.8/observer-flex3-1.8.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/observer-flex3/1.8/observer-flex3-1.8.pom .md5
        cairngorm3/maven-repository/com/adobe/cairngorm/observer-flex3/1.8/observer-flex3-1.8.pom .sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/observer-flex3/1.8/observer-flex3-1.8.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/observer-flex3/1.8/observer-flex3-1.8.swc .md5
        cairngorm3/maven-repository/com/adobe/cairngorm/observer-flex3/1.8/observer-flex3-1.8.swc .sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/observer-flex3/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/observer-flex3/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/observer-flex3/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley-flex3/
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley-flex3/1.8/
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley-flex3/1.8/observerParsley -flex3-1.8.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley-flex3/1.8/observerParsley -flex3-1.8.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley-flex3/1.8/observerParsley -flex3-1.8.pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley-flex3/1.8/observerParsley -flex3-1.8.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley-flex3/1.8/observerParsley -flex3-1.8.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley-flex3/1.8/observerParsley -flex3-1.8.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley-flex3/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley-flex3/maven-metadata.xml. md5
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley-flex3/maven-metadata.xml. sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/popup-flex3/
        cairngorm3/maven-repository/com/adobe/cairngorm/popup-flex3/1.7/
        cairngorm3/maven-repository/com/adobe/cairngorm/popup-flex3/1.7/popup-flex3-1.7.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/popup-flex3/1.7/popup-flex3-1.7.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/popup-flex3/1.7/popup-flex3-1.7.pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/popup-flex3/1.7/popup-flex3-1.7.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/popup-flex3/1.7/popup-flex3-1.7.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/popup-flex3/1.7/popup-flex3-1.7.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/popup-flex3/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/popup-flex3/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/popup-flex3/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley-flex3/
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley-flex3/1.7/
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley-flex3/1.7/popupParsley-flex3 -1.7.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley-flex3/1.7/popupParsley-flex3 -1.7.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley-flex3/1.7/popupParsley-flex3 -1.7.pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley-flex3/1.7/popupParsley-flex3 -1.7.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley-flex3/1.7/popupParsley-flex3 -1.7.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley-flex3/1.7/popupParsley-flex3 -1.7.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley-flex3/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley-flex3/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley-flex3/maven-metadata.xml.sha 1
        cairngorm3/maven-repository/com/adobe/cairngorm/task-flex3/
        cairngorm3/maven-repository/com/adobe/cairngorm/task-flex3/1.7/
        cairngorm3/maven-repository/com/adobe/cairngorm/task-flex3/1.7/task-flex3-1.7.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/task-flex3/1.7/task-flex3-1.7.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/task-flex3/1.7/task-flex3-1.7.pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/task-flex3/1.7/task-flex3-1.7.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/task-flex3/1.7/task-flex3-1.7.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/task-flex3/1.7/task-flex3-1.7.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/task-flex3/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/task-flex3/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/task-flex3/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/validation-flex3/
        cairngorm3/maven-repository/com/adobe/cairngorm/validation-flex3/1.8/
        cairngorm3/maven-repository/com/adobe/cairngorm/validation-flex3/1.8/validation-flex3-1.8 .pom
        cairngorm3/maven-repository/com/adobe/cairngorm/validation-flex3/1.8/validation-flex3-1.8 .pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/validation-flex3/1.8/validation-flex3-1.8 .pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/validation-flex3/1.8/validation-flex3-1.8 .swc
        cairngorm3/maven-repository/com/adobe/cairngorm/validation-flex3/1.8/validation-flex3-1.8 .swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/validation-flex3/1.8/validation-flex3-1.8 .swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/validation-flex3/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/validation-flex3/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/validation-flex3/maven-metadata.xml.sha1

    Hi Karl,
    I'm sorry to barge into this dicussion. I've been trying to get in touch with you regarding Chrome Lib. Have sent a mail at the id given on the Chrome lib website. Kindly reply to that or give your mail id for contact.
    M Puns
    m_puns AT rediffmail DOT com

  • [svn:cairngorm3:] 21115: updating the md5 and metadata and swc release ( just in case, we missed anything in our last commit)

    Revision: 21115
    Revision: 21115
    Author:   [email protected]
    Date:     2011-04-21 09:13:29 -0700 (Thu, 21 Apr 2011)
    Log Message:
    updating the md5 and metadata and swc release (just in case, we missed anything in our last commit)
    Modified Paths:
        cairngorm3/maven-repository/com/adobe/cairngorm/cairngorm3/3.0.18/cairngorm3-3.0.18.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/cairngorm3/3.0.18/cairngorm3-3.0.18.pom.m d5
        cairngorm3/maven-repository/com/adobe/cairngorm/cairngorm3/3.0.18/cairngorm3-3.0.18.pom.s ha1
        cairngorm3/maven-repository/com/adobe/cairngorm/cairngorm3/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/cairngorm3/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/cairngorm3/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/contract/1.4/contract-1.4.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/contract/1.4/contract-1.4.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/contract/1.4/contract-1.4.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/contract/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/contract/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/contract/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integration/0.16/integration-0.16.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/integration/0.16/integration-0.16.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integration/0.16/integration-0.16.swc.sha 1
        cairngorm3/maven-repository/com/adobe/cairngorm/integration/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/integration/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integration/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationParsley/0.16/integrationParsle y-0.16.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationParsley/0.16/integrationParsle y-0.16.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationParsley/0.16/integrationParsle y-0.16.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationParsley/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationParsley/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationParsley/maven-metadata.xml.sha 1
        cairngorm3/maven-repository/com/adobe/cairngorm/libraries/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/libraries/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/libraries/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/module/0.15/module-0.15.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/module/0.15/module-0.15.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/module/0.15/module-0.15.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/module/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/module/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/module/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation/1.4/navigation-1.4.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation/1.4/navigation-1.4.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation/1.4/navigation-1.4.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley/1.4/navigationParsley-1 .4.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley/1.4/navigationParsley-1 .4.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley/1.4/navigationParsley-1 .4.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationSpringAS/1.4/navigationSpringAS -1.4.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationSpringAS/1.4/navigationSpringAS -1.4.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationSpringAS/1.4/navigationSpringAS -1.4.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationSpringAS/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationSpringAS/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationSpringAS/maven-metadata.xml.sha 1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationSwiz/1.4/navigationSwiz-1.4.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationSwiz/1.4/navigationSwiz-1.4.swc .md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationSwiz/1.4/navigationSwiz-1.4.swc .sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationSwiz/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationSwiz/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationSwiz/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/observer/1.14/observer-1.14.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/observer/1.14/observer-1.14.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/observer/1.14/observer-1.14.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/observer/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/observer/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/observer/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley/1.14/observerParsley-1.14 .swc
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley/1.14/observerParsley-1.14 .swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley/1.14/observerParsley-1.14 .swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/popup/1.13/popup-1.13.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/popup/1.13/popup-1.13.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/popup/1.13/popup-1.13.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/popup/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/popup/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/popup/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley/1.13/popupParsley-1.13.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley/1.13/popupParsley-1.13.swc.m d5
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley/1.13/popupParsley-1.13.swc.s ha1
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/task/1.10/task-1.10.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/task/1.10/task-1.10.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/task/1.10/task-1.10.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/task/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/task/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/task/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/validation/1.13/validation-1.13.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/validation/1.13/validation-1.13.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/validation/1.13/validation-1.13.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/validation/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/validation/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/validation/maven-metadata.xml.sha1

    word!
    second that.
    This is really hard to follow, even for us who keep an eye on every update and read every single post and have an imagination of update problems out there.
    You tried to make digitalpublishing.acrobat.com (the "dashboard") the one-stop place for downloading and updating all necessary tools. good idea to make this the central point, because adobe.com download sections is a pain in the arse when trying to find updates for secondary tools like the DPS.
    also, make it super-duper clear what version is the current and what versio are currently available. I already wrote about lining up version numbers months ago and you seem to get this working — but it is still a mess. 1.7 vs 1.1.7 vs. 2.0 vs. drop17 vs. 11.4.2.201111104_m_670635 7.5.5.16 (you can imagine where I took the latter from)
    Peter: The bold line in the sticky forum message was added later, as I recall.
    —Johannes

  • [svn:cairngorm3:] 19790: fixing the flexunit 4. 1 related repositories entries

    Revision: 19790
    Revision: 19790
    Author:   [email protected]
    Date:     2011-01-18 00:02:32 -0800 (Tue, 18 Jan 2011)
    Log Message:
    fixing the flexunit 4.1 related repositories entries
    Added Paths:
        cairngorm3/maven-repository/asmock/asmock-flexunit4.1/1.0/asmock-flexunit4.1-1.0.swc
        cairngorm3/maven-repository/asmock/asmock-flexunit4.1/maven-metadata-local.xml
        cairngorm3/maven-repository/com/adobe/flexunit/flexunitUIRunner/4.1-RC2/flexunitUIRunner- 4.1-RC2.swc
    Removed Paths:
        cairngorm3/maven-repository/asmock/asmock-flexunit4.1/1.0/asmock-v1.0-flexunit-v4.1.swc
        cairngorm3/maven-repository/com/adobe/flexunit/flexunitUIRunner/4.1-RC2/flexunit-uilisten er-4.1.0_RC2-4-4.1.0.16076.swc

    Revision: 19790
    Revision: 19790
    Author:   [email protected]
    Date:     2011-01-18 00:02:32 -0800 (Tue, 18 Jan 2011)
    Log Message:
    fixing the flexunit 4.1 related repositories entries
    Added Paths:
        cairngorm3/maven-repository/asmock/asmock-flexunit4.1/1.0/asmock-flexunit4.1-1.0.swc
        cairngorm3/maven-repository/asmock/asmock-flexunit4.1/maven-metadata-local.xml
        cairngorm3/maven-repository/com/adobe/flexunit/flexunitUIRunner/4.1-RC2/flexunitUIRunner- 4.1-RC2.swc
    Removed Paths:
        cairngorm3/maven-repository/asmock/asmock-flexunit4.1/1.0/asmock-v1.0-flexunit-v4.1.swc
        cairngorm3/maven-repository/com/adobe/flexunit/flexunitUIRunner/4.1-RC2/flexunit-uilisten er-4.1.0_RC2-4-4.1.0.16076.swc

  • [svn:cairngorm3:] 19791: fixing the flexunit 4. 1 related fb config files and build files

    Revision: 19791
    Revision: 19791
    Author:   [email protected]
    Date:     2011-01-18 00:03:58 -0800 (Tue, 18 Jan 2011)
    Log Message:
    fixing the flexunit 4.1 related fb config files and build files
    Modified Paths:
        cairngorm3/trunk/libraries/Integration/pom.xml
        cairngorm3/trunk/libraries/IntegrationDMS/pom.xml
        cairngorm3/trunk/libraries/IntegrationParsley/pom.xml
        cairngorm3/trunk/libraries/Navigation/.actionScriptProperties
        cairngorm3/trunk/libraries/Navigation/pom.xml
        cairngorm3/trunk/libraries/NavigationParsleyTest/.actionScriptProperties
        cairngorm3/trunk/libraries/NavigationSwiz/.actionScriptProperties
        cairngorm3/trunk/libraries/NavigationSwizTest/.actionScriptProperties
        cairngorm3/trunk/libraries/Observer/pom.xml
        cairngorm3/trunk/libraries/ObserverParsley/pom.xml
        cairngorm3/trunk/libraries/lib-parent/pom.xml

    I am embarrassed to say that your solution answered my question.
    I was about 10 min away from rewriting my Ant script to just use the mxmlc.exe directly instead of the mxmlc ant tag. I kept running into the -flex-config+=YourConfig.xml for the command line option but never saw the xml variant.
    http://blog.flexexamples.com/2008/12/21/using-a-custom-flex-configxml-file-in-flex-builder -3/
    http://livedocs.adobe.com/flex/3/html/help.html?content=configuring_environment_3.html
    Does Flex have any documenation that shows all the different tags that are available like the Ant documenation?
    http://ant.apache.org/manual/Tasks/delete.html
    Thanks at ton.

  • [svn:cairngorm3:] 21050: Popup: The default behavior when an Event. CLOSE is dispatched through the popup component should be preventable

    Revision: 21050
    Revision: 21050
    Author:   [email protected]
    Date:     2011-04-09 16:22:58 -0700 (Sat, 09 Apr 2011)
    Log Message:
    Popup: The default behavior when an Event.CLOSE is dispatched through the popup component should be preventable
    https://bugs.adobe.com/jira/browse/CGM-59
    Popup: The write-only behaviors property can not be used with states
    https://bugs.adobe.com/jira/browse/CGM-55
    Ticket Links:
        http://bugs.adobe.com/jira/browse/CGM-59
        http://bugs.adobe.com/jira/browse/CGM-55
    Modified Paths:
        cairngorm3/trunk/libraries/Popup/src/com/adobe/cairngorm/popup/PopUpBase.as
        cairngorm3/trunk/libraries/Popup/test/com/adobe/cairngorm/popup/PopUpBaseTest.as
        cairngorm3/trunk/libraries/PopupTest/.actionScriptProperties
    Added Paths:
        cairngorm3/trunk/libraries/PopupTest/html-template/
        cairngorm3/trunk/libraries/PopupTest/html-template/index.template.html
        cairngorm3/trunk/libraries/PopupTest/html-template/playerProductInstall.swf
        cairngorm3/trunk/libraries/PopupTest/html-template/swfobject.js

    Hi Shweta,
    as i discussed with you to update the script code
    <html><script> function closeWindow( ){       top.close( );     }                  </script><body><form> The application was logged off successfully. <br><input type="button" value="close window" onclick="closeWindow( );" /></ form></body></html>
    in sicf transaction for your component.
    it will work (close the window).
    dont forget to give me points
    all the best...
    Rgds,
    Mahesh.Gattu

  • [svn:cairngorm3:] 19007: adding the max 2010 talk sample.

    Revision: 19007
    Revision: 19007
    Author:   [email protected]
    Date:     2010-12-03 07:27:00 -0800 (Fri, 03 Dec 2010)
    Log Message:
    adding the max 2010 talk sample.
    Modified Paths:
        cairngorm3/trunk/build-parent/pom.xml
        cairngorm3/trunk/libraries/Contract/pom.xml
        cairngorm3/trunk/libraries/Integration/pom.xml
        cairngorm3/trunk/libraries/IntegrationDMS/pom.xml
        cairngorm3/trunk/libraries/IntegrationParsley/pom.xml
        cairngorm3/trunk/libraries/Module/pom.xml
        cairngorm3/trunk/libraries/Navigation/pom.xml
        cairngorm3/trunk/libraries/NavigationParsley/pom.xml
        cairngorm3/trunk/libraries/NavigationSpringAS/pom.xml
        cairngorm3/trunk/libraries/NavigationSwiz/pom.xml
        cairngorm3/trunk/libraries/Observer/pom.xml
        cairngorm3/trunk/libraries/ObserverParsley/pom.xml
        cairngorm3/trunk/libraries/Persistence/pom.xml
        cairngorm3/trunk/libraries/Popup/pom.xml
        cairngorm3/trunk/libraries/PopupParsley/pom.xml
        cairngorm3/trunk/libraries/Task/pom.xml
        cairngorm3/trunk/libraries/Validation/pom.xml
        cairngorm3/trunk/libraries/lib-parent/pom.xml
        cairngorm3/trunk/pom.xml
    Added Paths:
        cairngorm3/trunk/libraries/NavigationTest/
        cairngorm3/trunk/samples/pom.xml
        cairngorm3/trunk/samples/todo/
        cairngorm3/trunk/samples/todo/pom.xml
        cairngorm3/trunk/samples/todo/src/
        cairngorm3/trunk/samples/todo/todo_flex/
        cairngorm3/trunk/samples/todo/todo_flex/pom.xml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/.actionScriptProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/.externalToolBuilders/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/.externalToolBuilders/com.adobe .ac.pmd.eclipse.flexpmdbuilder (5).launch
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/.flexProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/.project
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/.settings/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/.settings/org.eclipse.core.reso urces.prefs
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/Main-app.xml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/Main.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/MainContext.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/assets/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/assets/icons/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/assets/icons/spin ning.swf
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/assets/logo_trans parent.png
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/assets/todo_splas h.jpg
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/com/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/com/adobe/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/com/adobe/txi/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/com/adobe/txi/tod o/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/com/adobe/txi/tod o/components/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/com/adobe/txi/tod o/components/LoadingFeedback.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/com/adobe/txi/tod o/detail/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/com/adobe/txi/tod o/detail/TodoItemView.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/com/adobe/txi/tod o/list/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/com/adobe/txi/tod o/list/DeleteTodoItemEvent.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/com/adobe/txi/tod o/list/TodoItemRenderer.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/com/adobe/txi/tod o/list/TodoListView.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/com/adobe/txi/tod o/login/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/com/adobe/txi/tod o/login/LoginView.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/com/adobe/txi/tod o/skins/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/com/adobe/txi/tod o/skins/LoadingFeedbackSkin.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/flex/main.css
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/resources/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/resources/additional_c ompiler_arguments.xml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_android/src/main/resources/service_conf ig.properties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/.actionScriptProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/.externalToolBuilders/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/.externalToolBuilders/com.adobe.ac .pmd.eclipse.flexpmdbuilder (3).launch
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/.flexLibProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/.fxpProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/.project
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/.settings/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/.settings/org.eclipse.core.resourc es.prefs
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/pom.xml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/a pplication/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/a pplication/authentication/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/a pplication/authentication/GetCurrentUserTask.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/a pplication/authentication/LoginChannelSetTask.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/a pplication/authentication/LoginCommand.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/a pplication/authentication/LoginController.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/a pplication/authentication/LoginMessage.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/a pplication/authentication/LogoutChannelSetTask.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/a pplication/authentication/LogoutCommand.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/a pplication/authentication/LogoutMessage.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/a pplication/authentication/mock/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/a pplication/authentication/mock/MockLoginCommand.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/a pplication/authentication/mock/MockLogoutCommand.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/a pplication/rig/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/a pplication/rig/ModuleRigLoginTask.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/d omain/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/d omain/UserModel.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/i nfrastructure/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/i nfrastructure/flexunit/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/i nfrastructure/flexunit/EventAssert.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/i nfrastructure/task/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/i nfrastructure/task/ASyncTokenResultTask.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/i nfrastructure/task/MockASyncResultTask.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/flex/com/adobe/txi/todo/i nfrastructure/task/MockResultTask.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/resources/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/resources/additional_comp iler_arguments.xml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/test/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/test/com/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/test/com/adobe/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/test/com/adobe/txi/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/test/com/adobe/txi/todo/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/test/com/adobe/txi/todo/a pplication/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/test/com/adobe/txi/todo/a pplication/authentication/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_core/src/main/test/com/adobe/txi/todo/a pplication/authentication/LoginControllerTest.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_remoting_dto/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_remoting_dto/.actionScriptProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_remoting_dto/.flexLibProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_remoting_dto/.project
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_remoting_dto/.settings/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_remoting_dto/.settings/org.eclipse.core .resources.prefs
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_remoting_dto/pom.xml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_remoting_dto/src/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_remoting_dto/src/main/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_remoting_dto/src/main/template/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_remoting_dto/src/main/template/bean.gsp
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_remoting_dto/src/main/template/beanBase .gsp
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/.actionScriptProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/.externalToolBuilders/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/.externalToolBuilders/com.adobe.a c.pmd.eclipse.flexpmdbuilder (2).launch
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/.flexProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/.fxpProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/.project
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/.settings/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/.settings/org.eclipse.core.resour ces.prefs
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/pom.xml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/flex/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/flex/Main.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/flex/MainContext.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/flex/com/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/flex/com/adobe/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/flex/com/adobe/txi/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/flex/com/adobe/txi/todo/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/flex/com/adobe/txi/todo/ shell/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/flex/com/adobe/txi/todo/ shell/header/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/flex/com/adobe/txi/todo/ shell/header/ApplicationHeader.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/flex/com/adobe/txi/todo/ shell/login/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/flex/com/adobe/txi/todo/ shell/login/LoginContainer.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/flex/com/adobe/txi/todo/ shell/login/LoginContainerPM.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/flex/com/adobe/txi/todo/ shell/skins/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/flex/com/adobe/txi/todo/ shell/skins/ApplicationHeaderSkin.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/resources/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/resources/additional_com piler_arguments.xml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/resources/assets/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_shell/src/main/resources/assets/todoLog o_big.png
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_test/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_test/.FlexUnitSettings/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_test/.FlexUnitSettings/FlexUnitApplicat ionLastRun.xml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_test/.FlexUnitSettings/FlexUnitApplicat ionLastSelection.xml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_test/.actionScriptProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_test/.flexProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_test/.project
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_test/.settings/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_test/.settings/org.eclipse.core.resourc es.prefs
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_test/src/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_test/src/FlexUnitApplication.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_test/src/FlexUnitTestSuite.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/.actionScriptProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/.externalToolBuilders/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/.externalToolBuilders/com.adob e.ac.pmd.eclipse.flexpmdbuilder (1).launch
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/.flexProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/.fxpProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/.project
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/.settings/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/.settings/org.eclipse.core.res ources.prefs
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/pom.xml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/flex/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/flex/TodoListModule.m xml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/flex/TodoListModuleCo ntext.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/flex/TodoListModuleRi g.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/flex/TodoListModuleRi gContext.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/flex/com/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/flex/com/adobe/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/flex/com/adobe/txi/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/flex/com/adobe/txi/to do/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/flex/com/adobe/txi/to do/presentation/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/flex/com/adobe/txi/to do/presentation/TodoItemDetail.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/flex/com/adobe/txi/to do/presentation/TodoList.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/flex/com/adobe/txi/to do/presentation/TodoListItemRenderer.mxml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/resources/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/resources/additional_ compiler_arguments.xml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/resources/assets/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist/src/main/resources/assets/icon _tool_trash.png
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/.actionScriptProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/.externalToolBuilders/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/.externalToolBuilders/com. adobe.ac.pmd.eclipse.flexpmdbuilder.launch
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/.flexLibProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/.fxpProperties
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/.project
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/.settings/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/.settings/org.eclipse.core .resources.prefs
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/pom.xml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/todo/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/todo/application/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/todo/application/GetTodoListCommand.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/todo/application/GetTodoListMessage.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/todo/application/RemoveTodoItemCommand.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/todo/application/RemoveTodoItemMessage.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/todo/application/SaveTodoItemCommand.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/todo/application/SaveTodoItemMessage.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/todo/application/TodoItemController.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/todo/application/TodoListController.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/todo/application/mock/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/todo/application/mock/MockGetTodoListCommand.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/todo/application/mock/MockRemoveTodoItemCommand.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/todo/application/mock/MockSaveTodoItemCommand.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/todo/domain/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/todo/domain/TodoItem.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/flex/com/adobe/tx i/todo/domain/TodoModel.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/resources/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/resources/additio nal_compiler_arguments.xml
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/test/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/test/com/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/test/com/adobe/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/test/com/adobe/tx i/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/test/com/adobe/tx i/todo/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/test/com/adobe/tx i/todo/application/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/test/com/adobe/tx i/todo/application/TodoItemControllerTest.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/test/com/adobe/tx i/todo/application/TodoListControllerTest.as
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/test/com/adobe/tx i/todo/domain/
        cairngorm3/trunk/samples/todo/todo_flex/todo_flex_todolist_lib/src/main/test/com/adobe/tx i/todo/domain/TodoModelTest.as
        cairngorm3/trunk/samples/todo/todo_java/
        cairngorm3/trunk/samples/todo/todo_java/.settings/
        cairngorm3/trunk/samples/todo/todo_java/.settings/org.maven.ide.eclipse.prefs
        cairngorm3/trunk/samples/todo/todo_java/pom.xml
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/pom.xml
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/java/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/java/META-INF/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/java/META-INF/MANI FEST.MF
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/java/com/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/java/com/adobe/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/java/com/adobe/txi /
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/java/com/adobe/txi /todo/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/java/com/adobe/txi /todo/dao/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/java/com/adobe/txi /todo/dao/IGenericDao.java
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/java/com/adobe/txi /todo/dao/ITodoItemDao.java
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/java/com/adobe/txi /todo/dao/jpa/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/java/com/adobe/txi /todo/dao/jpa/GenericDaoJpa.java
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/java/com/adobe/txi /todo/dao/jpa/TodoItemJpaDao.java
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/java/com/adobe/txi /todo/entity/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/java/com/adobe/txi /todo/entity/TodoItem.java
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/resources/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/resources/META-INF /
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/resources/META-INF /persistence.xml
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/resources/applicat ionContext-persistence.xml
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/main/resources/jdbc.pro perties
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/test/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/test/java/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/test/java/com/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/test/java/com/adobe/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/test/java/com/adobe/txi /
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/test/java/com/adobe/txi /todo/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/test/java/com/adobe/txi /todo/dao/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/test/java/com/adobe/txi /todo/dao/TodoItemDaoTest.java
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/test/resources/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_persistence/src/test/resources/test-dat a.xml
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/pom.xml
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/java/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/java/META-INF /
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/java/META-INF /MANIFEST.MF
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/java/com/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/java/com/adob e/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/java/com/adob e/txi/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/java/com/adob e/txi/todo/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/java/com/adob e/txi/todo/dto/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/java/com/adob e/txi/todo/dto/TodoItemDto.java
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/java/com/adob e/txi/todo/exception/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/java/com/adob e/txi/todo/exception/ExceptionCode.java
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/java/com/adob e/txi/todo/exception/ExceptionTranslatorImpl.java
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/java/com/adob e/txi/todo/service/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/java/com/adob e/txi/todo/service/ICrudService.java
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/java/com/adob e/txi/todo/service/TodoService.java
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/resources/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/resources/app licationContext-remoting.xml
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/main/resources/tod o-dozer-bean-mappings.xml
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/test/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/test/java/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/test/java/com/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/test/java/com/adob e/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/test/java/com/adob e/txi/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/test/java/com/adob e/txi/todo/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/test/java/com/adob e/txi/todo/service/
        cairngorm3/trunk/samples/todo/todo_java/todo_java_remoting_service/src/test/java/com/adob e/txi/todo/service/TodoServiceTest.java
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/pom.xml
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/META-INF/
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/META-INF/MANIFEST.MF
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/WEB-INF/
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/WEB-INF/applicationCo ntext.xml
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/WEB-INF/dispatcher-se rvlet.xml
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/WEB-INF/flex/
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/WEB-INF/flex/remoting -config.xml
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/WEB-INF/flex/services -config.xml
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/WEB-INF/lib/
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/WEB-INF/log4j.propert ies
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/WEB-INF/security.xml
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/WEB-INF/taglibs-sessi on.tld
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/WEB-INF/web.xml
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/bin/
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/bin/flex.jsp
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/history/
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/history/history.css
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/history/history.js
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/history/historyFrame. html
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/index.jsp
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/popuputil.js
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/main/webapp/swfobject.js
        cairngorm3/trunk/samples/todo/todo_java/todo_webapp/src/test/
    Property Changed:
        cairngorm3/trunk/

    Thanks for this update.
    Do you plan to put on this repository only parsley/swiz/... dependencies that Cairngorm libs support or the latest dependencies versions? I was wondering that because I saw you didn't add Parsley 2.3.2

  • [svn:cairngorm3:] 18226: Added latest asdoc ZIPs to all libs ( currently only to Flex 4 versions)

    Revision: 18226
    Revision: 18226
    Author:   [email protected]
    Date:     2010-10-19 14:13:09 -0700 (Tue, 19 Oct 2010)
    Log Message:
    Added latest asdoc ZIPs to all libs (currently only to Flex 4 versions)
    Added Paths:
        cairngorm3/maven-repository/com/adobe/cairngorm/contract/1.3/docs.zip
        cairngorm3/maven-repository/com/adobe/cairngorm/integration/0.15/docs.zip
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS/0.15/docs.zip
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationParsley/0.15/docs.zip
        cairngorm3/maven-repository/com/adobe/cairngorm/module/0.14/docs.zip
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation/1.3/docs.zip
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley/1.3/docs.zip
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationSpringAS/1.3/docs.zip
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationSwiz/1.3/docs.zip
        cairngorm3/maven-repository/com/adobe/cairngorm/observer/1.13/docs.zip
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley/1.13/docs.zip
        cairngorm3/maven-repository/com/adobe/cairngorm/popup/1.12/docs.zip
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley/1.12/docs.zip
        cairngorm3/maven-repository/com/adobe/cairngorm/task/1.9/docs.zip
        cairngorm3/maven-repository/com/adobe/cairngorm/validation/1.12/docs.zip

    You need to use file:// as the protocol instead of C:/. The latter may never work (C:\ might).
    Where is the main HTML located ?
    Easiest if to store the images in a sub folder of the location because you can't go back via ../ beyond that root location for security reasons.
    See:
    *http://kb.mozillazine.org/Links_to_local_pages_do_not_work

  • [svn:cairngorm3:] 16403: Added runtime support for latest module library ( LazyModuleLoadPolicyTag).

    Revision: 16403
    Revision: 16403
    Author:   [email protected]
    Date:     2010-06-02 12:47:11 -0700 (Wed, 02 Jun 2010)
    Log Message:
    Added runtime support for latest module library (LazyModuleLoadPolicyTag).
    Modified Paths:
        cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/CairngormModuleXMLSupport.as
        cairngorm3/trunk/libraries/ModuleTest/src/CairngormModuleLibRuntimeSample.mxml
        cairngorm3/trunk/libraries/ModuleTest/src/runtimeContext.xml

    Bing,
    I think one thing you might want to do is to post your code on the Web somewhere. Maybe you can open a Weblog and post this there.
    http://www.jroller.com will let you open a blog for free we'll love to see more customers of JDeveloper opening weblogs and sharing their experience over the Web.

  • How can I simplify the code in this situation?

    I want to create some interaction about ABCDEFGHIJKLM objects. If I l click A and B, the screen will show F. If I click A and C, it will show G.  If I click A and D. it will show F..etc.  When I mouseove A , it will show only L. If I mouseover B, it will show M only. In this situation, I need to create each eventListener (MouseoverA MouseOverB CLICK A, CLICK B, bothAandBClick, bothAandCClick, bothAandDclick......) Can I use other method to simplify the code?
    import flash.display.MovieClip;
    import flash.events.MouseEvent;
    import flash.events.Event;
    import flash.ui.Mouse;
    var redbtn:MovieClip=new Redbtn();
    redbtn.x=321;
    redbtn.y=13;
    addChild(redbtn);
    var yellowbtn:MovieClip=new Yellowbtn();
    yellowbtn.x=130;
    yellowbtn.y=106;
    addChild(yellowbtn);
    var bluebtn:MovieClip=new Bluebtn();
    bluebtn.x=726;
    bluebtn.y=89;
    addChild(bluebtn);
    var blackbtn:MovieClip=new Blackbtn();
    blackbtn.x=236;
    blackbtn.y=479;
    addChild(blackbtn);
    var greenbtn:MovieClip=new Greenbtn();
    greenbtn.x=590;
    greenbtn.y=457;
    addChild(greenbtn);
    var page1:MovieClip=new relationship();
    var redBtnClicked:Boolean;
    var blueBtnClicked:Boolean;
    redbtn.addEventListener(MouseEvent.CLICK, onRedBtnClick);
    redbtn.addEventListener(MouseEvent.ROLL_OVER, onRedOver);
    redbtn.addEventListener(MouseEvent.ROLL_OUT, onRedOut);
    bluebtn.addEventListener(MouseEvent.CLICK, onBlueClick);
    bluebtn.addEventListener(MouseEvent.MOUSE_OVER, onBlueOver);
    function onRedOver(evt:MouseEvent):void{
              trace("redover");
              redbtn.gotoAndStop(2);
    function onRedOut(evt:MouseEvent):void{
              trace("redout");
              redbtn.gotoAndStop(3);
    function onBlueOver(evt:MouseEvent):void{
              trace("blueover");
    function onRedBtnClick(evt:MouseEvent):void{
              redBtnClicked=true;
              bothClickedF();
    function onBlueClick(evt:MouseEvent):void{
              blueBtnClicked=true;
              bothClickedF();
    function bothClickedF():void{
              if (blueBtnClicked&& redBtnClicked){
                        trace("two buttons are clicked");
                        addChild(page1);
                        redBtnClicked=false;
                        blueBtnClicked=false;
    page1.trailer_sex.addEventListener(MouseEvent.CLICK, page1Click);
    function page1Click(evt:MouseEvent):void{
       removeChild(page1);

    I means  this
    Click
    A and B  go to C
    A and D go to E
    A and F go to G
    A and I go to J
    A and N go to O
    B and D go to K
    B and F go to L
    B and I go to M
    B and N go to P
    F and I go to Q
    F and N go to R
    MouseOver
    A  over then appear S
    B  over then appear T
    D  over then appear U
    F  over then appear V
    I  over then appear W
    N  over then appear V
    There is not time limit.

  • [svn] 609: Changed the svn:mime-type of the SDK's milestones.html file.

    Revision: 609
    Author: [email protected]
    Date: 2008-02-21 14:47:48 -0800 (Thu, 21 Feb 2008)
    Log Message:
    Changed the svn:mime-type of the SDK's milestones.html file.
    Property Changed:
    flex/sdk/milestones.html

    the web xml mime type setting are for static files served by the server...
    if you print a file directly to the output of the servlet, you must set the mime type, so DO write :
    response.setContentType( "application/vnd.ms-excel" );
    IE "works fine" because it also uses the file extension to decide the mime type... but in the absolute, it's a wrong behaviour

  • The query processor ran out of stack space during query optimization. Please simplify the query

    Can you suggest me that what should i do in this case.
    Actually i am having one table that is a MasterTable.I am referring this table in more than 300 tables that means i am having foreign key of this primary key in 300+ tables.
    due to this i am getting following error during deleting any row,
    doesn't matter that data is existing in reference table or not.
    Error that i am getting is 
    "The query processor ran out of stack space during query optimization. Please simplify the query"
    Can you suggest me that what should i do to avoid this error,because i am unable to delete this entry.
    Apart from it,i am getting performance problem too,so is it due to such huge FK on it.
    Please suggest me on following points
    1. Is it worst way to handle it,if yes then please suggest me solution for it.
    2. If it is a correct way then what should i do if getting error during deleting any record.
    3. Is it right to create Foreign key on each table where i am saving data of this master. if no then how to manage integrity.
    4. What people do in huge database when they wants to create foreign key for any primary key.
    5. Can you suggest me that how DBA's are handling this in big database,where they are having huge no. of tables.

    The most common reason of getting such error is having more than 253 foreign key constraints on a table. 
    The max limit is documented here:
    http://msdn.microsoft.com/en-us/library/ms143432(SQL.90).aspx 
    Although a table can contain an unlimited number of FOREIGN KEY constraints, the recommended maximum is 253. Depending on the hardware configuration hosting SQL Server, specifying additional foreign key constraints may be expensive for the query
    optimizer to process. If you are on 32 bit, then you might want to move to 64 bit to get little bigger stack space but eventually having 300 FK is not something which would work in long run.
    Balmukund Lakhani | Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • Svn revision number in the windows bar

    Hi,
    I'm thinking of the possibilities of putting the SVN revision number on the bar of application (exe). I'd be usueful feature to quick assess from which source code revision the application is build in.
    So what I would need is a kind of trigger/interface which I could use to launch the small piece a code which modify the  application window bar when the application is being build. I thought about preparing the string using the System Exec.vi (to execute svn.exe -st command to get the information I need). But how come can I impose on LV to trigger that code only when the build operation starts?
    Or maybe I shall use different approach?
    Solved!
    Go to Solution.

    ShalB wrote:
    Hi MimiLKM,
    Have a look at this document: http://digital.ni.com/public.nsf/allkb/C751F800E25​8087B86257535006DB160?OpenDocument
    Hope this helps,
    And how does that answer the question about changing the title bar of a window when a build process is initiated?
    As to the question: The application build has an API, so if you really needed to do this (and I can't quite figure out why), you could write your own VI to call the application builder to build your app. You can then change the title bar. I'm not sure, but I suspect you may need to resort to using the operating system API to change the window name, as I don't know if you can get a reference to the window that is displayed during the build process. If you have to use the operating system, then on Windows you can use the Windows API Function Utilities (32-bit) for LabVIEW .

Maybe you are looking for

  • Urgent: ABAP Dump when using ME9F

    Hi All, I am using ME9F transaction to re-print POs. I get a short dump stating error "MOVE_TO_LIT_NOTALLOWED_NODATA". This just started happend after we applied the support packs. We are using custom SAP Script form. Did anyone ever experience this

  • Which version of iTunes do you recommend?

    I recently upgraded to 7.5 after a long time of not upgrading, but when it started working like crap and becoming staticky, I uninstalled itunes and went to 6.05. However, 6.05 is a little old for me and I'd prefer a newer version that doesn't conk o

  • Can you make captions for a slideshow?

    can you make captions for a slideshow? otherwise how can i rename the photo so that i can select view titles in the slideshow and use it as a caption?

  • Simple Java Web Server

    I am looking for a simple Java Web Server similar to the one Sun used to have. My understanding is that they stopped supporting that server. My background for this need is a classroom setting that teaches servlets and JSP, but does not want to specif

  • Importing from memory card: Aperture won't refresh!

    Because of the TOTALLY STUPID "feature" in Aperture that makes it impossible to import two files with identical names and different extensions (i.e. RAW and JPG versions of the same image), I went to a lot of effort to create an Automator action to r