[svn:fx-trunk] 13299: fix the _rb swc so that it updates properly when changes happen - update=" true" so that it will compile correctly when using locales

Revision: 13299
Revision: 13299
Author:   [email protected]
Date:     2010-01-05 19:07:45 -0800 (Tue, 05 Jan 2010)
Log Message:
fix the _rb swc so that it updates properly when changes happen - update="true" so that it will compile correctly when using locales
QE notes: ensure it contains a catalog.xml file, a swf, and a locale directory with properties file
Doc notes:
Bugs: https://bugs.adobe.com/jira/browse/SDK-24802
Reviewer: pete
Tests run:
Is noteworthy for integration: no
Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-24802
Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/build.xml

I've dropped my guard before with the security and I had so much trouble with my computer because of all the people trying to attack my computer I just can't take the chance again.  www.MySafetyGates.com

Similar Messages

  • [svn:fx-trunk] 10578: Fix the SkinTest.mxml in the sparkTest project: use backgroundColor style as we don't have a property anymore.

    Revision: 10578
    Author:   [email protected]
    Date:     2009-09-24 15:02:04 -0700 (Thu, 24 Sep 2009)
    Log Message:
    Fix the SkinTest.mxml in the sparkTest project: use backgroundColor style as we don't have a property anymore.
    QE notes: None
    Doc notes: None
    Bugs: None
    Reviewer: Evtim
    Tests run: build
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/development/eclipse/flex/sparkTest/src/SkinTest.mxml

    I finally found how to set a default skin to a custom component so that users of my component will not have to set again the skinClass value of my component.
    You have to create a defaults.css file at the root of your library and tell the compiler to take it into account.
    The remaining problem is about the compiler. There are some steps before success and they are a bit mysterious/unclear....
    I found 2 or 3 blog articles explaining those steps but the compiler arguments to use are all differents in each article...
    Here are the links I found:
    http://www.unitedmindset.com/jonbcampos/2010/05/12/creating-custom-spark-components/
    http://www.betadesigns.co.uk/Blog/2010/05/14/default-skin-for-custom-flashbuilder-componen ts/
    http://flexdevtips.blogspot.com/2009/06/default-stylesheet-in-swc-flex-library.html
    Following the first article guidelines has been successful for me but I'm not marking this topic as Resolved because I'd like some answers about this whole thing...

  • [svn:fx-trunk] 7553: Fix the default value of the [skinPart] "required" attribute for asdoc.

    Revision: 7553
    Author:   [email protected]
    Date:     2009-06-04 09:32:51 -0700 (Thu, 04 Jun 2009)
    Log Message:
    Fix the default value of the "required" attribute for asdoc.
    Bugs: SDK-21488
    QE Notes: None.
    Doc Notes: None.
    tests: checkintests
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21488
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelGenerator.java

    ${ui:cond( uix.current.isNewRow, 'true', ui:cond( bindings.AddProjectNutsoverleg.value == 1, 'true', 'false' ) ) } notice the '.value' it could also be '.inputValue'.
    If not there is also an option to make sure that when the checkbox is empty a value is returned anyways this work like this:
      protected void processUpdateModel( DataActionContext ctx )
        //First look for the request parameter
        Object cbInRequest = ctx.getHttpServletRequest().getParameter( "nameofthecheckbox" );
        //We only need to do anything if it was not submitted
        if( cbInRequest == null )
          // Get hold of the Form Bean containing the record
          BindingContainerActionForm updateForm = (BindingContainerActionForm) ctx.getActionForm();
          //Get the binding for our particular column
          JUCtrlAttrsBinding checkBoxBinding = (JUCtrlAttrsBinding)updateForm.get( "nameofthecheckbox" );
          //Reset that explicitly to the *unchecked* value
          checkBoxBinding.setAttribute( 0, new oracle.jbo.domain.Number( 0 ) );
        super.processUpdateModel( ctx );
      }Maybe this helps.

  • [svn:bz-trunk] 19160: fix the regression of failed send out unsubscription message to the message client .

    Revision: 19160
    Revision: 19160
    Author:   [email protected]
    Date:     2010-12-08 11:31:26 -0800 (Wed, 08 Dec 2010)
    Log Message:
    fix the regression of failed send out unsubscription message to the message client.
    Basically when the MessageClient is in shutting down stage (still valid) the shutdown procedure needs to push message back to the client still. It is a regression introduced by change 18858
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/MessageClient.java
        blazeds/trunk/modules/core/src/flex/messaging/client/FlexClient.java

    Hello,
    Here is my 2 cents.
    Oracle recommends you set the Oc4jCacheSize parameter to reduce the occurrences of MOD_OC4J_0087 and
    related errors in your Apache error logs. To change this parameter, follow these steps:
    1. Stop the OPMN processes on the middle tier.
    2. On the middle-tier computer, open a terminal window and go to $ORACLE_HOME/Apache/Apache/conf.
    3. Enter the following command:
    cp mod_oc4j.conf mod_oc4j.conf.pre3604573
    4. Edit the mod_oc4j.conf file by adding the following line after the </IfModule> line, but before the
    Oc4Jmount /j2ee/* line:
    Oc4jCacheSize 0
    5. Start the OracleOPMN processes on the middle tier.
    I would still suggest to analyze the stack trace further for exact issues.
    Rgds,Ramesh

  • [svn:fx-trunk] 8474: * Fixed the AST generation code path of Vector typed variables and

    Revision: 8474
    Author:   [email protected]
    Date:     2009-07-09 07:20:32 -0700 (Thu, 09 Jul 2009)
    Log Message:
    Fixed the AST generation code path of Vector typed variables and
      properties with Bindable.
    tests Passed: checkintests
    Needs QA: YES
    Needs DOC: NO
    Bug fixes: SDK-21587
    API Change: NO
    Reviewer: Peter D.
    Code-level description of changes:
       AbstractSyntaxTreeUtil.java
         Modified generateParameter(*) to use generateTypeExpression().
       binding/BindableSecondPassEvaluator.java
         Modified generateGetter() to use AbstractSyntaxTreeUtil.generateTypeExpression().
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21587
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/AbstractSyntaxTreeUtil.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/BindableSecondPassEva luator.java

    I got again a total system freeze today when I wanted to launch firefox using only the openbox menu, without wbar running.
    So I decided to try now the 'nouveau.noaccel=1' kernel command line parameter, and to use again wbar for my frequently used applis.
    In the Xorg log, the differences are:
    without 'nouveau.noaccel=1'
    [ 30.761] (II) UnloadModule: "nv"
    [ 30.761] (II) Unloading nv
    [ 30.761] (--) Depth 24 pixmap format is 32 bpp
    [ 30.762] (II) NOUVEAU(0): Opened GPU channel 0
    [ 30.765] (II) NOUVEAU(0): [DRI2] Setup complete
    [ 30.765] (II) NOUVEAU(0): [DRI2] DRI driver: nouveau
    [ 30.765] (II) NOUVEAU(0): [DRI2] VDPAU driver: nouveau
    [ 30.776] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 30.777] (II) EXA(0): Driver registered support for the following operations:
    [ 30.777] (II) Solid
    [ 30.777] (II) Copy
    [ 30.777] (II) Composite (RENDER acceleration)
    [ 30.777] (II) UploadToScreen
    [ 30.777] (II) DownloadFromScreen
    [ 30.777] (==) NOUVEAU(0): Backing store disabled
    [ 30.777] (==) NOUVEAU(0): Silken mouse enabled
    with 'nouveau.noaccel=1'
    [ 1191.621] (II) UnloadModule: "nv"
    [ 1191.621] (II) Unloading nv
    [ 1191.621] (--) Depth 24 pixmap format is 32 bpp
    [ 1191.621] (EE) NOUVEAU(0): Error creating GPU channel: -19
    [ 1191.621] (EE) NOUVEAU(0): Error initialising acceleration. Falling back to NoAccel
    [ 1191.621] (==) NOUVEAU(0): Backing store disabled
    [ 1191.621] (==) NOUVEAU(0): Silken mouse enabled
    [ 1191.621] (==) NOUVEAU(0): DPMS enabled
    So now 3D acceleration is disabled.
    I will see now if the system is stable enough for my daily usage and gives satisfactory performances.
    I am almost sure that the mesa nouveau dri driver is the cause of the freezes.
    Last edited by berbae (2013-03-27 10:07:42)

  • [svn:fx-trunk] 9178: Fix the build.

    Revision: 9178
    Author:   [email protected]
    Date:     2009-08-07 15:01:37 -0700 (Fri, 07 Aug 2009)
    Log Message:
    Fix the build.  removed duplicate line left in comment
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/SimpleXMLEncoder.as

  • [svn:fx-trunk] 12868: fix the doc target to actually include the dita's

    Revision: 12868
    Revision: 12868
    Author:   [email protected]
    Date:     2009-12-11 14:06:48 -0800 (Fri, 11 Dec 2009)
    Log Message:
    fix the doc target to actually include the dita's
    QE notes: no
    Doc notes:
    Bugs: sdk-24682
    Reviewer: no
    Tests run: checkinitests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/sdk-24682
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/osmf/build.xml
        flex/sdk/trunk/frameworks/projects/textLayout/build.xml

  • [svn:fx-trunk] 10051: fix the build. xml that we include in the package in the frameworks directory.

    Revision: 10051
    Author:   [email protected]
    Date:     2009-09-08 07:53:47 -0700 (Tue, 08 Sep 2009)
    Log Message:
    fix the build.xml that we include in the package in the frameworks directory. 
    -remove haloclassic
    -add textlayout
    -reorganize the targets
    QE notes: no
    Doc notes: no
    Bugs: sdk-22441
    Reviewer: n/a
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/sdk-22441
    Modified Paths:
        flex/sdk/trunk/frameworks/build_framework.xml

  • [svn:bz-trunk] 18928: fixing the sample service-config. xml for max-object-nest-level setting

    Revision: 18928
    Revision: 18928
    Author:   [email protected]
    Date:     2010-12-01 14:16:56 -0800 (Wed, 01 Dec 2010)
    Log Message:
    fixing the sample service-config.xml for max-object-nest-level setting
    Modified Paths:
        blazeds/trunk/resources/config/services-config.xml

    you have your driver jar in Tomcat\common\lib?
    if so, check your classpath, it could be that.

  • [svn:fx-trunk] 11541: Fix the textLayout build number that is set in the main build. xml to match what will be set when the build machine does NOT do the build

    Revision: 11541
    Author:   [email protected]
    Date:     2009-11-06 14:29:41 -0800 (Fri, 06 Nov 2009)
    Log Message:
    Fix the textLayout build number that is set in the main build.xml to match what will be set when the build machine does NOT do the build
    QE notes: no
    Doc notes: no
    Bugs: no
    Reviewer:
    Tests run: checkintests
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/frameworks/air-config.xml
        flex/sdk/trunk/frameworks/flex-config.xml

    Thats good news.

  • [svn:bz-trunk] 18966: Fix the build.

    Revision: 18966
    Revision: 18966
    Author:   [email protected]
    Date:     2010-12-02 10:13:56 -0800 (Thu, 02 Dec 2010)
    Log Message:
    Fix the build.
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/endpoints/AbstractEndpoint.java
        blazeds/trunk/modules/core/src/flex/messaging/io/SerializationContext.java

  • [svn:fx-trunk] 8265: fix the textlLayout swf to contain the version number as well as the build number

    Revision: 8265
    Author:   [email protected]
    Date:     2009-06-25 15:30:56 -0700 (Thu, 25 Jun 2009)
    Log Message:
    fix the textlLayout swf to contain the version number as well as the build number
    Modified Paths:
        flex/sdk/trunk/build.xml

    Thats good news.

  • [svn:fx-trunk] 17790: fix the samples.

    Revision: 17790
    Revision: 17790
    Author:   [email protected]
    Date:     2010-09-21 12:52:57 -0700 (Tue, 21 Sep 2010)
    Log Message:
    fix the samples.  Have them refer to 10.1 playerglobal
    QE notes: no
    Doc notes: no
    Bugs: no
    Reviewer:no
    Tests run: no
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/samples/themes/arcade/build.xml
        flex/sdk/trunk/samples/themes/cobalt/build.xml
        flex/sdk/trunk/samples/themes/graphite/build.xml
        flex/sdk/trunk/samples/themes/zen/build.xml

  • [svn:fx-trunk] 9722: Fix the build.

    Revision: 9722
    Author:   [email protected]
    Date:     2009-08-27 15:53:29 -0700 (Thu, 27 Aug 2009)
    Log Message:
    Fix the build.  Goes with rev 9721.  Remove framework_textLayout from build.xml
    Modified Paths:
        flex/sdk/trunk/build.xml

  • [svn:bz-trunk] 14778: fix the tests by checking all possible return text.

    Revision: 14778
    Revision: 14778
    Author:   [email protected]
    Date:     2010-03-16 09:14:53 -0700 (Tue, 16 Mar 2010)
    Log Message:
    fix the tests by checking all possible return text.
    Modified Paths:
        blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/proxyService/httpservice/amfchan nel/hs_resultformat.mxml
        blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/proxyService/httpservice/httpcha nnel/hs_resultformat.mxml

    I believe that plugins rely on the libraries being located in a specific location. The installer can place these libraries in the specific location or some other installer can do that. You can create code that scans the library directly to "learn" what packages/libraries are available. Then you would build the path to that VI and open the reference to it.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

Maybe you are looking for

  • Is it possible to make the slave harddrive store the desktop?

    I have a 10 gig master hard drive and an 80 gig slave. I could back up all my files and re-install OSX, but I was wondering if there was a way to make everything but the OS run off of the slave, including the desktop. thanks

  • Html on Jlabel font size varies

    Hi, I am trying to put html text on JLabel with different font sizes. The font size reflected on JLabel is different from the font size on swing components. eg. Font size xx large on JLabel with html is looking very different from font size xx large

  • How can I do to make JDialog activate or on the top in Html?

    Hi all, I used JApplet, which can be called from html file, to show a dialog (JDialog). I do not use model mode, my code likes that myDialog m_dlg = new myDialog(); m_dlg.show(); (myDialog extends from JDialog) The problem is that when the browser, w

  • Every time I upgrade my iTunes software I get more  !  labeled music files

    I am really frustrated. Every time I update my iTunes software more of my music comes up with the ! label indicating that iTunes cannot find the file. The files have not been moved at all and are still in the same place they always were. When I attem

  • Notification for reading a KM document

    Hi experts. My customer asked, if there is a possibilty to check which users have read a document in a KM folder. He has some kind of "outlook - read - notification" in mind. Does anybody know, if the access to the KM documents is traced this way? Ca