[svn] 4106: Mostly rename changes.

Revision: 4106
Author: [email protected]
Date: 2008-11-13 17:56:47 -0800 (Thu, 13 Nov 2008)
Log Message:
Mostly rename changes. IVisualItem -> IVisualElement. IVisualContainer -> IVisualElementContainer. Also changed the APIs so that it's addElement, removeElement, etc.. instead of addItem, removeItem, etc... Moreover, all of these APIs have been added to IVisualElementContainer (not just the read-only ones). Now there's a common interface for all containers (even Halo's Container class implements it). There's no more need to do:
if (x is Group || x is FxContainer)
Just use the IVisualElementContainer interface.
Some classes, like FxScroller (and perhaps DataGroup/FxDataContainer), will only implement the "getter" part of the API. For now, if you call the mutation methods, we will throw an exception. Perhaps later we'll add a separate interface for the read-only portion and the mutator interface will extend that one.
There might be a few more places in the code that need to be updated to use the new names for the methods. I know Mustella needs cleaning up so it doesn't use getItem and uses getElement instead. I've left the old APIs in there exactly for this purpose, so we can gradually move over to the new names (esp. QA).
At some point soon, we will remove the old methods as well as type them more strictly to only accept IVisualElements, for example addElement(element:IVisualElement). Part of this work is dependent on updating the Flash Component Kit so that it implements IVisualElement (and perhaps IVisualElementContainer for containers).
Ran checkintests and all gumbo mustella tests.
QE Notes: Please update your tests to use addElement, removeElement, etc... along with the new IVisualElementContainer interface. The old APIs (addItem, removeItem, etc...) will be removed soon.
Doc Notes: None
Bugs: -
Reviewer: Hans (he patiently sat through all these files...)
Modified Paths:
flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/DataGroup.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxContainer.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxList.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxScroller.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/Group.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/effects/AddAction.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/effects/RemoveAction.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/effects/effectClasses/AddActionInstance.a s
flex/sdk/trunk/frameworks/projects/flex4/src/mx/effects/effectClasses/FxAnimate3DInstance .as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/effects/effectClasses/FxAnimateInstance.a s
flex/sdk/trunk/frameworks/projects/flex4/src/mx/effects/effectClasses/FxFadeInstance.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/effects/effectClasses/RemoveActionInstanc e.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/graphicsClasses/GraphicElement.a s
flex/sdk/trunk/frameworks/projects/flex4/src/mx/layout/ILayoutItem.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/layout/LayoutItemHelper.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/layout/LayoutItemUIC.as
flex/sdk/trunk/frameworks/projects/flex4/src/mx/states/AddItems.as
flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Container.as
flex/sdk/trunk/frameworks/projects/framework/src/mx/core/IUIComponent.as
flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as
flex/sdk/trunk/tools/dependencychecker/flex/tools/dependencychecker/FrameworkSwcDependenc yRules.java
Added Paths:
flex/sdk/trunk/frameworks/projects/framework/src/mx/core/IVisualElement.as
flex/sdk/trunk/frameworks/projects/framework/src/mx/core/IVisualElementContainer.as
Removed Paths:
flex/sdk/trunk/frameworks/projects/flex4/src/mx/core/IVisualContainer.as
flex/sdk/trunk/frameworks/projects/framework/src/mx/core/IVisualItem.as

These are automated emails from the OSMF forums.  To unsubscribe, go here:
http://forums.adobe.com/community/opensource/osmf/commits
-- Brian

Similar Messages

  • [svn] 3552: This patch contains multiple changes, mostly renames, outlined below:

    Revision: 3552
    Author: [email protected]
    Date: 2008-10-09 15:07:55 -0700 (Thu, 09 Oct 2008)
    Log Message:
    This patch contains multiple changes, mostly renames, outlined below:
    1.Rename properties in FxComponent: skinObject -> skin, skinZZ -> skinClass.
    2.Rename property in Skin: data -> fxComponent (this also means Skin doesn?\226?\128?\153t implement IDataRenderer anymore)
    3.Renames in DataGroup: Mostly around "skin" to "renderer" to get terminology correct
    4.Random other cleanups: For instance changing typing of "*" to "Object" in ItemsComponent and DataGroup or removing some un-used imports in Group and GroupBase.
    5.Lots of cleanup in flex4tests to deal with renaming of classes and renaming of properties
    6.Gumbo-manifest.mxml - typo...some files listed as mx.componentss.* instead of mx.components.*. This file is going away as all components are moved into the 2009 namespace, but we'll fix this for now.
    7.Defaults.css ?\226?\128?\147 FxDataComponent should be FxDataContainer.
    8.SystemManger fix: this was in the previous SystemManager but got overwritten by a bad merge. Jim?\226?\128?\153s aware of the issue, and I?\226?\128?\153m checking in the fix for it.
    QE: Yes - Joann and Steve have pre-emptively made the changes
    Doc: Yes
    Bugs: SDK-17056, SDK-17174
    Reviewer: Chet, Evtim
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17056
    http://bugs.adobe.com/jira/browse/SDK-17174
    Modified Paths:
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/AddItemsTest.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/EffectsProperties.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/NewEffects.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/RemoveItemsTest.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/ScrollbarFrenzy.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/components/AnimationPropertiesForm. mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/components/CircularScrollBar.as
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/flex4test.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/skins/CircularScrollBarSkin.mxml
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/skins/MyVScrollBarSkin.mxml
    flex/sdk/trunk/frameworks/projects/flex4/defaults.css
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/DataGroup.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxContainer.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxList.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxScroller.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/Group.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/Skin.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/baseClasses/FxComponent.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/baseClasses/GroupBase.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxApplicationSkin.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxHScrollBarSkin.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxHSliderSkin.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxNumericStepperSkin.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxSpinnerSkin.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxVScrollBarSkin.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxVSliderSkin.mxml
    flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemManager.as

    Hi, Nubz!
    Yes, I just saw that, and am still chuckling.
    Maybe that will mollify the Jive gods?
    Thanks again,
    Jim

  • I have Lion on my laptop and I want to back up my calendar TO my iphone. Not the reverse. iCloud only goes from iphone to iCloud to mac not the other way. Also, why doesn't "sync" mean update most recent changes across all devices?

    I have Lion on my laptop and I want to back up my calendar TO my iphone. Not the reverse. iCloud only goes from iphone to iCloud to mac not the other way. Also, why doesn't "sync" mean update most recent changes across all devices? I thought that was the point of iCloud. Any suggestions since iCloud doesn't seem to work?

    It's a work computer so I wanted to save them to my iTunes so I can access from another computer.  Should I go to a home computer and just Import for best results?  If so how do I do this?  Also, why would I be synched with another library and how do I find out what this is?  Very new/green user here

  • How can I upgrade my Photoshop Element to the most recent changes. Thank you!

    How can I upgrade my Photoshop Element to the most recent changes. Thank you!

    Hi,
    If you mean "How do you upgrade to Photoshop Elements 13 from an earlier version" then you need to buy the new version. There is an upgrade option but if you shop around then you can sometimes buy the full product cheaper. They are both the same product once you have installed them.
    If you install Photoshop Elements 13 on the same system as your old version the you can convert your existing catalog to the new format.
    Note that Photoshop Elements 13 will not work on older operating systems. The 30 day trial version can be downloaded from here
    Download Photoshop Elements products | 13, 12, 11, 10
    If you are asking about updating the camera raw in your current version then we need to know which version you want to update. Normally, you can go to the Help menu and select Updates.
    Note that each version has a limit on the version of camera raw that it can use - again we need to know which version you currently have.
    Brian

  • [Solved] Vim: Can only undo most recent change

    Howdy-ha, folks.  So I've been (very) gradually making the transition from Geany to Vim over several months, mostly without issue.  However, I've been reluctant to use Vim for anything other than quick, simple operations for one reason: The "u" key will only undo the most recent change, as though there aren't any other changes in the history.  Hitting "u" a second time reverses the "undo" command, so that repeatedly hitting it will just remove and add the same small change over and over again.  No matter how much time I spend looking into this it seems I'm the only person who's ever had this problem, and it occurs regardless of whether /etc/vimrc and ~/.vimrc exist.  As a result, I can't do any complex editing for fear of botching something and needing to spend hours backtracing my mistakes.  Any help on this is appreciated.
    Last edited by ANOKNUSA (2012-05-18 15:22:06)

    skanky wrote:It should do. There's a comment in /etc/vimrc recommending against changing, so it's worth looking into. There are other settings there that could affect some behaviour, apparently.
    That would likely be the issue: I overwrote the default with my own config file, without including runtime! archlinux.vim in my own config.  As far as I can tell, things are working as both user and root.  I suppose I should have paid more attention, but then again, there's no mention in the Arch wiki entry about not altering/deleting any of those files:
    Arch Wiki Vim Entry wrote:
    Vim's personal configuration file is located in the home directory: ~/.vimrc. Advanced users tend to keep a well-tailored ~/.vimrc. The global configuration file is located at /etc/vimrc. The fall-back $VIM variable is defined as /usr/share/vim/. For example, to create a global colorscheme the *.vim colorscheme file should be stored in /usr/share/vim/vimfiles/.
    Currently, the vim global configuration in Arch Linux is very basic and differs from many other distributions' default vim configuration file. To get some commonly expected behaviors (like syntax highlighting, return to the line of the last edit...), consider using vim's example configuration file:
    cp /etc/vimrc /etc/vimrc.bak
    cp /usr/share/vim/vim73/vimrc_example.vim /etc/vimrc
    It seems the comment in /usr/share/vim/vimfiles/archlinux.vim is all new users have to go on, and it's not usually the first place anyone looks.

  • Problem getting most recently changed item.

    Hi,
    I am trying to set the value of an item based on the most recent item to have changed.
    I have 3 conditional processes which set the value of a hidden item (P1_FOCUS) 'When Any Item in Comma Delimited List Of Items Has Changed'.
    Proc1 (sequence 50): If P1_SEL_A changes, P1_FOCUS is set to A.
    Proc2 (sequence 60): If P1_SEL_B changes, P1_FOCUS is set to B.
    Proc3 (sequence 70): If P1_SEL_C changes, P1_FOCUS is set to C.
    If all three P1_SEL... items (select list with submit) are changed at some point, it doesn't pick up the most recently changed item, it just knows they have all changed and therefore the item is set to C as the C process is the last to be run (I assume the processes are run in sequence order?).
    Is there a way to only pick up the most recently changed item? Maybe clear the history of what has changed on this page somewhere?
    Overall, I am trying to get the last item in changed before the submit so the focus can go back to that item on the page in the page 'on load' process.
    Cheers
    Katie

    ApEx normally generates links that look like buttons by adding styling to an "a" tag.
    "a" tags accept focus in the same way as buttons so you have actually lost the focus on the final input field by the time you've clicked the link.
    However, you can test this by creating a new button template in your theme. Use something like the following in the Template Text:
    <button style="font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 11px; padding:1px; margin: 2px; text-decoration: none; cursor: pointer;" onclick="#LINK#">#LABEL#</button>
    This will create a normal HTML button.
    If this doesn't work, can you paste into this thread a copy of the javascript you are using.
    Regards
    Andy

  • [svn] 3890: Various renames for FxComponent, mostly based on PARB recommendations.

    Revision: 3890
    Author: [email protected]
    Date: 2008-10-24 15:24:17 -0700 (Fri, 24 Oct 2008)
    Log Message:
    Various renames for FxComponent, mostly based on PARB recommendations. Most were just simple name changes or removal of methods. Because commitSkinState() no longer exists, Button had to be modified pretty extensively so that it didn't key off of that method.
    QE Notes: Joann's updated the tests and excluded them pending this checkin
    Doc Notes: None
    Bugs: SDK-17116
    Reviewer: Hans, Evtim
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17116
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxButton.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxScroller.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxSpinner.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxTextArea.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxTextInput.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxToggleButton.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/baseClasses/FxComponent.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/baseClasses/FxContainerBase.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/baseClasses/FxTrackBase.as

  • [svn:osmf:] 15003: PARB changes: Rename BasicVideoElement to LightweightVideoElement.

    Revision: 15003
    Revision: 15003
    Author:   [email protected]
    Date:     2010-03-24 15:31:43 -0700 (Wed, 24 Mar 2010)
    Log Message:
    PARB changes: Rename BasicVideoElement to LightweightVideoElement.
    Modified Paths:
        osmf/trunk/framework/OSMF/.flexLibProperties
        osmf/trunk/framework/OSMF/org/osmf/elements/VideoElement.as
        osmf/trunk/framework/OSMFTest/org/osmf/OSMFTests.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestVideoElement.as
        osmf/trunk/framework/OSMFTest/org/osmf/media/TestMediaPlayerWithVideoElement.as
    Added Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/LightweightVideoElement.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestLightweightVideoElement.as
        osmf/trunk/framework/OSMFTest/org/osmf/media/TestMediaPlayerWithLightweightVideoElement.a s
    Removed Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/BasicVideoElement.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestBasicVideoElement.as
        osmf/trunk/framework/OSMFTest/org/osmf/media/TestMediaPlayerWithBasicVideoElement.as

  • [svn:osmf:] 14502: PARB changes: Rename DRMEvent' s error to mediaError to be consistent with other trait event classes.

    Revision: 14502
    Revision: 14502
    Author:   [email protected]
    Date:     2010-03-01 20:05:21 -0800 (Mon, 01 Mar 2010)
    Log Message:
    PARB changes: Rename DRMEvent's error to mediaError to be consistent with other trait event classes.
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/compositeClasses/CompositeDRMTrait.as
        osmf/trunk/framework/OSMF/org/osmf/events/DRMEvent.as
        osmf/trunk/framework/OSMF/org/osmf/events/DVREvent.as
        osmf/trunk/framework/OSMF/org/osmf/net/drm/NetStreamDRMTrait.as

    Does the ext directory have the php_oci8.dll? In the original steps the PHP dir is renamed. In the given php.in the extension_dir looks like it has been updated correctly. Since PHP distributes php_oci8.dll by default I reckon there would be a very good chance that the problem was somewhere else. Since this is an old thread I don't think we'll get much value from speculation.
    -- cj

  • [svn:osmf:] 14487: PARB changes: Rename LayoutRendererProperties to LayouMetadata, base it off of the new metadata APIs.

    Revision: 14487
    Revision: 14487
    Author:   [email protected]
    Date:     2010-03-01 14:47:01 -0800 (Mon, 01 Mar 2010)
    Log Message:
    PARB changes: Rename LayoutRendererProperties to LayouMetadata, base it off of the new metadata APIs.  Adjust ILayoutTarget to expose a getter for a LayoutMetadata, and LayoutTargetSprite to accept one in its constructor.  Apply corresponding changes to unit tests and samples.
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/AllExamples.as
        osmf/trunk/apps/samples/framework/LayoutSample/src/LayoutSample.as
        osmf/trunk/apps/samples/framework/LayoutSample/src/LayoutSample2.as
        osmf/trunk/apps/samples/framework/LayoutSample/src/LayoutSample3.as
        osmf/trunk/apps/samples/framework/MediaContainerSample/MediaContainerSample.as
        osmf/trunk/apps/samples/framework/NestedMediaContainersSample/NestedMediaContainersSample .as
        osmf/trunk/apps/samples/framework/OSMFPlayer/src/OSMFPlayer.as
        osmf/trunk/apps/samples/plugins/ControlBarPlugin/src/ControlBarElement.as
        osmf/trunk/apps/samples/plugins/ControlBarPluginSample/src/ControlBarPluginSample.as
        osmf/trunk/apps/samples/plugins/MASTSample/src/MASTSample.as
        osmf/trunk/framework/OSMF/.flexLibProperties
        osmf/trunk/framework/OSMF/org/osmf/display/MediaPlayerSprite.as
        osmf/trunk/framework/OSMF/org/osmf/elements/compositeClasses/CompositeDisplayObjectTrait. as
        osmf/trunk/framework/OSMF/org/osmf/layout/ILayoutTarget.as
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutRenderer.as
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutRendererBase.as
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutTargetSprite.as
        osmf/trunk/framework/OSMF/org/osmf/layout/MediaElementLayoutTarget.as
        osmf/trunk/framework/OSMF/org/osmf/media/MediaResourceBase.as
        osmf/trunk/framework/OSMFTest/org/osmf/OSMFTests.as
        osmf/trunk/framework/OSMFTest/org/osmf/containers/TestMediaContainer.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestParallelElementWithDisplayObjectTrait .as
        osmf/trunk/framework/OSMFTest/org/osmf/layout/TestLayoutRenderer.as
        osmf/trunk/framework/OSMFTest/org/osmf/layout/TestMediaElementLayoutTarget.as
        osmf/trunk/framework/OSMFTest/org/osmf/layout/TesterLayoutTargetSprite.as
        osmf/trunk/framework/OSMFTest/org/osmf/media/TestURLResource.as
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/ControlBarBase.as
        osmf/trunk/plugins/MASTPluginIntegrationTest/src/org/osmf/test/mast/managers/TestMASTCond itionManager.as
        osmf/trunk/plugins/MASTPluginIntegrationTest/src/org/osmf/test/mast/media/TestMASTProxyEl ement.as
    Added Paths:
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutMetadata.as
        osmf/trunk/framework/OSMFTest/org/osmf/layout/TestLayoutMetadata.as
    Removed Paths:
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutRendererProperties.as
        osmf/trunk/framework/OSMFTest/org/osmf/layout/TestLayoutRendererProperties.as

  • [svn:osmf:] 14300: PARB changes: Rename FactoryElement to LoadFromDocumentElement.

    Revision: 14300
    Revision: 14300
    Author:   [email protected]
    Date:     2010-02-20 10:32:01 -0800 (Sat, 20 Feb 2010)
    Log Message:
    PARB changes: Rename FactoryElement to LoadFromDocumentElement.  Minor adjustments to some names on NetConnectionFactory, NetStreamSwitchManager, and ContainerChangeEvent.  Removed ExternalProperty since it's only used in one place, and the ContainerChangeEvent change broke it.
    Modified Paths:
        osmf/trunk/framework/OSMF/.flexLibProperties
        osmf/trunk/framework/OSMF/org/osmf/containers/MediaContainer.as
        osmf/trunk/framework/OSMF/org/osmf/elements/F4MElement.as
        osmf/trunk/framework/OSMF/org/osmf/elements/F4MLoader.as
        osmf/trunk/framework/OSMF/org/osmf/elements/compositeClasses/SerialDisplayObjectTrait.as
        osmf/trunk/framework/OSMF/org/osmf/events/ContainerChangeEvent.as
        osmf/trunk/framework/OSMF/org/osmf/media/MediaElement.as
        osmf/trunk/framework/OSMF/org/osmf/net/NetConnectionFactory.as
        osmf/trunk/framework/OSMF/org/osmf/net/NetConnectionFactoryBase.as
        osmf/trunk/framework/OSMF/org/osmf/net/NetLoader.as
        osmf/trunk/framework/OSMF/org/osmf/net/NetStreamSwitchManager.as
        osmf/trunk/framework/OSMF/org/osmf/net/dvr/DVRCastNetConnectionFactory.as
        osmf/trunk/framework/OSMFTest/org/osmf/OSMFTests.as
        osmf/trunk/framework/OSMFTest/org/osmf/net/TestNetConnectionFactory.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/DefaultNetConnectionFactory.as
        osmf/trunk/plugins/SMILPlugin/org/osmf/smil/elements/SMILElement.as
        osmf/trunk/plugins/SMILPlugin/org/osmf/smil/loader/SMILLoader.as
        osmf/trunk/plugins/SMILPluginIntegrationTest/src/org/osmf/test/smil/loader/TestSMILLoader .as
        osmf/trunk/plugins/akamai/AkamaiBasicStreamingPlugin/com/akamai/osmf/net/AkamaiNetConnect ionFactory.as
    Added Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/LoadFromDocumentElement.as
        osmf/trunk/framework/OSMF/org/osmf/elements/proxyClasses/LoadFromDocumentLoadTrait.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestLoadFromDocumentElement.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/proxyClasses/TestLoadFromDocumentLoadTrai t.as
    Removed Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/FactoryElement.as
        osmf/trunk/framework/OSMF/org/osmf/elements/proxyClasses/FactoryLoadTrait.as
        osmf/trunk/framework/OSMF/org/osmf/utils/ExternalProperty.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestFactoryElement.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/proxyClasses/TestFactoryLoadTrait.as

  • [svn:osmf:] 14161: PARB changes: Rename pluginInfoRef to pluginInfo.

    Revision: 14161
    Revision: 14161
    Author:   [email protected]
    Date:     2010-02-12 16:58:43 -0800 (Fri, 12 Feb 2010)
    Log Message:
    PARB changes: Rename pluginInfoRef to pluginInfo.
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/plugin/PluginInfoResource.as
        osmf/trunk/framework/OSMF/org/osmf/plugin/PluginManager.as
        osmf/trunk/framework/OSMF/org/osmf/plugin/StaticPluginLoader.as

  • [svn:osmf:] 14042: PARB changes: Rename TemporalProxyElement to DurationElement.

    Revision: 14042
    Revision: 14042
    Author:   [email protected]
    Date:     2010-02-08 13:09:45 -0800 (Mon, 08 Feb 2010)
    Log Message:
    PARB changes: Rename TemporalProxyElement to DurationElement.
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/AllExamples.as
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/view/MainWindow.as
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/view/MainWindowLayout.mxml
        osmf/trunk/apps/samples/framework/HelloWorld/HelloWorld3.as
        osmf/trunk/apps/samples/framework/MediaContainerSample/MediaContainerSample.as
        osmf/trunk/apps/samples/framework/NestedMediaContainersSample/NestedMediaContainersSample .as
        osmf/trunk/framework/OSMF/.flexLibProperties
        osmf/trunk/framework/OSMF/org/osmf/elements/ProxyElement.as
        osmf/trunk/framework/OSMFTest/org/osmf/OSMFTests.as
        osmf/trunk/plugins/SMILPlugin/org/osmf/smil/media/SMILMediaGenerator.as
    Added Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/DurationElement.as
        osmf/trunk/framework/OSMF/org/osmf/elements/proxyClasses/DurationSeekTrait.as
        osmf/trunk/framework/OSMF/org/osmf/elements/proxyClasses/DurationTimeTrait.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestDurationElement.as
        osmf/trunk/framework/OSMFTest/org/osmf/media/TestMediaPlayerWithDurationElement.as
    Removed Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/TemporalProxyElement.as
        osmf/trunk/framework/OSMF/org/osmf/elements/proxyClasses/TemporalProxySeekTrait.as
        osmf/trunk/framework/OSMF/org/osmf/elements/proxyClasses/TemporalProxyTimeTrait.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestTemporalProxyElement.as
        osmf/trunk/framework/OSMFTest/org/osmf/media/TestMediaPlayerWithTemporalProxyElement.as

  • [svn:osmf:] 14031: PARB changes: rename LayoutRendererMode to LayoutMode.

    Revision: 14031
    Revision: 14031
    Author:   [email protected]
    Date:     2010-02-08 04:52:08 -0800 (Mon, 08 Feb 2010)
    Log Message:
    PARB changes: rename LayoutRendererMode to LayoutMode. Set modes to be "none", "vertical" and "horizontal". Updating units tests and client code accordingly.
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/AllExamples.as
        osmf/trunk/framework/OSMF/.flexLibProperties
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutAttributesFacet.as
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutRenderer.as
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutRendererProperties.as
        osmf/trunk/framework/OSMFTest/org/osmf/layout/TestLayoutRendererProperties.as
    Added Paths:
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutMode.as
    Removed Paths:
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutRendererMode.as

  • [svn:osmf:] 13927: PARB changes: Rename PluginLoadEvent to PluginManagerEvent.

    Revision: 13927
    Revision: 13927
    Author:   [email protected]
    Date:     2010-02-01 21:16:59 -0800 (Mon, 01 Feb 2010)
    Log Message:
    PARB changes: Rename PluginLoadEvent to PluginManagerEvent.
    Modified Paths:
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/src/DynamicStreamingSample.mxml
        osmf/trunk/apps/samples/framework/GGTrackingSample/org/osmf/view/MainWindow.as
        osmf/trunk/apps/samples/framework/MetadataVideoSample/MainWindow.as
        osmf/trunk/apps/samples/framework/PluginSample/src/PluginSample.mxml
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/src/AkamaiPluginSample.mxml
        osmf/trunk/apps/samples/plugins/CaptioningSample/src/CaptioningSample.mxml
        osmf/trunk/apps/samples/plugins/MASTSample/src/MASTSample.as
        osmf/trunk/framework/OSMF/.flexLibProperties
        osmf/trunk/framework/OSMF/org/osmf/plugin/PluginManager.as
        osmf/trunk/framework/OSMFIntegrationTest/org/osmf/plugin/TestPluginManagerIntegration.as
        osmf/trunk/framework/OSMFTest/org/osmf/plugin/TestPluginManager.as
        osmf/trunk/plugins/CaptioningPluginTest/src/CaptioningPluginTest.mxml
        osmf/trunk/plugins/MASTPluginIntegrationTest/src/org/osmf/test/mast/managers/TestMASTCond itionManager.as
        osmf/trunk/plugins/akamai/AkamaiBasicStreamingPluginIntegrationTest/src/org/osmf/plugin/T estBasicStreamingPlugin.as
    Added Paths:
        osmf/trunk/framework/OSMF/org/osmf/events/PluginManagerEvent.as
    Removed Paths:
        osmf/trunk/framework/OSMF/org/osmf/events/PluginLoadEvent.as

Maybe you are looking for

  • Need help to add the words in a text file to an arraylist

    I am new to java and I really need some help for my project.I want to add the words of a text file to an arraylist. The text file consist of words and the following set of punctuation marks {, . ; : } and spaces. thanks in advance :-)

  • Reverse Sign in Business rule Parameter

    Hi Guys, Can anyone give me some scenario where we can use reverse sign in  the business rule (Checked). Why we change the sign of the account. Source Account                      Destination Account                        Reverse Sign 1030200000    

  • Convert a Word text box into a PDF file

    Am trying to convert a Word (2007) document that contains several text boxes in it, but they are not being converted into the PDF file.  Some are though, some aren't. Any suggestions?

  • I messages problem

    Hi all , ihave a problem with i-mesaages. I can recieve i message and can reply on the same i messages . But if i want to intiate i messages with the same guy who i've recieved from i can't. Kindly advise

  • Why can't I down load podcast on my iPod touch or my 2nd gen iPad ?

    Hi! I've tried different wifi hotspot locations, no luck. Since it is the same machines I'm guessing it might be iOS 6 or apple is having problems. I wonder if anyone else is having this problem. Please let me know. Thanks, Max