Cairngorm navigation

I'm new to Cairngorm, I'm already using Parsley for IoC and I'm looking to use the Cairngorm Navigation library but I'm having some difficulties getting it going.
I've followed the HowToUse for Cairngorm Navigation fairly carefully but the components on my ViewStack aren't getting changed when I dispatch an event with the content destination.
Do I need to initialize the Cairngorm Navigation extension in any way, as described here? I've blundered around trying a few things: if I try and include CairngormNavigationLib as a tag in my MXML, or use Metadata.registerMetadataClass I get errors because the compiler can't find org.spicefactory.parsley.registry.*. In fact, looking at the source code for Parsley, I can't find these classes/interfaces anywhere in the source, despite being discussed in the Parsley language reference. Is this obvious a Parsley problem or something with my setup?
Thanks in advance for the help!

I am having the same issue here. I pulled the trunk and I am still having trouble getting the ViewStack to change. If I have some time later I might be able to debug it. Is the string value sent into newNavigateToEvent() supposed to be the same as the automationName of the landmark correct?

Similar Messages

  • Cairngorm 3 Navigation library and custom Waypoints

    Hi all!
    How can I set my own class to process waypoints? I created the class which extends com.adobe.cairngorm.navigation.waypoint.AbstractWaypoint. And in my ViewStack I added the follwing metadata: [Waypoint(type="path.to.my.Class")]. However when I try to navigate to this ViewStack's child I receive the following error: Error: Unable to set mapped value for [Property type in class com.adobe.cairngorm.navigation.waypoint.decorator::WaypointDecorator].
    What am I doing wrong? How can I use my own classes to process Waypoints and Landmarks?

    I'm pretty sure that my class is correct. MXML definition of the waypoint throws the same error. It works only if I modify the if statement in the WaypointProcessor.preInit() method:
                     if (waypointHandler.waypoint is CurrentStateWaypoint)
                    registration = new StateDestinationRegistration(controller.controller,
                                                                    waypointHandler,
                                                                    name);
                  else if (waypointHandler.waypoint is MyWaypointClass) {
                            registration = new ContainerDestinationRegistration(controller.controller,
                                                                        waypointHandler);
                else
                    registration = new ContainerDestinationRegistration(controller.controller,
                                                                        waypointHandler);

  • Cairngorm 3 and Navigation Library

    Hi,
    I've been looking at the draft code for the Cairngorm 3 Navigation Library and wondered if anyone knows how to use the CurrentStateWaypoint?
    This seems to provide what I want but I can't see any example code, in the examples, tests or library. Is this part of the library still to be implemented completely, or is it deprecated / for removal?
    Any example on how this should be used would be appreciated.
    Thanks

    The CurrentStateWaypoint isn't implemented at this point. But maybe you could give it a try? Let me know if you make progress.
    The connection is already there. By default the Waypoint decorator choses the SelectedChildWaypoint that works for all Containers that have a selectedChild and dispatch an IndexChangedEvent.CHANGE event. To enable it for states, you would need to specify that in the Waypoint metadata. I'd like to think later if we can let the Waypoint decorator automatically detect the correct type.
        <mx:Metadata>
          [Waypoint(type="com.adobe.cairngorm.navigation.waypoint.CurrentStateWaypoint")]
        </mx:Metadata>
    Then, the CurrentStateWaypoint could be build in a similar manner than the SelectedChildWaypoint. Here's an outline:
        public class CurrentStateWaypoint extends AbstractWaypoint
            override protected function navigateToHandler(destination:String):void
                view.currentState = destination;
            override public function onInitialize():void
                var stateView:UIComponent = view;
            override public function getDefaultDestination():String
                return null;
    If you could check out the trunk version for the latest code you'll also find many other features. I didn't update the documention on the wiki yet but if you run and follow this example, you'll get a good idea of what's new and where it is heading.

  • [svn:cairngorm3:] 15438: -Change initialization objects of Cairngorm Parsley extensions to Parsley convention  (i.e.

    Revision: 15438
    Revision: 15438
    Author:   [email protected]
    Date:     2010-04-15 03:39:34 -0700 (Thu, 15 Apr 2010)
    Log Message:
    -Change initialization objects of Cairngorm Parsley extensions to Parsley convention (i.e. CairngormModuleLib>CairngormModuleSupport). Every initialization object has a static initialize method and implements Parsley's ContextBuilderProcessor, which allows it to be specified within a ContextBuilder definition.
    -API Change in Navigation library: Changed -FirstEnter metadata to Enter(time="first"), -Enter metadata to Enter(time="next") and -EveryEnter metadata to Enter(time="every")
    -Added convenience isValid get accessor to ValidationGroupEvent
    Modified Paths:
        cairngorm3/trunk/libraries/IntegrationDMS/.flexLibProperties
        cairngorm3/trunk/libraries/IntegrationRPC/.flexLibProperties
        cairngorm3/trunk/libraries/IntegrationTest/src/CommandScopeSample.mxml
        cairngorm3/trunk/libraries/IntegrationTest/src/LocalConnectionConsumer.mxml
        cairngorm3/trunk/libraries/IntegrationTest/src/LocalConnectionProducer.mxml
        cairngorm3/trunk/libraries/Module/.actionScriptProperties
        cairngorm3/trunk/libraries/Module/.flexLibProperties
        cairngorm3/trunk/libraries/ModuleTest/.actionScriptProperties
        cairngorm3/trunk/libraries/ModuleTest/.flexProperties
        cairngorm3/trunk/libraries/ModuleTest/src/CairngormModuleLibRuntimeSample.mxml
        cairngorm3/trunk/libraries/ModuleTest/src/CairngormModuleLibSample.mxml
        cairngorm3/trunk/libraries/Navigation/.actionScriptProperties
        cairngorm3/trunk/libraries/Navigation/.flexLibProperties
        cairngorm3/trunk/libraries/Navigation/pom.xml
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/navigation/landmark/Abstrac tNavigationDecorator.as
        cairngorm3/trunk/libraries/NavigationTest/src/NavigatorSample1.mxml
        cairngorm3/trunk/libraries/NavigationTest/src/ToggleButtonBarSample.mxml
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/contacts/BusinessContactsPM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/contacts/ContactsPM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/contacts/PrivateContactsPM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/ContentPM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/dashboard/DashboardFoo terPM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/dashboard/DashboardPM. as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/dashboard/NestedChild1 PM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/dashboard/NestedChild2 PM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/dashboard/NestedChildP M.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/messages/MessagesPM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/news/NewsPM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/tasks/ExpensePM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/tasks/TaskPM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/tasks/TimeTrackingPM.a s
        cairngorm3/trunk/libraries/ObserverParsley/.flexLibProperties
        cairngorm3/trunk/libraries/PersistenceTest/src/com/adobe/cairngorm/persistence/sample/pre sentation/CreateDatabasePM.as
        cairngorm3/trunk/libraries/PersistenceTest/src/com/adobe/cairngorm/persistence/sample/pre sentation/PeoplePM.as
        cairngorm3/trunk/libraries/Validation/src/com/adobe/cairngorm/validation/event/ValidatorG roupEvent.as
        cairngorm3/trunk/libraries/ValidationTest/src/SampleModelValidationWithCombos.mxml
        cairngorm3/trunk/libraries/ValidationTest/src/combo/ComboDomain.as
        cairngorm3/trunk/libraries/ValidationTest/src/combo/ComboDomainValidatorGroup.mxml
        cairngorm3/trunk/libraries/ValidationTest/src/combo/ComboPM.as
        cairngorm3/trunk/samples/insync/insync-basic/src/InsyncBasic.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/ContactsModule.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/src/InsyncModularExtendedShe ll.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/src/insync/presentation/Expe nsesPM.as
    Added Paths:
        cairngorm3/trunk/libraries/IntegrationDMS/src/com/adobe/cairngorm/CairngormIntegrationDMS Support.as
        cairngorm3/trunk/libraries/IntegrationRPC/src/com/adobe/cairngorm/CairngormIntegrationRPC Support.as
        cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/CairngormModuleSupport.as
        cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/CairngormModuleXMLSupport.as
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/CairngormNavigationSupport. as
        cairngorm3/trunk/libraries/ObserverParsley/src/com/adobe/cairngorm/CairngormObserverSuppo rt.as
    Removed Paths:
        cairngorm3/trunk/libraries/IntegrationDMS/src/com/adobe/cairngorm/CairngormIntegrationDMS Lib.as
        cairngorm3/trunk/libraries/IntegrationRPC/src/com/adobe/cairngorm/CairngormIntegrationRPC Lib.as
        cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/CairngormModuleLib.as
        cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/ModuleXMLSupport.as
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/CairngormNavigationLib.as
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/navigation/landmark/EveryEn terDecorator.as
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/navigation/landmark/FirstEn terDecorator.as
        cairngorm3/trunk/libraries/ObserverParsley/src/com/adobe/cairngorm/CairngormObserverLib.a s

    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

  • Problem with the navigation library with states in modules

    Hello,
    The application I'm working on is based on a shell which contain a "contentNavigator" where several states are defined :
    <code>
    <fx:Declarations>
            <parsley:Configure />
        </fx:Declarations>
        <fx:Metadata>
            [Waypoint(mode="states",name="shell")]
        </fx:Metadata>
        <s:states>
            <s:State name="dashboardModule" />
            <s:State name="registrationModule" />
            <s:State name="marketingModule" />
        </s:states>
        <components:ModulePad id="dashboard" includeIn="dashboardModule"  url="../../dashboard/bin-debug/dashboardModule.swf" />
        <components:ModulePad id="registration" includeIn="registrationModule"  url="../../registration/bin-debug/registrationModule.swf" />
    </code>
    Each ModulePad is a custom component that manage the loading/unloading of a spark module. The navigation in each spark module is based on the same principle, for example in the registrationModule :
    <code>
        <fx:Declarations>
            <parsley:ContextBuilder config="RegistrationContext" />
            <parsley:Configure />
        </fx:Declarations>
        <fx:Metadata>
            [Waypoint(mode="states",name="shell.registrationModule")]
        </fx:Metadata>
        <s:states>
            <s:State name="registration" />
            <s:State name="tracking" />
        </s:states>
        <presentation:Registration includeIn="registration" width="1000" top="130" left="40" bottom="30"/>
        <presentation:RegistrationTracking includeIn="tracking" width="1000" top="130" left="40" bottom="30"/>
    </code>
    At the beginning the navigation is working properly : when a NavigationEvent ("shell.registrationModule.tracking") is dispatched the registrationModule is loaded and when the loading is done the state is set to "tracking".
    Then if a NavigationEvent ("shell.dashboardModule.dashboard") is dispatched the registrationModule is automatically unloaded and the dashboardModule is loaded. But then if a NavigationEvent ("shell.registrationModule.tracking") is dispatched again, the state is set to "registration" (the default one) instead of "tracking" like the first time.
    The event log show that a (com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.tracking:exit) is triggered just after the load of the registrationModule.
    Is this a bug or am i making a mistake in the implementation of the navigation ?
    Thanks for you help.

    Here is the log of the navigation events if it can help :
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell:firstEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell:everyEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher waypointChange shell
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule:firstEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule:everyEnter
    [SWF] Users:vincentjuge:Documents:Adobe Flash Builder 4.5:ThalamusDashboard:bin-debug:DashboardModule.swf - 1 052 130 octets après la décompression
    com.adobe.cairngorm.navigation.core.NavigationDispatcher waypointChange shell.dashboardModule
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule.dashboard:firstEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule.dashboard:everyEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule.dashboard:exit
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule:exit
    com.adobe.cairngorm.navigation.core.NavigationDispatcher waypointChange shell
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule:firstEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule:everyEnter
    [SWF] Users:vincentjuge:Documents:Adobe Flash Builder 4.5:ThalamusRegistration:bin-debug:RegistrationModule.swf - 1 108 823 octets après la décompression
    com.adobe.cairngorm.navigation.core.NavigationDispatcher waypointChange shell.registrationModule
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.tracking:firstEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.tracking:everyEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.tracking:exit
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule:exit
    com.adobe.cairngorm.navigation.core.NavigationDispatcher waypointChange shell
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule.dashboard:enter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule.dashboard:everyEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule:enter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule:everyEnter
    [SWF] Users:vincentjuge:Documents:Adobe Flash Builder 4.5:ThalamusDashboard:bin-debug:DashboardModule.swf - 1 052 130 octets après la décompression
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule.dashboard:exit
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.dashboardModule:exit
    com.adobe.cairngorm.navigation.core.NavigationDispatcher waypointChange shell
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.tracking:enter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.tracking:everyEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule:enter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule:everyEnter
    [SWF] Users:vincentjuge:Documents:Adobe Flash Builder 4.5:ThalamusRegistration:bin-debug:RegistrationModule.swf - 1 108 823 octets après la décompression
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.tracking:exit
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.registration:firstEnter
    com.adobe.cairngorm.navigation.core.NavigationDispatcher shell.registrationModule.registration:everyEnter
    [Décharger SWF] Users:vincentjuge:Documents:Adobe Flash Builder 4.5:ThalamusDashboard:bin-debug:DashboardModule.swf
    [Décharger SWF] Users:vincentjuge:Documents:Adobe Flash Builder 4.5:Thalamus:bin-debug:Thalamus.swf

  • [svn:cairngorm3:] 16446: First version of Spring ActionScript extension to Navigation lib, minor refactorings on Parsley and Swiz extensions and samples.

    Revision: 16446
    Revision: 16446
    Author:   [email protected]
    Date:     2010-06-03 14:09:00 -0700 (Thu, 03 Jun 2010)
    Log Message:
    First version of Spring ActionScript extension to Navigation lib, minor refactorings on Parsley and Swiz extensions and samples.
    Modified Paths:
        cairngorm3/trunk/libraries/NavigationSpringAS/.actionScriptProperties
        cairngorm3/trunk/libraries/NavigationSpringAS/.flexLibProperties
        cairngorm3/trunk/libraries/NavigationSpringAS/src/com/adobe/cairngorm/navigation/landmark /AbstractNavigationProcessor.as
        cairngorm3/trunk/libraries/NavigationSpringAS/src/com/adobe/cairngorm/navigation/landmark /LandmarkProcessor.as
        cairngorm3/trunk/libraries/NavigationSpringAS/src/com/adobe/cairngorm/navigation/waypoint /WaypointProcessor.as
    Added Paths:
        cairngorm3/trunk/libraries/NavigationSpringAS/src/com/adobe/cairngorm/navigation/core/Pro cessorFilter.as

    I am getting this same issue. Did you ever find a fix for this?

  • [svn:cairngorm3:] 16449: First version of Spring ActionScript extension to Navigation lib, minor refactorings on Parsley and Swiz extensions and samples.

    Revision: 16449
    Revision: 16449
    Author:   [email protected]
    Date:     2010-06-03 14:34:18 -0700 (Thu, 03 Jun 2010)
    Log Message:
    First version of Spring ActionScript extension to Navigation lib, minor refactorings on Parsley and Swiz extensions and samples.
    Modified Paths:
        cairngorm3/trunk/libraries/NavigationSpringAS/src/com/adobe/cairngorm/navigation/core/Pro cessorFilter.as
        cairngorm3/trunk/libraries/NavigationSpringAS/src/com/adobe/cairngorm/navigation/landmark /AbstractNavigationProcessor.as
        cairngorm3/trunk/libraries/NavigationSpringAS/src/com/adobe/cairngorm/navigation/landmark /LandmarkProcessor.as
        cairngorm3/trunk/libraries/NavigationSpringAS/src/com/adobe/cairngorm/navigation/waypoint /WaypointProcessor.as
    Added Paths:
        cairngorm3/trunk/libraries/NavigationSpringAS/src/com/adobe/cairngorm/navigation/core/Met adataUtil.as

    I am getting this same issue. Did you ever find a fix for this?

  • [svn:cairngorm3:] 16445: First version of Spring ActionScript extension to Navigation lib, minor refactorings on Parsley and Swiz extensions and samples.

    Revision: 16445
    Revision: 16445
    Author:   [email protected]
    Date:     2010-06-03 13:44:03 -0700 (Thu, 03 Jun 2010)
    Log Message:
    First version of Spring ActionScript extension to Navigation lib, minor refactorings on Parsley and Swiz extensions and samples.
    Modified Paths:
        cairngorm3/trunk/libraries/NavigationSpringAS/src/com/adobe/cairngorm/navigation/waypoint /DestinationRegistrationWithWaypointHandler.as

    I am getting this same issue. Did you ever find a fix for this?

  • Navigation Wizard waypoint relative rather than absolute?

    Is there a reason why Wizard.onNavigateTo only checks agains the immediate parent waypoint? This limits the wizard from working across multiple waypoint levels and doesn't work with nested waypoints.
    1. Create a wizard with a waypoint called foo.bar containing several children
    e.g.
    <wizard:Wizard id="myWizard" waypoint="foo.bar">
            <mx:Array>
                <mx:String>foo.bar.step1</mx:String>
                <mx:String>foo.bar.step2</mx:String>
                <mx:String>foo.bar.step3</mx:String>
            </mx:Array>
    </wizard:Wizard>
    2. Navigating to a destination within foo.bar using the wizard
    e.g. foo.bar.step2
    in the wizard onNavigateTo it checks that the wizard waypoint equals "bar" instead of "foo.bar" and doesn't update.
    Would it be more flexible to check if the target destination is within the wizard and update the currentDestination accordingly? If the target destination is not within the wizard then perhaps the wizard resets currentDestination to null? A better solution would be to use the wizard's waypoint to determine if the currentDestination is reset when a navigateTo event occurs - if the destination is outside the 'scope' of the wizard waypoint (i.e. not a decendant) then set to null, otherwise leave wizard state as is.
    in com.adobe.cairngorm.navigation.wizard.Wizard.as
    [MessageHandler(selector="navigateTo")]
            public function onNavigateTo(event:NavigationEvent):void
                var qualifiedWaypoint:String = event.waypoint;
                if(_stages.indexOf(event.destination) > -1)
                    currentDestination = event.destination;
                    wizardChange();
              else
                    var commonAncestor:String = getCommonAncestor(_waypoint, qualifiedWaypoint);
                    if(commonAncestor != _waypoint)
                        currentDestination = null;
                        wizardChange();
    private function getCommonAncestor(destination1:String, destination2:String):String
                var ancestor:String;
                var first : Array = destination1.split( "." );
                var second : Array = destination2.split( "." );
                var length : int = Math.min( first.length , second.length );
                for ( var i : int ; i < length ; i++ )
                    if ( first[ i ] != second[ i ] )
                        break;
                ancestor = first.slice( 0 , i ).join( "." );
                return ancestor;

    Is there a reason why Wizard.onNavigateTo only checks agains the immediate parent waypoint? This limits the wizard from working across multiple waypoint levels and doesn't work with nested waypoints.
    1. Create a wizard with a waypoint called foo.bar containing several children
    e.g.
    <wizard:Wizard id="myWizard" waypoint="foo.bar">
            <mx:Array>
                <mx:String>foo.bar.step1</mx:String>
                <mx:String>foo.bar.step2</mx:String>
                <mx:String>foo.bar.step3</mx:String>
            </mx:Array>
    </wizard:Wizard>
    2. Navigating to a destination within foo.bar using the wizard
    e.g. foo.bar.step2
    in the wizard onNavigateTo it checks that the wizard waypoint equals "bar" instead of "foo.bar" and doesn't update.
    Would it be more flexible to check if the target destination is within the wizard and update the currentDestination accordingly? If the target destination is not within the wizard then perhaps the wizard resets currentDestination to null? A better solution would be to use the wizard's waypoint to determine if the currentDestination is reset when a navigateTo event occurs - if the destination is outside the 'scope' of the wizard waypoint (i.e. not a decendant) then set to null, otherwise leave wizard state as is.
    in com.adobe.cairngorm.navigation.wizard.Wizard.as
    [MessageHandler(selector="navigateTo")]
            public function onNavigateTo(event:NavigationEvent):void
                var qualifiedWaypoint:String = event.waypoint;
                if(_stages.indexOf(event.destination) > -1)
                    currentDestination = event.destination;
                    wizardChange();
              else
                    var commonAncestor:String = getCommonAncestor(_waypoint, qualifiedWaypoint);
                    if(commonAncestor != _waypoint)
                        currentDestination = null;
                        wizardChange();
    private function getCommonAncestor(destination1:String, destination2:String):String
                var ancestor:String;
                var first : Array = destination1.split( "." );
                var second : Array = destination2.split( "." );
                var length : int = Math.min( first.length , second.length );
                for ( var i : int ; i < length ; i++ )
                    if ( first[ i ] != second[ i ] )
                        break;
                ancestor = first.slice( 0 , i ).join( "." );
                return ancestor;

  • [svn:cairngorm3:] 16165: Cairngorm 3.0.11 Release!

    Revision: 16165
    Revision: 16165
    Author:   [email protected]
    Date:     2010-05-17 16:36:42 -0700 (Mon, 17 May 2010)
    Log Message:
    Cairngorm 3.0.11 Release!
    Modified Paths:
        cairngorm3/maven-repository/com/adobe/cairngorm/build-parent/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/build-parent/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/build-parent/maven-metadata.xml.sha1
        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/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/integrationDMS/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC/maven-metadata.xml.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/lib-parent/maven-metadata.xml
        cairngorm3/maven-repository/com/adobe/cairngorm/lib-parent/maven-metadata.xml.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/lib-parent/maven-metadata.xml.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/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/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/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/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/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/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
    Added Paths:
        cairngorm3/maven-repository/com/adobe/cairngorm/build-parent/3.0.11/
        cairngorm3/maven-repository/com/adobe/cairngorm/build-parent/3.0.11/build-parent-3.0.11.p om
        cairngorm3/maven-repository/com/adobe/cairngorm/build-parent/3.0.11/build-parent-3.0.11.p om.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/build-parent/3.0.11/build-parent-3.0.11.p om.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/cairngorm3/3.0.11/
        cairngorm3/maven-repository/com/adobe/cairngorm/cairngorm3/3.0.11/cairngorm3-3.0.11.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/cairngorm3/3.0.11/cairngorm3-3.0.11.pom.m d5
        cairngorm3/maven-repository/com/adobe/cairngorm/cairngorm3/3.0.11/cairngorm3-3.0.11.pom.s ha1
        cairngorm3/maven-repository/com/adobe/cairngorm/contract/
        cairngorm3/maven-repository/com/adobe/cairngorm/contract/1.1/
        cairngorm3/maven-repository/com/adobe/cairngorm/contract/1.1/contract-1.1.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/contract/1.1/contract-1.1.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/contract/1.1/contract-1.1.pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/contract/1.1/contract-1.1.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/contract/1.1/contract-1.1.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/contract/1.1/contract-1.1.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.9/
        cairngorm3/maven-repository/com/adobe/cairngorm/integration/0.9/integration-0.9.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/integration/0.9/integration-0.9.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integration/0.9/integration-0.9.pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integration/0.9/integration-0.9.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/integration/0.9/integration-0.9.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integration/0.9/integration-0.9.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS/0.9/
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS/0.9/integrationDMS-0.9.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS/0.9/integrationDMS-0.9.pom .md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS/0.9/integrationDMS-0.9.pom .sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS/0.9/integrationDMS-0.9.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS/0.9/integrationDMS-0.9.swc .md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationDMS/0.9/integrationDMS-0.9.swc .sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC/0.9/
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC/0.9/integrationRPC-0.9.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC/0.9/integrationRPC-0.9.pom .md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC/0.9/integrationRPC-0.9.pom .sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC/0.9/integrationRPC-0.9.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC/0.9/integrationRPC-0.9.swc .md5
        cairngorm3/maven-repository/com/adobe/cairngorm/integrationRPC/0.9/integrationRPC-0.9.swc .sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/lib-parent/3.0.11/
        cairngorm3/maven-repository/com/adobe/cairngorm/lib-parent/3.0.11/lib-parent-3.0.11.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/lib-parent/3.0.11/lib-parent-3.0.11.pom.m d5
        cairngorm3/maven-repository/com/adobe/cairngorm/lib-parent/3.0.11/lib-parent-3.0.11.pom.s ha1
        cairngorm3/maven-repository/com/adobe/cairngorm/module/0.8/
        cairngorm3/maven-repository/com/adobe/cairngorm/module/0.8/module-0.8.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/module/0.8/module-0.8.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/module/0.8/module-0.8.pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/module/0.8/module-0.8.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/module/0.8/module-0.8.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/module/0.8/module-0.8.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation/0.8/
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation/0.8/navigation-0.8.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation/0.8/navigation-0.8.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation/0.8/navigation-0.8.pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation/0.8/navigation-0.8.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation/0.8/navigation-0.8.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigation/0.8/navigation-0.8.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley/
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley/0.8/
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley/0.8/navigationParsley-0 .8.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley/0.8/navigationParsley-0 .8.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley/0.8/navigationParsley-0 .8.pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley/0.8/navigationParsley-0 .8.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley/0.8/navigationParsley-0 .8.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/navigationParsley/0.8/navigationParsley-0 .8.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/observer/1.8/
        cairngorm3/maven-repository/com/adobe/cairngorm/observer/1.8/observer-1.8.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/observer/1.8/observer-1.8.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/observer/1.8/observer-1.8.pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/observer/1.8/observer-1.8.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/observer/1.8/observer-1.8.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/observer/1.8/observer-1.8.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley/1.8/
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley/1.8/observerParsley-1.8.p om
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley/1.8/observerParsley-1.8.p om.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley/1.8/observerParsley-1.8.p om.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley/1.8/observerParsley-1.8.s wc
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley/1.8/observerParsley-1.8.s wc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/observerParsley/1.8/observerParsley-1.8.s wc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/popup/1.7/
        cairngorm3/maven-repository/com/adobe/cairngorm/popup/1.7/popup-1.7.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/popup/1.7/popup-1.7.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/popup/1.7/popup-1.7.pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/popup/1.7/popup-1.7.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/popup/1.7/popup-1.7.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/popup/1.7/popup-1.7.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley/
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley/1.7/
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley/1.7/popupParsley-1.7.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley/1.7/popupParsley-1.7.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley/1.7/popupParsley-1.7.pom.sha 1
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley/1.7/popupParsley-1.7.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley/1.7/popupParsley-1.7.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/popupParsley/1.7/popupParsley-1.7.swc.sha 1
        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.7/
        cairngorm3/maven-repository/com/adobe/cairngorm/task/1.7/task-1.7.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/task/1.7/task-1.7.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/task/1.7/task-1.7.pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/task/1.7/task-1.7.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/task/1.7/task-1.7.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/task/1.7/task-1.7.swc.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/validation/1.8/
        cairngorm3/maven-repository/com/adobe/cairngorm/validation/1.8/validation-1.8.pom
        cairngorm3/maven-repository/com/adobe/cairngorm/validation/1.8/validation-1.8.pom.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/validation/1.8/validation-1.8.pom.sha1
        cairngorm3/maven-repository/com/adobe/cairngorm/validation/1.8/validation-1.8.swc
        cairngorm3/maven-repository/com/adobe/cairngorm/validation/1.8/validation-1.8.swc.md5
        cairngorm3/maven-repository/com/adobe/cairngorm/validation/1.8/validation-1.8.swc.sha1

  • [svn:cairngorm3:] 14751: Bugfix for history management with navigation interceptors

    Revision: 14751
    Revision: 14751
    Author:   [email protected]
    Date:     2010-03-14 12:20:05 -0700 (Sun, 14 Mar 2010)
    Log Message:
    Bugfix for history management with navigation interceptors
    Modified Paths:
        cairngorm3/trunk/libraries/Integration/pom.xml
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/navigation/core/NavigationM essageProcessor.as
        cairngorm3/trunk/libraries/NavigationTest/src/NavigatorSample1.mxml
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/Sample1Context.mxml
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/NavigationBar.mxml

    Alex,
    On the mac, I've been attempting to check out the Navigation project but I keep getting prompted for credentials.  This is using Subclipse within Flex Builder3 on the Mac.
    Jeff

  • [svn:cairngorm3:] 19478: -General: Reverted migration to Flex 4. 5 back to Flex 4.1.

    Revision: 19478
    Revision: 19478
    Author:   [email protected]
    Date:     2010-12-20 03:02:48 -0800 (Mon, 20 Dec 2010)
    Log Message:
    -General: Reverted migration to Flex 4.5 back to Flex 4.1. -Insync Sample: Fixed Insync Build error. -Navigation: added runtime navigation feature for SelectedChildWaypoint (default Waypoint). (work in progress).
    Modified Paths:
        cairngorm3/trunk/libraries/Contract/.actionScriptProperties
        cairngorm3/trunk/libraries/ContractTest/.actionScriptProperties
        cairngorm3/trunk/libraries/Integration/.actionScriptProperties
        cairngorm3/trunk/libraries/IntegrationDMS/.actionScriptProperties
        cairngorm3/trunk/libraries/IntegrationParsley/.actionScriptProperties
        cairngorm3/trunk/libraries/IntegrationParsley/.flexLibProperties
        cairngorm3/trunk/libraries/IntegrationTest/.actionScriptProperties
        cairngorm3/trunk/libraries/Module/.actionScriptProperties
        cairngorm3/trunk/libraries/Module/.flexLibProperties
        cairngorm3/trunk/libraries/ModuleTest/.actionScriptProperties
        cairngorm3/trunk/libraries/Navigation/.actionScriptProperties
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/navigation/waypoint/decorat or/ContainerDestinationRegistration.as
        cairngorm3/trunk/libraries/NavigationParsley/.actionScriptProperties
        cairngorm3/trunk/libraries/NavigationParsleyTest/.actionScriptProperties
        cairngorm3/trunk/libraries/NavigationParsleyTest/src/NavigationParsleyStates.mxml
        cairngorm3/trunk/libraries/NavigationParsleyTest/src/NavigationParsleyToggleButtonBar.mxm l
        cairngorm3/trunk/libraries/NavigationParsleyTest/src/states/presentation/ContentPM.as
        cairngorm3/trunk/libraries/NavigationParsleyTest/src/togglebuttonbar/presentation/Content PM.as
        cairngorm3/trunk/libraries/NavigationSpringAS/.actionScriptProperties
        cairngorm3/trunk/libraries/NavigationSpringASTest/.actionScriptProperties
        cairngorm3/trunk/libraries/NavigationSwiz/.actionScriptProperties
        cairngorm3/trunk/libraries/NavigationSwizTest/.actionScriptProperties
        cairngorm3/trunk/libraries/Observer/.actionScriptProperties
        cairngorm3/trunk/libraries/ObserverParsley/.actionScriptProperties
        cairngorm3/trunk/libraries/ObserverTest/.actionScriptProperties
        cairngorm3/trunk/libraries/Persistence/.actionScriptProperties
        cairngorm3/trunk/libraries/PersistenceTest/.actionScriptProperties
        cairngorm3/trunk/libraries/PersistenceTest/src/AllTests-app.xml
        cairngorm3/trunk/libraries/PersistenceTest/src/IntegrationTests-app.xml
        cairngorm3/trunk/libraries/PersistenceTest/src/PersistenceSample-app.xml
        cairngorm3/trunk/libraries/PersistenceTest/src/UnitTests-app.xml
        cairngorm3/trunk/libraries/Popup/.actionScriptProperties
        cairngorm3/trunk/libraries/PopupParsley/.actionScriptProperties
        cairngorm3/trunk/libraries/PopupTest/.actionScriptProperties
        cairngorm3/trunk/libraries/Task/.actionScriptProperties
        cairngorm3/trunk/libraries/TaskTest/.actionScriptProperties
        cairngorm3/trunk/libraries/Validation/.actionScriptProperties
        cairngorm3/trunk/libraries/ValidationTest/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-basic/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-basic/.flexProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/.flexProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-expenses/.flexProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-messaging/.flexProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/.actionScriptProperties
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/.flexProperties
    Added Paths:
        cairngorm3/trunk/libraries/ObserverTest/html-template/history/
        cairngorm3/trunk/libraries/ObserverTest/html-template/history/history.css
        cairngorm3/trunk/libraries/ObserverTest/html-template/history/history.js
        cairngorm3/trunk/libraries/ObserverTest/html-template/history/historyFrame.html
        cairngorm3/trunk/libraries/ObserverTest/html-template/index.template.html
        cairngorm3/trunk/libraries/ObserverTest/html-template/playerProductInstall.swf
        cairngorm3/trunk/libraries/ObserverTest/html-template/swfobject.js
    Removed Paths:
        cairngorm3/trunk/libraries/NavigationSpringAS/.settings/com.adobe.flexbuilder.project.pre fs

    Simeon,
    Thanks for that, I had a brainfart and forgot you can have the properties defined in that manner.  I changed it but it still wasn't working which made me realize I had to change the backgroundColor property on the view in Away3D.  I realized this after trying the params for the class and then not adding the view (which had a white bg) and then i looked at the docs and bam, there it was.  Thanks!
    Matt

  • [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

  • Illegal override error in latest CairngormNavigationLib

    Hello,
    I'm implementing the latest Cairngorm 3 libraries into my parsley application (which uses modules) and I'm getting the following error:
    VerifyError: Error #1053: Illegal override of createReceiver in com.adobe.cairngorm.navigation.landmark.AbstractNavigationDecorator.
    Any advice? Tom, Alex?
    Jeff

    I've just comitted a version of the Navigation lib for parsley 2.2 to trunk. We're in the process of migrating all Parsley dependend libraries to Parsley 2.2 but it might take us a few days/weeks. Follow the forums (i.e. the http://forums.adobe.com/community/opensource/cairngorm/commits) to get notified once the work in complete. Alternatively, send us your migrations in case you're faster than us!

  • [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

Maybe you are looking for

  • Does the 4th gen shuffle work with windows 8

    I have a 4th gen shuffle and my laptop, windows 8, is not recognizing it.  What can I do??

  • Extract forecast results and accuracy (errors) in an ABAP program

    Hi Experts, We are executing forecast in background using planning jobs in a process chain. We are doing this in 2 stages - 1. at Product group & Location level and 2. at Product & Location level. The selection ids that we have created for these jobs

  • Is there a good anti virus/diagnostic for iMac

    My iMac is doing many weird things.   With out my clicking any thing, the stupid mackeeper web page opens and freezes my computer. Also, my homepage will not stay as I change it. I NEVER changed it to start with but now when I start up Safari, this c

  • Mac Pro trying to boot from external drive instead of HD?

    my osx was recently reinstalled at the Genius Bar due to a boot problem caused by a power outage.  Now if i want to  boot up i have to unplug time machine first;  it is possibly trying to boot from the external drive till i unplug it.  What should I

  • Maximum number of cores

    Hi, I am using solr4.0, i have created 10 cores in solr. I want to know how many maximum number of cores can be created in solr.