[svn:fx-3.x] 5187: Merge of performance optimization from trunk ( revision 5183)

Revision: 5187
Author: [email protected]
Date: 2009-03-06 06:07:40 -0800 (Fri, 06 Mar 2009)
Log Message:
Merge of performance optimization from trunk (revision 5183)
Modified Paths:
flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/skins/RectangularBorder.as

Similar Messages

  • [svn] 3899: Merge BlazeDS change 3898 from trunk to 3.0.x.

    Revision: 3899
    Author: [email protected]
    Date: 2008-10-27 06:36:52 -0700 (Mon, 27 Oct 2008)
    Log Message:
    Merge BlazeDS change 3898 from trunk to 3.0.x.
    Checkintests: passed. they passed on trunk to although I forgot to put that in my checkin notes.
    Modified Paths:
    blazeds/branches/3.0.x/qa/resources/frameworks/qa-frameworks.zip

  • [svn:fx-3.x] 11952: Merging a drag/ drop related trunk change that should have made it into 3.x.

    Revision: 11952
    Revision: 11952
    Author:   [email protected]
    Date:     2009-11-18 12:42:08 -0800 (Wed, 18 Nov 2009)
    Log Message:
    Merging a drag/drop related trunk change that should have made it into 3.x.
    QE notes: None
    Doc notes: None
    Bugs: SDK-15988
    Reviewer: Jason (originally)
    Tests run: Checkin
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-15988
    Modified Paths:
        flex/sdk/branches/3.x/frameworks/projects/airframework/src/mx/managers/NativeDragManagerI mpl.as

    Obrigado, Dude! Instalei o SQL Developer agora mesmo no GNU/Linux Ubuntu 11.10, depois de uma longa procura na internet pela melhor forma de instalar o SQL Developer. Parabés pelo "post".
    Traslate:
    Thanks, Dude! I installed SQL Developer now in GNU / Linux Ubuntu 11.10, after a long search on the internet for the best way to install SQL Developer. Parabés by "post". 

  • [svn] 3587: Merge revision 3040 to 3.0.x from trunk:

    Revision: 3587
    Author: [email protected]
    Date: 2008-10-13 04:26:37 -0700 (Mon, 13 Oct 2008)
    Log Message:
    Merge revision 3040 to 3.0.x from trunk:
    Revision: 3040
    Author: [email protected]
    Date: 2008-08-29 08:42:48 -0700 (Fri, 29 Aug 2008)
    Log Message:
    Get rid of an NPE for some destinations which try to configure null values for properties.
    Modified Paths:
    blazeds/trunk/modules/common/src/java/flex/messaging/config/ConfigMap.java
    checkintests: passed
    Modified Paths:
    blazeds/branches/3.0.x/modules/common/src/java/flex/messaging/config/ConfigMap.java

  • [svn:fx-3.x] 5820: Merged (back ported) trunk revisions 4460,4492,4516,4520 ,4585,4630,4692,4726,4964 - 3.x

    Revision: 5820
    Author: [email protected]
    Date: 2009-03-31 13:40:12 -0700 (Tue, 31 Mar 2009)
    Log Message:
    Merged (back ported) trunk revisions 4460,4492,4516,4520,4585,4630,4692,4726,4964 -> 3.x
    http://10.171.12.252/svn/opensource/flex/sdk/trunk
    r4460 | [email protected] | 2009-01-08 20:53:33 -0500 (Thu, 08 Jan 2009) | 10 lines
    Renamed UIComponentAccImpl to UIComponentAccProps because it extends AccessibilityProperties, not AccessibilityImplementation.
    Added comments with the identifier for each magic role constant, so that it is easier to understand what roles our components are using.
    Moved two static methods from UIComponentAccProperties to AccImpl because they make more sense there.
    QE Notes: None
    Doc Notes: None
    Bugs: None
    Reviewer: None (no functional changes)
    r4492 | [email protected] | 2009-01-12 17:47:10 -0500 (Mon, 12 Jan 2009) | 8 lines
    Simplified how an accessibility class gets hooked into its corresponding component class.
    We now do the hooking in the static method enableAccessibility(), which is called by code that is autogenerated by the compiler. Previously this method did nothing and the hooking happened at static initialization time. This allows us to remove the static var accessibilityHooked and the static method hookAccessibility() in each accessibility class.
    QE Notes: None
    Doc Notes: None
    Bugs: None
    Reviewer: Deepa and Alex
    r4516 | [email protected] | 2009-01-13 18:23:14 -0500 (Tue, 13 Jan 2009) | 16 lines
    Accessibility changes to Panel and TitleWindow, as requested by Freedom Scientific.
    These components now report their accessibility role as "grouping" rather than "window". Their accessibility name is now simply their title. They no longer report any child items. Their accessibility location is the bounding rect of the entire Panel or TitleWindow.
    The AccessibilityImplementation continues to be attached to the titleBar, not to the Panel/TitleWindow, because the Flash Player ignores Sprites with an AccessibilityImplementation that are inside other Sprites with an AccessibilityImplementation. (The Flash accessibility model is flat, not hierarchical, and "child IDs" are only used for things like list items, not for controls in titled container.)
    So although in the display hierarchy the Panel is a parent of its content controls, in the MSAA model it appears as their preceding sibling. JAWS will look at the "grouping" role and understand that because the bounding rect of the grouping includes some of its following siblings, they are "inside". (I don't know what this means in terms of what JAWS will actually speak.)
    Also, the AccImpl class now implements getChildIDArray() to return an empty array, so that by default all components have 0 child items (rather than reporting an error).
    Finally, subclasses with child items now compute how many they have and then call a new AccImpl utility method, createChildIDArray(), to create an Array that looks like [ 1, 2, 3, 4, 5 ].
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-12390, SDK-16340
    Reviewer: Deepa
    r4520 | [email protected] | 2009-01-13 20:07:53 -0500 (Tue, 13 Jan 2009) | 10 lines
    Accessibility changes to List, DataGrid, Menu, and Tree, as requested by Freedom Scientific, to behave more like their corresponding standard Windows controls.
    List, DataGrid, and Menu no longer report an accessibility value, either for the control itself or for its child items.
    Tree no longer reports a value value for itself. For tree items the value is the indentation level as a String: "0", "1", "2", etc. Previously the top-level items had value "1" instead of "0".
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-17755
    Reviewer: Deepa
    r4585 | [email protected] | 2009-01-19 18:53:01 -0500 (Mon, 19 Jan 2009) | 6 lines
    AccImpl now implements accSelect(). Although the implementation doesn't do anything, its existence is enough to avoid having the Player report an IAccessible "member not found" error when calling accSelect() on a child item.
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-16654
    Reviewer: Jason
    r4630 | [email protected] | 2009-01-22 19:54:13 -0500 (Thu, 22 Jan 2009) | 6 lines
    Removed code in AccordionHeaderAccImpl and TabBarAccImpl where the child IDs were being adjusted up or down by 100000 for some unknown reason. Deneb (on Flash Player) and Nataliya and Jon (on JAWS) don't think this should be done.
    QE Notes: None
    Doc Notes: None
    Bugs: None
    Reviewer: Deepa
    r4692 | [email protected] | 2009-01-27 17:13:03 -0500 (Tue, 27 Jan 2009) | 9 lines
    Fixed missing or misplaced 'break' statements in the eventHandler() methods of the mx.accessibility classes. These have probably been causing some unintented MSAA events to be dispatched.
    Also, each accessible component now dispatches OBJ_NAMECHANGE when its toolTip or errorString property changes, because the MSAA name includes the tooltip or error tip.
    QE Notes: None
    Doc Notes: None
    Bugs: None
    Reviewer: Deepa
    r4726 | [email protected] | 2009-01-28 21:47:59 -0500 (Wed, 28 Jan 2009) | 16 lines
    Accessibility changes to the MSAA name of several components, as requested by Freedom Scientific. These changes make Flex controls behave more like standard Windows controls.
    In Accordion and TabBar, the name is now just what is displayed, without " Tab" or " Tab, Active" appended.
    In ComboBox, List, and Tree, the name of each item is now just what it displays, without, for example, "2 of 7" appended.
    Removed an artificial limit of 100000 items in List and Menu.
    A Slider with an MXML id no longer returns that id as its name; no other component does this and id's are certainly no intended to be spoken.
    Removed the getName() method of ComboBase, which isn't used.
    QE Notes: None
    Doc Notes: None
    Bugs: None
    Reviewer: Jason
    r4964 | [email protected] | 2009-02-16 12:41:50 -0500 (Mon, 16 Feb 2009) | 7 lines
    Modify AccImpl.as to add @private to _protected final function $eventHandler(event:Event):void_ to work around an ASdoc bug. i will remove it when the bug gets fixed.
    QE Notes: None
    Doc Notes: None
    Bugs: -
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-12390
    http://bugs.adobe.com/jira/browse/SDK-16340
    http://bugs.adobe.com/jira/browse/SDK-17755
    http://bugs.adobe.com/jira/browse/SDK-16654
    Modified Paths:
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/AccImpl.as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/AccordionHeaderA ccImpl.as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/AlertAccImpl.as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/ButtonAccImpl.as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/CheckBoxAccImpl. as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/ColorPickerAccIm pl.as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/ComboBaseAccImpl .as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/ComboBoxAccImpl. as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/DataGridAccImpl. as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/DateChooserAccIm pl.as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/DateFieldAccImpl .as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/LinkButtonAccImp l.as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/ListAccImpl.as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/ListBaseAccImpl. as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/MenuAccImpl.as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/MenuBarAccImpl.a s
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/PanelAccImpl.as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/RadioButtonAccIm pl.as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/SliderAccImpl.as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/TabBarAccImpl.as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/TitleWindowAccIm pl.as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/TreeAccImpl.as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/containers/Panel.as
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/core/UIComponent.as
    Added Paths:
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/UIComponentAccPr ops.as
    Removed Paths:
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/accessibility/UIComponentAccIm pl.as
    Property Changed:
    flex/sdk/branches/3.x/

  • [svn:bz-4.0.0_fixes] 16132: Merge svn-16106 from trunk to 4.x and 4.0. 0_fixes branches.

    Revision: 16132
    Revision: 16132
    Author:   [email protected]
    Date:     2010-05-14 21:20:22 -0700 (Fri, 14 May 2010)
    Log Message:
    Merge svn-16106 from trunk to 4.x and 4.0.0_fixes branches.   Watson bug 2621184.
    Checkin tests passed.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/svn-16106
    Modified Paths:
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/services/messaging/Subscript ionManager.java
        blazeds/branches/4.x/modules/core/src/flex/messaging/services/messaging/SubscriptionManag er.java

  • [svn] 2053: Merge revisions 1987,1988,2007 and 2039 from Trunk to 3.0. x branch

    Revision: 2053
    Author: [email protected]
    Date: 2008-06-12 08:49:07 -0700 (Thu, 12 Jun 2008)
    Log Message:
    Merge revisions 1987,1988,2007 and 2039 from Trunk to 3.0.x branch
    checkintests: passed
    Modified Paths:
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/flexunit/build.xml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/build.xml
    blazeds/branches/3.0.x/qa/apps/qa-regress/testsuites/mxunit/stylesheets/junit-frames.xsl
    blazeds/branches/3.0.x/qa/features/excludes.properties

    Al Roogle wrote:
    > Why would the "Reintegrate" tab not appear in the Subversive Team Merge
    > dialog (only the "URL" and "2 URLs" tabs are there), when all components
    > are up to date ?
    > OS is WinXP SP3 [presumably irrelevant].
    > JVM is Sun 1.5.0-b64 [1.5.x supported according to
    > http://wiki.eclipse.org/Subversive_Plan].
    > Eclipse is version 3.4.0 (Build id I20080617-2000) [3.4.x supported
    > according to http://wiki.eclipse.org/Subversive_Plan].
    > Subversion is version 1.5.1 (r32289) [1.5 supported according to
    >
    http://www.eclipse.org/subversive/documentation/teamSupport/ merge_dialog.php].
    > Subversive client is 0.7.3-I20080814-1500 [need only 0.7.2.I20080801-1500+
    > according to http://www.eclipse.org/subversive/changelogs/changelog.txt].
    > Subversive SVN Connectors from SVNKit 1.1.7 are 2.0.3.I20080814-1500 (need
    > only 2.0.2.I20080801-1500+ according to
    >
    http://www.polarion.org/projects/subversive/download/eclipse /2.0/changelog.txt].
    > Applies to both svnserve and apache connections, and on merge to either
    > trunk or branch.
    > Checkout and commit on trunk and branch work fine.
    > -- Al
    Hello, Al.
    To have this tab please select from Window->Preferences->Team->SVN
    Connector one of SVN 1.5 Compatible connectors - SVN Kit 1.2.0 or JavaHL
    1.5.0.
    Best regards, Alexei Goncharov.
    Subversive Team.

  • [svn:bz-4.0.0_fixes] 16311: Merge svn-16309 from trunk

    Revision: 16311
    Revision: 16311
    Author:   [email protected]
    Date:     2010-05-25 10:01:13 -0700 (Tue, 25 May 2010)
    Log Message:
    Merge svn-16309 from trunk
    Ticket Links:
        http://bugs.adobe.com/jira/browse/svn-16309
    Modified Paths:
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/services/messaging/adapters/ JMSAdapter.java
    Property Changed:
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/services/messaging/adapters/ JMSAdapter.java

  • [svn:fx-trunk] 15637: merge 4.x rev 15451 - trunk

    Revision: 15637
    Revision: 15637
    Author:   [email protected]
    Date:     2010-04-21 12:53:17 -0700 (Wed, 21 Apr 2010)
    Log Message:
    merge 4.x rev 15451 -> trunk
    doing this for Darrell as there was a svn property that needed to be resolved
    QE notes: no
    Doc notes: no
    Bugs: SDK-18551
    Reviewer: no
    Tests run: ct
    Is noteworthy for integration:no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-18551
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/FocusManager.as
    Property Changed:
        flex/sdk/trunk/

  • [svn] 2155: Merging change 2154 from trunk to 3.0.x

    Revision: 2155
    Author: [email protected]
    Date: 2008-06-19 18:55:54 -0700 (Thu, 19 Jun 2008)
    Log Message:
    Merging change 2154 from trunk to 3.0.x
    * My mistake, I should have committed the change to 3.0.x, and then merged to trunk
    * For bug SDK-15589
    Bugs: SDK-15589
    QA: Yes, see log comment for revision 2154.
    Doc: Yes, see log comment for revision 2154.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-15589
    http://bugs.adobe.com/jira/browse/SDK-15589
    Modified Paths:
    flex/sdk/branches/3.0.x/frameworks/projects/framework/src/mx/utils/ObjectUtil.as

  • [svn:fx-trunk] 18301: Merging hero preview changes into trunk

    Revision: 18301
    Revision: 18301
    Author:   [email protected]
    Date:     2010-10-25 12:58:55 -0700 (Mon, 25 Oct 2010)
    Log Message:
    Merging hero preview changes into trunk
    Modified Paths:
        flex/sdk/trunk/asdoc/build.xml
        flex/sdk/trunk/build.properties
        flex/sdk/trunk/build.xml
        flex/sdk/trunk/collateral/en_US/license-adobesdk.htm
        flex/sdk/trunk/development/eclipse/flex/sparkTest/.actionScriptProperties
        flex/sdk/trunk/development/eclipse/flex/sparkTest/.flexProperties
        flex/sdk/trunk/development/eclipse/flex/sparkTest/.project
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/AddItemsTest.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/EffectsProperties.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/NewEffects.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/RemoveItemsTest.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/ScrollbarFrenzy.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/SkinTest.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/components/AnimationPropertiesForm. mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/components/CircularScrollBar.as
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/layouts/NumberInterpolatorWrapping. as
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/layouts/WheelLayout.as
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/skins/CircularScrollBarSkin.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/skins/CircularScrollBarTrackSkin.mx ml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/skins/MyScrollBarTrackSkin.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/skins/MyVScrollBarSkin.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/sparkTest.mxml
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/testWheel.mxml
        flex/sdk/trunk/development/eclipse/readme.txt
        flex/sdk/trunk/frameworks/air-config.xml
        flex/sdk/trunk/frameworks/build.xml
        flex/sdk/trunk/frameworks/build_framework.xml
        flex/sdk/trunk/frameworks/flex-config.xml
        flex/sdk/trunk/frameworks/libs/automation_agent.swc
        flex/sdk/trunk/frameworks/libs/osmf.swc
        flex/sdk/trunk/frameworks/libs/qtp.swc
        flex/sdk/trunk/frameworks/libs/qtp_air.swc
        flex/sdk/trunk/frameworks/libs/textLayout.swc
        flex/sdk/trunk/frameworks/locale/da_DK/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/da_DK/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/de_DE/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/de_DE/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/en_US/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/en_US/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/es_ES/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/es_ES/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/fi_FI/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/fi_FI/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/fr_FR/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/fr_FR/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/it_IT/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/it_IT/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/ja_JP/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/ja_JP/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/ko_KR/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/ko_KR/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/nb_NO/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/nb_NO/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/nl_NL/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/nl_NL/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/pt_BR/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/pt_BR/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/ru_RU/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/ru_RU/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/sv_SE/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/sv_SE/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/zh_CN/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/zh_CN/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/locale/zh_TW/automation_agent_rb.swc
        flex/sdk/trunk/frameworks/locale/zh_TW/qtp_air_rb.swc
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/mx.core.windowClasses. xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.core.windowClasses. xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.core.windowClasses. xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ja_JP/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.core.windowClasses. xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/ru_RU/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.core.windowClasses. xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/airframework/bundles/zh_CN/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/WindowedApplication.as
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/WindowedSystemManager.as
        flex/sdk/trunk/frameworks/projects/airspark/bundles/de_DE/docs/spark.components.windowCla sses.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/de_DE/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/de_DE/docs/spark.skins.spark.windowCh rome.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/de_DE/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/fr_FR/docs/spark.components.windowCla sses.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/fr_FR/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/fr_FR/docs/spark.skins.spark.windowCh rome.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/fr_FR/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/ja_JP/docs/spark.components.windowCla sses.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/ja_JP/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/ja_JP/docs/spark.skins.spark.windowCh rome.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/ja_JP/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/ru_RU/docs/spark.components.windowCla sses.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/ru_RU/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/ru_RU/docs/spark.skins.spark.windowCh rome.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/ru_RU/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/zh_CN/docs/spark.components.windowCla sses.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/zh_CN/docs/spark.components.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/zh_CN/docs/spark.skins.spark.windowCh rome.xml
        flex/sdk/trunk/frameworks/projects/airspark/bundles/zh_CN/docs/spark.skins.spark.xml
        flex/sdk/trunk/frameworks/projects/airspark/src/spark/components/Window.as
        flex/sdk/trunk/frameworks/projects/airspark/src/spark/components/WindowedApplication.as
        flex/sdk/trunk/frameworks/projects/automation/bundles/da_DK/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/de_DE/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/es_ES/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/fi_FI/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/fr_FR/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/it_IT/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/ja_JP/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/ko_KR/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/nb_NO/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/nl_NL/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/pt_BR/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/ru_RU/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/sv_SE/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/zh_CN/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/bundles/zh_TW/automation.properties
        flex/sdk/trunk/frameworks/projects/automation/src/mx/automation/delegates/controls/ListBa seAutomationImpl.as
        flex/sdk/trunk/frameworks/projects/automation/src/mx/automation/tabularData/CartesianChar tTabularData.as
        flex/sdk/trunk/frameworks/projects/automation_dmv/src/mx/automation/delegates/advancedDat aGrid/AdvancedListBaseAutomationImpl.as
        flex/sdk/trunk/frameworks/projects/automation_dmv/src/mx/automation/delegates/charts/Cart esianChartAutomationImpl.as
        flex/sdk/trunk/frameworks/projects/automation_spark/manifest_automation_spark.xml
        flex/sdk/trunk/frameworks/projects/automation_spark/src/AutomationSparkClasses.as
        flex/sdk/trunk/frameworks/projects/automation_spark/src/spark/automation/delegates/compon ents/SparkComboBoxAutomationImpl.as
        flex/sdk/trunk/frameworks/projects/automation_spark/src/spark/automation/delegates/compon ents/SparkDataGroupAutomationImpl.as
        flex/sdk/trunk/frameworks/projects/automation_spark/src/spark/automation/delegates/compon ents/supportClasses/SparkListBaseAutomationImpl.as
        flex/sdk/trunk/frameworks/projects/automation_spark/src/spark/automation/delegates/compon ents/supportClasses/SparkSkinnableTextBaseAutomationImpl.as
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/da_DK/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/da_DK/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/da_DK/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.accessibility. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.chartCl asses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.effects .effectClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.effects .xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.events. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.rendere rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.series. items.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.series. renderData.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.series. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.styles. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.charts.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.collections.er rors.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.collections.xm l
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.controls.advan cedDataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.controls.listC lasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.controls.olapD ataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.olap.aggregato rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.olap.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/de_DE/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/es_ES/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/es_ES/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/es_ES/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fi_FI/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fi_FI/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fi_FI/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.accessibility. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.chartCl asses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.effects .effectClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.effects .xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.events. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.rendere rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.series. items.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.series. renderData.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.series. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.styles. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.charts.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.collections.er rors.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.collections.xm l
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.controls.advan cedDataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.controls.listC lasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.controls.olapD ataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.olap.aggregato rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.olap.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/fr_FR/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/it_IT/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/it_IT/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/it_IT/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.accessibility. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.chartCl asses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.effects .effectClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.effects .xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.events. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.rendere rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.series. items.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.series. renderData.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.series. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.styles. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.charts.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.collections.er rors.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.collections.xm l
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.controls.advan cedDataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.controls.listC lasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.controls.olapD ataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.olap.aggregato rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.olap.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ja_JP/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ko_KR/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ko_KR/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ko_KR/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nb_NO/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nb_NO/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nb_NO/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nl_NL/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nl_NL/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/nl_NL/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/pt_BR/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/pt_BR/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/pt_BR/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.accessibility. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.chartCl asses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.effects .effectClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.effects .xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.events. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.rendere rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.series. items.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.series. renderData.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.series. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.styles. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.charts.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.collections.er rors.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.collections.xm l
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.controls.advan cedDataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.controls.listC lasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.controls.olapD ataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.olap.aggregato rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.olap.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/ru_RU/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/sv_SE/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/sv_SE/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/sv_SE/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.accessibility. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.chartCl asses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.effects .effectClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.effects .xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.events. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.rendere rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.series. items.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.series. renderData.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.series. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.styles. xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.charts.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.collections.er rors.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.collections.xm l
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.controls.advan cedDataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.controls.listC lasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.controls.olapD ataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.olap.aggregato rs.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.olap.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_CN/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_TW/charts.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_TW/datamanagement.propert ies
        flex/sdk/trunk/frameworks/projects/datavisualization/bundles/zh_TW/olap.properties
        flex/sdk/trunk/frameworks/projects/datavisualization/data_management-3.0.0.css
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/AreaChart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/BarChart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/BubbleChart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/CandlestickChart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/ColumnChart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/HLOCChart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/LineChart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/PlotChart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/chartClasses/Cartesian Chart.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/chartClasses/ChartBase .as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/chartClasses/ChartElem ent.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/chartClasses/HLOCSerie sBase.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/chartClasses/InstanceC ache.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/chartClasses/PolarChar t.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/chartClasses/Series.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/chartClasses/StackedSe ries.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/renderers/AreaRenderer .as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/renderers/HLOCItemRend erer.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/series/AreaSeries.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/series/BarSeries.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/series/BubbleSeries.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/series/ColumnSeries.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/series/HLOCSeries.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/series/LineSeries.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/charts/series/PlotSeries.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/controls/advancedDataGridClas ses/AdvancedDataGridColumn.as
        flex/sdk/trunk/frameworks/projects/datavisualization/src/mx/controls/advancedDataGridClas ses/AdvancedDataGridItemRenderer.as
        flex/sdk/trunk/frameworks/projects/flash-integration/.settings/org.eclipse.core.resources .prefs
        flex/sdk/trunk/frameworks/projects/flash-integration/build.xml
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/de_DE/docs/mx.flash.xml
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/fr_FR/docs/mx.flash.xml
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/ja_JP/docs/mx.flash.xml
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/ja_JP/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/ru_RU/docs/mx.flash.xml
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/ru_RU/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/zh_CN/docs/mx.flash.xml
        flex/sdk/trunk/frameworks/projects/flash-integration/bundles/zh_CN/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/flash-integration/src/mx/flash/UIMovieClip.as
        flex/sdk/trunk/frameworks/projects/flex/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/flex/build.xml
        flex/sdk/trunk/frameworks/projects/framework/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/framework/build.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/da_DK/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.binding.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.collections.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.containers.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.effects.effectClasses. xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.filters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.graphics.codec.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.logging.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.logging.targets.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.logging.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.preloaders.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.skins.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/es_ES/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/fi_FI/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.binding.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.collections.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.containers.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.effects.effectClasses. xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.filters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.graphics.codec.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.logging.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.logging.targets.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.logging.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.preloaders.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.skins.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/it_IT/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/SharedResources.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.binding.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.collections.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.containers.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.effects.effectClasses. xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.filters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.graphics.codec.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.logging.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.logging.targets.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.logging.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.preloaders.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.skins.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ja_JP/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/ko_KR/formatters.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/nb_NO/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/nl_NL/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/pt_BR/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.binding.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.collections.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.containers.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.effects.effectClasses. xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.filters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.graphics.codec.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.logging.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.logging.targets.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.logging.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.preloaders.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.skins.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/ru_RU/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/controls.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/sv_SE/core.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/SharedResources.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.automation.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.binding.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.binding.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.collections.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.collections.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.containers.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.containers.utilityClas ses.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.listClasses.x ml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.effects.effectClasses. xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.filters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.formatters.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.geom.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.graphics.codec.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.graphics.shaderClasses .xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.graphics.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.logging.errors.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.logging.targets.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.logging.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.managers.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.preloaders.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.resources.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.rpc.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.skins.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.states.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.styles.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.utils.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/mx.validators.xml
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_CN/formatters.properties
        flex/sdk/trunk/frameworks/projects/framework/bundles/zh_TW/formatters.properties
        flex/sdk/trunk/frameworks/projects/framework/defaults.css
        flex/sdk/trunk/frameworks/projects/framework/src/FrameworkClasses.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/collections/AsyncListView.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ProgressBar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/SWFLoader.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ToolTip.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/BitmapAsset.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/CrossDomainRSLItem.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/FlexModuleFactory.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/SpriteAsset.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/Effect.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/EffectEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/FlexEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/filters/BaseDimensionFilter.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/filters/BaseFilter.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/filters/IBitmapFilter.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/geom/CompoundTransform.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/ImageSnapshot.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/FocusManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/ISystemManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/LayoutManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemManagerProxy.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/systemClasses/ChildManager.a s
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/systemClasses/MarshallingSup port.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/preloaders/Preloader.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/printing/FlexPrintJob.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/resources/IResourceManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/resources/ResourceManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/resources/ResourceManagerImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/states/AddItems.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/states/SetEventHandler.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/CSSStyleDeclaration.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/IAdvancedStyleClient.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleManagerImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProtoChain.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/StyleProxy.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/utils/ArrayUtil.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/utils/Base64Decoder.as
        flex/sdk/trunk/frameworks/projects/halo/defaults.css
        flex/sdk/trunk/frameworks/projects/mx/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.containers.accordionClasses.x ml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.containers.dividedBoxClasses. xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.containers.utilityClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.containers.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.dataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.listClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.menuClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.scrollClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.sliderClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.textClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.treeClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.videoClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.effects.effectClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.containers.accordionClasses.x ml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.containers.dividedBoxClasses. xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.containers.utilityClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.containers.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.dataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.listClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.menuClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.scrollClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.sliderClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.textClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.treeClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.videoClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.controls.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.core.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.effects.easing.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.effects.effectClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.effects.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.events.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.modules.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.printing.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/mx.skins.halo.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/docs/packages.dita
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.accessibility.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.containers.accordionClasses.x ml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.containers.dividedBoxClasses. xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.containers.utilityClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.containers.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.controls.dataGridClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.controls.listClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.controls.menuClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.controls.scrollClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.controls.sliderClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.controls.textClasses.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/docs/mx.controls.treeClasses.

  • [svn:fx-trunk] 12792: merge 3.x rev#12715 - trunk

    Revision: 12792
    Revision: 12792
    Author:   [email protected]
    Date:     2009-12-10 08:26:20 -0800 (Thu, 10 Dec 2009)
    Log Message:
    merge 3.x rev#12715 -> trunk
    integrate:
    Flash Player 10: 10.0.42.34
    Flash Player 9: 9.0.260.0
    AIR 1.5.3: 20091120ap
    checkintests pass
    Modified Paths:
        flex/sdk/trunk/in/air/mac/AIR Integration Kit.tbz2
        flex/sdk/trunk/in/air/win/AIR Integration Kit.zip
        flex/sdk/trunk/in/player/10/lnx/flashplayer.tar.gz
        flex/sdk/trunk/in/player/10/lnx/install_flash_player_10_linux.tar.gz
        flex/sdk/trunk/in/player/10/lnx/libflashplayer.so.tar.gz
        flex/sdk/trunk/in/player/10/mac/Flash Player.app.zip
        flex/sdk/trunk/in/player/10/mac/Install Flash Player 10 UB.dmg
        flex/sdk/trunk/in/player/10/win/FlashPlayer.exe
        flex/sdk/trunk/in/player/10/win/Install Flash Player 10 ActiveX.exe
        flex/sdk/trunk/in/player/10/win/Install Flash Player 10 Plugin.exe
    Property Changed:
        flex/sdk/trunk/

  • [svn:fx-trunk] 15632: merge 4.x rev 15243 - trunk

    Revision: 15632
    Revision: 15632
    Author:   [email protected]
    Date:     2010-04-21 11:48:17 -0700 (Wed, 21 Apr 2010)
    Log Message:
    merge 4.x rev 15243 -> trunk
    Argo 10.1.53.10
    QE notes: no
    Doc notes: no
    Bugs: no
    Reviewer:no
    Tests run: no
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/frameworks/libs/player/10.1/playerglobal.swc
        flex/sdk/trunk/in/player/10.1/lnx/flashplayerdebugger.tar.gz
        flex/sdk/trunk/in/player/10.1/lnx/install_flash_player_10_linux.tar.gz
        flex/sdk/trunk/in/player/10.1/lnx/libflashplayer.so.tar.gz
        flex/sdk/trunk/in/player/10.1/mac/Flash Player Debugger.app.zip
        flex/sdk/trunk/in/player/10.1/mac/Install Adobe Flash Player Debugger 10.1.dmg
        flex/sdk/trunk/in/player/10.1/win/FlashPlayerDebugger.exe
        flex/sdk/trunk/in/player/10.1/win/InstallAX.exe
        flex/sdk/trunk/in/player/10.1/win/InstallPlugin.exe
    Property Changed:
        flex/sdk/trunk/

  • [svn:bz-4.x] 14766: Merge revisions 14749, 14750, 14752, 14753, 14760 and 14761 from trunk to branches/4.x

    Revision: 14766
    Revision: 14766
    Author:   [email protected]
    Date:     2010-03-15 13:48:54 -0700 (Mon, 15 Mar 2010)
    Log Message:
    Merge revisions 14749, 14750, 14752, 14753, 14760 and 14761 from trunk to branches/4.x
    Bug: BLZ-500 fixed in revisions 14760 and 14761
    checkintests: passed
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-500
    Modified Paths:
        blazeds/branches/4.x/build.xml
        blazeds/branches/4.x/development/eclipse/projects/java/blazeds-team.war/.classpath
        blazeds/branches/4.x/development/eclipse/projects/readme.txt
        blazeds/branches/4.x/modules/sdk/build.xml
        blazeds/branches/4.x/qa/apps/qa-regress/testsuites/mxunit/tests/proxyService/202863/bug20 2863DocLit.mxml
        blazeds/branches/4.x/qa/apps/qa-regress/testsuites/mxunit/tests/proxyService/202863/bug20 2863RpcEnc.mxml
        blazeds/branches/4.x/servers/apache-tomcat-6.0.14/bin/catalina.sh
        blazeds/branches/4.x/servers/apache-tomcat-6.0.14/bin/digest.sh
        blazeds/branches/4.x/servers/apache-tomcat-6.0.14/bin/setclasspath.sh
        blazeds/branches/4.x/servers/apache-tomcat-6.0.14/bin/shutdown.sh
        blazeds/branches/4.x/servers/apache-tomcat-6.0.14/bin/startup.sh
        blazeds/branches/4.x/servers/apache-tomcat-6.0.14/bin/tool-wrapper.sh
        blazeds/branches/4.x/servers/apache-tomcat-6.0.14/bin/version.sh
    Property Changed:
        blazeds/branches/4.x/
        blazeds/branches/4.x/modules/common/src/flex/messaging/config/XPathClientConfigurationPar ser.java
        blazeds/branches/4.x/modules/core/src/flex/management/PlatformMBeanServerLocator.java
        blazeds/branches/4.x/modules/core/src/flex/messaging/config/XPathServerConfigurationParse r.java
        blazeds/branches/4.x/modules/core/src/flex/messaging/io/amf/translator/decoder/EnumDecode r.java
        blazeds/branches/4.x/modules/proxy/src/flex/
        blazeds/branches/4.x/modules/remoting/src/flex/

  • [svn:bz-4.x] 14931: Merge revisions from 14804 to 14910 from trunk

    Revision: 14931
    Revision: 14931
    Author:   [email protected]
    Date:     2010-03-22 19:04:58 -0700 (Mon, 22 Mar 2010)
    Log Message:
    Merge revisions from 14804 to 14910 from trunk
    checkintests: passed
    Modified Paths:
        blazeds/branches/4.x/apps/samples/WEB-INF/flex/proxy-config.xml
        blazeds/branches/4.x/apps/samples/index.htm
        blazeds/branches/4.x/apps/team/WEB-INF/flex/remoting-config.xml
        blazeds/branches/4.x/apps/team/WEB-INF/flex/services-config.xml
        blazeds/branches/4.x/apps/team/features/security-constraints/securityConstraint_Custom.mx ml
        blazeds/branches/4.x/build.xml
        blazeds/branches/4.x/development/eclipse/projects/java/blazeds-team.war/.classpath
        blazeds/branches/4.x/resources/config/bootstrapservices/HTTPProxyBootstrapService.java
        blazeds/branches/4.x/resources/config/bootstrapservices/MessagingBootstrapService.java
        blazeds/branches/4.x/resources/config/bootstrapservices/RemotingBootstrapService.java
        blazeds/branches/4.x/resources/flex_sdk/readme.txt
        blazeds/branches/4.x/servers/apache-tomcat-6.0.14/conf/tomcat-users.xml
    Added Paths:
        blazeds/branches/4.x/apps/team/WEB-INF/src/features/bootstrapservices/
        blazeds/branches/4.x/apps/team/WEB-INF/src/features/bootstrapservices/HTTPProxyBootstrapS ervice.java
        blazeds/branches/4.x/apps/team/WEB-INF/src/features/bootstrapservices/MessagingBootstrapS ervice.java
        blazeds/branches/4.x/apps/team/WEB-INF/src/features/bootstrapservices/RemotingBootstrapSe rvice.java
        blazeds/branches/4.x/apps/team/WEB-INF/src/features/validators/deserialization/ClassLoggi ngDeserializationValidator.java
        blazeds/branches/4.x/apps/team/features/security-constraints/securityConstraint_Legacy.mx ml
        blazeds/branches/4.x/resources/flex_sdk/turnkey-readme.txt
    Removed Paths:
        blazeds/branches/4.x/apps/team/WEB-INF/src/features/bootstrapservices/HTTPProxyBootstrapS ervice.java
        blazeds/branches/4.x/apps/team/WEB-INF/src/features/bootstrapservices/MessagingBootstrapS ervice.java
        blazeds/branches/4.x/apps/team/WEB-INF/src/features/bootstrapservices/RemotingBootstrapSe rvice.java
    Property Changed:
        blazeds/branches/4.x/

Maybe you are looking for

  • How can I file a complaint about an employee who has been messing with me on purpose (on trades)?

    Hello. What's the best way to file a complaint against an employee who basically tried to ruin all game trades for me? She just stands there in the customer service section doing nothing, she paces back and forth while customers are waiting, and she

  • Return the User to the Calling Page - doesn't work

    Hello All, I set up the "Issue tracker" tutorial to get in tuch with the apex (htmldb vers. 2.0) All is working well but: Return the User to the Calling Page -> doesn't work. I performed all steps as descriped in the tutorial (iclusive the '.' on the

  • File doesn't exist e:\as_apps\apache\apache\htdocs\index.html

    I have a OracleAS 10g server setup and I placed the this in the CGICMD.DAT file cgicmd.dat file I put this in the cgicmd.dat file in the Apps home and the reports/forms home. hpl: destype=cache server=rep_cte07 userid=hplwebr/internet@hplprd %* cscpr

  • Jdeveloper upgrade and datasource problem

    Hi, I upgraded my jeveloper to Oracle IDE     10.1.2.17.84 java.version     1.4.2_04 and all the applications that use data source do not run anymore. When the application connects to the database, the following error message is generated. java.lang.

  • Phone Shutting Down

    I am hoping that someone in this forum might be able to help me with the recent problem I have been experiencing lately with my 3G iPhone; For the past day or 2, if I am talking on the phone with someone and pull the phone away from my face (to hang