[svn:fx-trunk] 6350: Remove sharing restriction on display object container being a group with BasicLayout .

Revision: 6350
Author:   [email protected]
Date:     2009-04-28 12:57:53 -0700 (Tue, 28 Apr 2009)
Log Message:

FYI - This regression has been filed here: http://bugs.adobe.com/jira/browse/SDK-31989

Similar Messages

  • [svn:fx-trunk] 4959: Removed the undocumented TextBlockComposer and TextFlowComposer classes.

    Revision: 4959
    Author: [email protected]
    Date: 2009-02-13 17:10:57 -0800 (Fri, 13 Feb 2009)
    Log Message:
    Removed the undocumented TextBlockComposer and TextFlowComposer classes. These were helper classes for TextBox and TextGraphic, respectively. Their functionality has been rolled into TextBox, TextGraphic, and TextGraphicElement. This should improve both memory and speed since the helper objects no longer have to be created. It also allows more code to be shared in TextGraphicElement.
    QE Notes: None
    Doc Notes: None
    Bugs: None
    Reviewer: Carol
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/TextBox.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/TextGraphic.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/baseClasses/TextGraphicElement.a s
    Removed Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/baseClasses/TextBlockComposer.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/baseClasses/TextFlowComposer.as

  • [svn:fx-trunk] 14083: Removed svn:executable property from some . xml files in trunk.

    Revision: 14083
    Revision: 14083
    Author:   [email protected]
    Date:     2010-02-09 22:48:11 -0800 (Tue, 09 Feb 2010)
    Log Message:
    Removed svn:executable property from some .xml files in trunk.
    QE notes: None
    Doc notes: None
    Bugs: None
    Reviewer: None
    Tests run: ant checkintests
    Is noteworthy for integration: No
    Property Changed:
        flex/sdk/trunk/modules/asc/src/java/macromedia/asc/parser/LiteralVectorNode.java
        flex/sdk/trunk/modules/asc/src/localized_strings/CS/ErrorConstants.xml
        flex/sdk/trunk/modules/asc/src/localized_strings/CS/Lint_Warnings.xml
        flex/sdk/trunk/modules/asc/src/localized_strings/NL/ErrorConstants.xml
        flex/sdk/trunk/modules/asc/src/localized_strings/NL/Lint_Warnings.xml
        flex/sdk/trunk/modules/asc/src/localized_strings/PL/ErrorConstants.xml
        flex/sdk/trunk/modules/asc/src/localized_strings/PL/Lint_Warnings.xml
        flex/sdk/trunk/modules/asc/src/localized_strings/PT/ErrorConstants.xml
        flex/sdk/trunk/modules/asc/src/localized_strings/PT/Lint_Warnings.xml
        flex/sdk/trunk/modules/asc/src/localized_strings/RU/ErrorConstants.xml
        flex/sdk/trunk/modules/asc/src/localized_strings/RU/Lint_Warnings.xml
        flex/sdk/trunk/modules/asc/src/localized_strings/SV/ErrorConstants.xml
        flex/sdk/trunk/modules/asc/src/localized_strings/SV/Lint_Warnings.xml
        flex/sdk/trunk/modules/asc/src/localized_strings/TR/ErrorConstants.xml
        flex/sdk/trunk/modules/asc/src/localized_strings/TR/Lint_Warnings.xml

  • [svn:fx-trunk] 11376: Remove external image support from BitmapImage and BitmapFill.

    Revision: 11376
    Author:   [email protected]
    Date:     2009-11-02 11:39:44 -0800 (Mon, 02 Nov 2009)
    Log Message:
    Remove external image support from BitmapImage and BitmapFill.
    QE notes: none
    Doc notes: ASDoc updated. Any other docs that mention loading external images in BitmapImage, BitmapFill, or Border need to be updated.
    Bugs: none
    Reviewer: Jason
    Tests run: checkintests, cyclone
    Is noteworthy for integration: Yes
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/BitmapFill.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Border.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/BitmapImage.as

    That PKGBUILD doesn't work, primarily because _svnmod is not set correctly.  The remaining problems are mostly down to not being in the $srcdir directory when checking out the ImageMagick source.  It's also good practice to copy the source and do the build in the copy.  That way, it will be possible to successfully update the source and rebuild the package at a later date.  Otherwise, the PKGBUILD certainly works with the following modifications but I've no idea whether the package is viable because I didn't try installing and testing it.
    _svntrunk=https://www.imagemagick.org/subversion/ImageMagick/trunk
    _svnmod=ImageMagick
    build() {
    cd ${srcdir}
    if [ -d $_svnmod/.svn ]; then
    cd $_svnmod
    svn up
    else
    svn co $_svntrunk $_svnmod
    fi
    rm -r ${srcdir}/${_svnmod}-build
    cp -r ${srcdir}/${_svnmod} ${srcdir}/${_svnmod}-build
    cd ${srcdir}/${_svnmod}-build
    if [ "${CARCH}" = "x86_64" ]; then
    patch -Np1 < ../libpng_mmx_patch_x86_64.patch || return 1
    fi
    Etc., etc.
    Last edited by azleifel (2010-04-11 22:15:09)

  • [svn:fx-trunk] 7467: Removing font face validation so that the requested style is used whether or not it matches what the font describes .

    Revision: 7467
    Author:   [email protected]
    Date:     2009-06-01 08:10:15 -0700 (Mon, 01 Jun 2009)
    Log Message:
    Removing font face validation so that the requested style is used whether or not it matches what the font describes. This allows font families to be constructed from multiple fonts including those that do not describe their style in the OS/2 table. Note SWF and the Flash Player restriction of only support 4 faces per font family (plain, bold, italic, and bold & italic) still applies.
    QE: Yes, please look out for negative test cases for embedded font styles that no longer fail. Also look out for minor font outline differences given that we use AFEFontManager by default for DefineFont3 embedded fonts. If you require the legacy font outlines you can configure the test case to use the BatikFontManager (which has been retained for MPL distributions).
    Doc: Yes, we'll release note the relaxed font embedding rules for font faces. I'll annotate the bugs below.
    Reviewer: Paul
    Bugs:
    SDK-14309 - fontWeight should not be restricted
    SDK-14308 - fontWeight: bold is required when specifying certain fonts in the CSS file
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-14309
        http://bugs.adobe.com/jira/browse/SDK-14308
    Modified Paths:
        flex/sdk/trunk/frameworks/flex-config.xml
        flex/sdk/trunk/lib/flex-fontkit.jar
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/MxmlConfiguration.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/BatikFontManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/CachedFontManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/FontManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/JREFontManager.java

    i have sorted this out by placing it in the webapps dir of my tomcat. The problem is when i map a servlet in my own web.xml, it stops working. At this time i just want to map 1 servlet called main, and it is in C:\Tomcat 5.5\webapps\cmt3082\WEB-INF\classes\myProject
    cmt3082 is my project folder
    WEB-INF holds my web.xml
    classes holds my servlet, in this case main.java
    myProject holds my Java classes
    So i have mapped main like this for now
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
        version="2.4">
    <servlet> 
    <servlet-name>main</servlet-name> 
    <servlet-class>classes.main</servlet-class>
    </servlet>
    </web-app>But with this in place, it gives me the error cannot find requested resource. And i missing somthing in the web.xml?
    cheers

  • [svn:fx-trunk] 16385: -removed the utilities package target since it' s not used any longer - at least what is contained in this target.

    Revision: 16385
    Revision: 16385
    Author:   [email protected]
    Date:     2010-06-01 13:32:35 -0700 (Tue, 01 Jun 2010)
    Log Message:
    -removed the utilities package target since it's not used any longer - at least what is contained in this target.  I believe this was a leftover from flex 2 days.
    -fix up the packaging targets to ensure they are being properly built.  I removed depends="temp-clean" and inserted antcall target="temp-clean" because a target gets executed only once, even when more than one target depends on it. 
    QE notes:
    Doc notes: no
    Bugs: no
    Reviewer: Guarav
    Tests run: no
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/build.xml

    http://blogs.adobe.com/jkost/2014/06/installing-the-2014-release-of-creative-cloud.html
    -This messages says (at least some) CC 2014 programs use NEW plugins https://forums.adobe.com/thread/1499663
    -so do not uninstall the older CC programs if you use plugins in your programs until you are sure you have plugins that work in CC2014
    If you are sure you don't need the old CC programs
    -http://helpx.adobe.com/creative-cloud/help/install-apps.html to install or uninstall

  • [svn:bz-trunk] 15126: Removed NonHttpFlexSession that is not used anywhere in our code.

    Revision: 15126
    Revision: 15126
    Author:   [email protected]
    Date:     2010-03-30 01:48:55 -0700 (Tue, 30 Mar 2010)
    Log Message:
    Removed NonHttpFlexSession that is not used anywhere in our code. According to check-in notes, this class was introduced during LCDS and BlazeDS split and it was supposed to be extended by RTMP and RTMPT FlexSessions and will serve as a bridge between the community and enterprise servers, but this doesn't seem to be the case, so getting rid of it to avoid confusion.
    Removed Paths:
        blazeds/trunk/modules/core/src/flex/messaging/NonHttpFlexSession.java

    Very strange, something else running that may be holding onto the UFL in memory?
    I know it's extreme but what happens if you re-boot and use the new UFL? Just to verify it's unloaded.
    What happens if you create a new report?
    Try this[ sample UFL|https://bosap-support.wdf.sap.corp/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3030303135323530313426] also.
    Thanks
    Don

  • [svn:fx-trunk] 5839: * Removed the logic that tracked when cached SWC had been removed from

    Revision: 5839
    Author: [email protected]
    Date: 2009-04-01 10:34:31 -0700 (Wed, 01 Apr 2009)
    Log Message:
    * Removed the logic that tracked when cached SWC had been removed from
    the library path, because it wasn't working correctly in some cases
    and it is no longer necessary due to revision 5524.
    tests Passed: checkintests, performance testsuite, FlexBuilder
    outputFolder JUnit tests
    Needs QA: YES
    Needs DOC: NO
    API Change: NO
    Reviewer: Pete F.
    Code-level description of changes:
    CompilerSwcContext.java
    Removed updateRemovedSources() and it's usage.
    CompilerAPI.java
    Removed deleteRemovedSwcSources(), renamed
    deleteObsoletedSwcSources() to reportObsoletedSwcSources(), and
    deleteShadowedSwcSources() to reportShadowedSwcSources().
    Updated validateCompilationUnits() to no longer report
    DependentFileNoLongerExists.
    SwcCache.java
    Removed "removed" and "updated" variables, their getters, and the
    code that initialized them.
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/CompilerAPI.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/CompilerSwcContext.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcCache.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcGroup.java

    Revision: 5839
    Author: [email protected]
    Date: 2009-04-01 10:34:31 -0700 (Wed, 01 Apr 2009)
    Log Message:
    * Removed the logic that tracked when cached SWC had been removed from
    the library path, because it wasn't working correctly in some cases
    and it is no longer necessary due to revision 5524.
    tests Passed: checkintests, performance testsuite, FlexBuilder
    outputFolder JUnit tests
    Needs QA: YES
    Needs DOC: NO
    API Change: NO
    Reviewer: Pete F.
    Code-level description of changes:
    CompilerSwcContext.java
    Removed updateRemovedSources() and it's usage.
    CompilerAPI.java
    Removed deleteRemovedSwcSources(), renamed
    deleteObsoletedSwcSources() to reportObsoletedSwcSources(), and
    deleteShadowedSwcSources() to reportShadowedSwcSources().
    Updated validateCompilationUnits() to no longer report
    DependentFileNoLongerExists.
    SwcCache.java
    Removed "removed" and "updated" variables, their getters, and the
    code that initialized them.
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/CompilerAPI.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/CompilerSwcContext.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcCache.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcGroup.java

  • [svn:fx-trunk] 12883: Remove the skin classes from the halo theme project to avoid redundancy with the airframework /framework swcs.

    Revision: 12883
    Revision: 12883
    Author:   [email protected]
    Date:     2009-12-12 15:53:50 -0800 (Sat, 12 Dec 2009)
    Log Message:
    Remove the skin classes from the halo theme project to avoid redundancy with the airframework/framework swcs.
    QE notes: No
    Doc notes: No
    Bugs: SDK-24293
    Reviewer: Glenn
    Tests run: Checkintests, smattering of Halo and AIR mustella tests
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24293
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/FrameworkClasses.as
        flex/sdk/trunk/frameworks/projects/halo/build.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/WindowBackground.as
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/halo/assets/
        flex/sdk/trunk/frameworks/projects/halo/src/HaloClasses.as
        flex/sdk/trunk/frameworks/projects/halo/src/mx/skins/

  • [svn:fx-trunk] 7434: Remove over-optimization that doesn't work if bounds. x != 0.

    Revision: 7434
    Author:   [email protected]
    Date:     2009-05-29 11:22:17 -0700 (Fri, 29 May 2009)
    Log Message:
    Remove over-optimization that doesn't work if bounds.x != 0.
    QA Notes:
    Doc Notes:
    Bugs: SDK-21470
    Reviewers: Gordon
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21470
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/flex4/src/spark/primitives/SimpleText.as

    I have exactly the same issue and it is INFURIATING. I have done several factory resets. reinstalled iTunes, pretty much everything as above. Hours and hours of failed trial and error. I can get one proper sync. ONE. If I'm lucky, by wiping everything. Then will iTunes update reliably? NO. Exactly the above issue. (including huge "other" files from some of the failed syncs.)
    Iphone 6, latest updates. Latest OS X, latest iTunes. This problem started in the last week or so with my iPhone 5 before I upgraded a few weeks ago. It has to be an issue with the new iTunes and its (in)ability to do proper syncing.

  • [svn:bz-trunk] 20004: Remove unneeded cast and instanceof check for FlexConfigurable.

    Revision: 20004
    Revision: 20004
    Author:   [email protected]
    Date:     2011-01-28 11:13:07 -0800 (Fri, 28 Jan 2011)
    Log Message:
    Remove unneeded cast and instanceof check for FlexConfigurable.
    No functional change.
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/FactoryDestination.java

  • [svn:fx-trunk] 14367: remove old version of TLF missed in a previous merge

    Revision: 14367
    Revision: 14367
    Author:   [email protected]
    Date:     2010-02-23 12:02:36 -0800 (Tue, 23 Feb 2010)
    Log Message:
    remove old version of TLF missed in a previous merge
    QE notes: no
    Doc notes: no
    Bugs: no
    Reviewer: no
    Tests run:
    Is noteworthy for integration: no
    Removed Paths:
        flex/sdk/trunk/frameworks/rsls/textLayout_1.0.0.591.swf

    https://discussions.apple.com/message/23488633#23488633
    I started a post here about the same thing.
    Seems GB still has the effects built in, but apple is not allowing us to gain access. They purposly took things away that are allready there,  but why?

  • [svn:fx-trunk] 10201: Removing special case Container opaqueBackground logic that was added recently as it is no longer required .

    Revision: 10201
    Author:   [email protected]
    Date:     2009-09-12 13:23:35 -0700 (Sat, 12 Sep 2009)
    Log Message:
    Removing special case Container opaqueBackground logic that was added recently as it is no longer required.
    QE notes: None
    Doc notes: None
    Bugs: SDK-23129
    Reviewer: Glenn
    Tests run: V_H_Box, Canvas mustella tests.
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23129
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Container.as

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • [svn:fx-trunk] 12826: Removed the WindowedApplicationAccImpl.

    Revision: 12826
    Revision: 12826
    Author:   [email protected]
    Date:     2009-12-10 19:02:25 -0800 (Thu, 10 Dec 2009)
    Log Message:
    Removed the WindowedApplicationAccImpl.  It is likely not needed.  In its current state it would prevent child components accessibility from being exposed.  Accessible Name is set from title attribute of Window or can be set on an component through Accessibility Properties.
    QE notes: none
    Doc notes: none
    Bugs: n/a
    Reviewer: Gordon
    Tests run: checkintests
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airspark/src/spark/components/WindowedApplication.as

  • [svn:fx-trunk] 12825: Removed the WindowAccImpl.

    Revision: 12825
    Revision: 12825
    Author:   [email protected]
    Date:     2009-12-10 19:01:33 -0800 (Thu, 10 Dec 2009)
    Log Message:
    Removed the WindowAccImpl.  It is likely not needed.  In its current state it would prevent child components accessibility from being exposed.  Accessible name will likely be display from title attribute of Window.
    QE notes: none
    Doc notes: none
    Bugs: n/a
    Reviewer: Gordon
    Tests run: checkintests
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airspark/src/spark/components/Window.as

Maybe you are looking for

  • Display error message in screen

    Hi Friends, I am working on user exit. I have created a screen for the user to confirm the selection. Based on the user's choice, if yes i have to proceed so i've set screen 0. leave screen. But when they select no i've display an error message and t

  • Download Error in CC Apps Tab

    Why is it that when I go to the Apps tab in the CC app, I see a message saying "Download Error"? My internet is fine, and other portions of the CC app that use the internet work fine. Any ideas?

  • Content-based image retrieval with SQL/MM Still Image

    Hi With ORDIMage signature matching being deprecated in 11g, does anyone have any experience of performing content based image retrieval with SQL/MM Still Image? Thanks Brian

  • Creating Custom Monitors in Business Process Monitoring

    Hi all, I have configured business process monitoring in our Solution Manage EP1 box for our Production ECC5 server. The standard monitoring types such as Application Monitor, Due List, Background Job Monitor and their corresponding monitors work OK,

  • Missing "Saved Photos" album

    So I'm using a wifi only model that I bought off a friend (who stepped up to the 3g version). He had a bunch of stuff on his so the first thing I did was do a restore in iTunes. It all went fine except that when saving photos from safari and dropbox,