[svn:fx-4.0.0] 13665: remove the call to clean-temp before the package staging starts.

Revision: 13665
Revision: 13665
Author:   [email protected]
Date:     2010-01-20 10:17:54 -0800 (Wed, 20 Jan 2010)
Log Message:
remove the call to clean-temp before the package staging starts.  Removing the temp directory before the copy was removing the config updates that happen before this target is called.
QE notes: make sure the flex and air configs have been updated.
Doc notes:
Bugs: https://bugs.adobe.com/jira/browse/SDK-25160
Reviewer: gaurav
Tests run:
Is noteworthy for integration:
Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-25160
Modified Paths:
    flex/sdk/branches/4.0.0/build.xml

Before compiling the architecture must be adjusted in the FFdecsa/Makefile (defaults to athlon-xp).
The readme file in the src directory provides more details.

Similar Messages

  • I received notice about a new cover art requirement (1400x1400 pixels) but can't find a way to change my existing art. My podcast has been updating flawlessly for several years, so I'd hate to have to remove the feed and start over.

    I received notice about a new cover art requirement (1400x1400 pixels) but can't find a way to change my existing art. My podcast has been updating flawlessly for several years, so I'd hate to have to remove the feed and start over.

    Please note - this was not a personalized email - Apple is sending this out to ALL podcasts that are listed on iTunes.
    If you are hosting with Libsyn or most any other "Podcast" host you should be ok. 
    http://blog.libsyn.com/libsyn-servers-are-byte-range-enabled-and-100-compliant-w ith-i-tunes-requirements
    If you are on a self hosted site or worse yet using some file storage service like Dropbox - then you are going to have issues. 
    Again - this leter from Apple does not mean anything is wrong wth your show specifically - it is a generic letter going out to all podcasters.
    Rob W
    podCast411

  • [svn] 2490: -include FP10 web installers in the package, just the standalone players were being included

    Revision: 2490
    Author: [email protected]
    Date: 2008-07-15 12:14:30 -0700 (Tue, 15 Jul 2008)
    Log Message:
    -include FP10 web installers in the package, just the standalone players were being included
    -get the linux web installers straightened out (had the mac installer in the lnx dir)
    Modified Paths:
    flex/sdk/branches/3.0.3/build.xml
    Added Paths:
    flex/sdk/branches/3.0.3/in/player/10/lnx/install_flash_player_10_linux.tar.gz
    Removed Paths:
    flex/sdk/branches/3.0.3/in/player/10/lnx/Flash Player.app.zip

    Sun should be proud to be open source, it is the only thing microsoft
    can't buy....Thats the only line of your whole pointless post that I read.
    Since when is "sun" open source. I imagine you mean java. Java isn't open source, what makes you think it is? You can get the source for it and modify it to suit ur needs as per the license but this isn't really open source.. is it?
    Anyway, don't waste space with your crap here, send an e-mail to somebody at sun instead, its just a waste posting this here.

  • How to i replace the firefox toolbar....and remove the toolbar that starts with MOST VISITED and SUGGESTED SITES

    Somehow lost the toolbar that has the page return arrows and refresh and stop icons. How can I replace those and remove a toolbar that starts with MOST VISITED and lists several SUGGESTED SITES.

    hello kittyheckel, please see [[Navigation buttons like back, home, bookmarks and reload are missing]]. you'll want to disable the bookmarks toolbar & enable the navigation toolbar.

  • Is there any way to remove the 'Java web start window' message on windows?

    This is unacceptable.
    You can download an application in any language and install it.
    If so many hoops have to be jumped through for security, and it changes the display to boot, this is simply not worth the (2 days!!) of effort is has taken to look into this and get it working right.

    nm, I figured out that a signed app will not have this problem.

  • How can I remove the Mozilla Firefox Start Page?

    When I start Firefox two tabs open up. One is my start page, the other is Mozilla Firefox Start Page. How can I set Firefox to NOT open the second tab?

    See these articles for some suggestions:
    * https://support.mozilla.com/kb/Firefox+has+just+updated+tab+shows+each+time+you+start+Firefox
    * https://support.mozilla.com/kb/How+to+set+the+home+page - Firefox supports multiple home pages separated by '|' symbols
    * http://kb.mozillazine.org/Preferences_not_saved

  • Remove the association between packets in SCSM

    Hi
    I keep all the elements of my system ( queues , lists, etc. ) in a standard package ServiceManager.IncidentManagement.Configuration.xml.
    I expanded form of the incident ( hidden and moved some fields ), and first posted in the package IncidentNewForm.xml ysy unsealed . This allowed us to remove the package at any time .
    After I sealed the bag , he suddenly became addicted to package ServiceManager.IncidentManagement.Configuration.xml!!! And now I can not remove the package with the extension and can not import ServiceManager.IncidentManagement.Configuration.xml if no console
    IncidentNewForm.mp!!!
    How to remove from the package ServiceManager.IncidentManagement.Configuration.xml all references to IncidentNewForm.mp? Delete all "IncidentNewForm" in the text makes the package unusable.
    My packs

    Anders is exactly correct. the issue is that the template you built references the MP that stores the customization, so the MP ServiceManager.IncidentManagement.Configuration.xml contains a references block that says it needs the IncidentNewForm.mp.
    you CAN manually remove this reference, provided the alias for that reference block isn't actually used anywhere else in that MP. 
    my point was that you might find it easier to simply declare this MP to be your Incident form customization MP, and keep all future incident form customization in that MP, so the reference remains valid in perpetuity. 

  • Check concordance between the package database and the filesystem

    Hello, I'd like to write this down :
    To list the packages installed in the database, I use
    pacman -Qsq
    -Q because it's a query on the local database, s to search and q for quiet.
    If you would like to list the files installed by pacman on your computer, you would do
    pacman -Qqs | xargs pacman -Ql | cut -f2 -d' '
    and if you would to count them you could write
    pacman -Qqs|xargs pacman -Ql|wc -l
    If you'd want to know if the files actually exist, and reporting for errors, you could run
    for a_package in $(pacman -Qqs) ; do
    for a_file in $( pacman -Ql ${a_package}|cut -d' ' -f2 ) ; do
    if [ ! -e ${a_file} ]; then
    echo package ${a_package} is broken: file ${a_file} is missing. ;
    # use the following if you would wish to remove the broken package.
    # sudo pacman -R ${a_package} ;
    # break
    fi ;
    done ;
    done
    The if test does check if the file, whatever its kind (folder, symbolic link, etc), does actually exist on your computer, and report a problem if the file is missing. In a generality purpose, I used test -e. You could look at the test manpage, to look for more elaborate examples. You can imagine report what kind of file is missing, or run a check of the permissions and owner which file has in the file system.
    So, I use this because I recently messed up my system with AUR build that came along with the database, but was hard to debug. I don't know how to distinguish between an AUR package and an official package, so this solution came out to clean my database.
    I hope I could post more code snippets here if you find it useful. See you.
    Last edited by dkremer (2011-08-12 13:05:26)

    Allan wrote:pacman -Qk ?
    yes. It does the job as well. Just a question: can you use the output of this command to remove the packages which are broken ?
    EDIT: actually pacman -Qqk gives the name of broken packages. My apologies.
    Last edited by dkremer (2011-08-14 13:20:23)

  • I am running a MacBook Pro with 10.7.5 and I downloaded the OS X 10.10.2 Update Combo, however when I try and open the package the error message "This volume is used for TimeMachine-backups". Which is not true. I´m using TimeCapsule.

    I am running a MacBook Pro with 10.7.5 and I downloaded the OS X 10.10.2 Update Combo.
    When I try and open the package after accepting the lincence-agreement and upon choosing the install-volume the error message appears: "This volume is used for TimeMachine-backups".
    Which is not true. I´m using a timecapsule for backups.
    How can I proceed?

    I am using a MacBook Pro (2010) with 2.53 GHz Intel Core i5, 4GB, 1067 MHz, DDR3, Startvolume Macintosh HD.
    After downloading the package and starting upgrading it asks acceptance of the license-agreement. After that it asks for the volume were to install. And when I click on the Startvolume Macintosh HD (which is the only available on the machine) it says: "The volume is already being used for Time Machine-Backups".
    It doesn´t offer to skip that point or to reconfigure the Time Machine settings.
    The point is that my Time machine is not and has never used the Mac HD for Backups. In the past I have used an external drive and since 05/2014 I am using a Time Capsule which is appropriately addressed in the Time Machine settings.

  • [svn] 3347: -remove the javascript directory since it is getting cleaned and recreated during the build process .

    Revision: 3347
    Author: [email protected]
    Date: 2008-09-25 06:27:28 -0700 (Thu, 25 Sep 2008)
    Log Message:
    -remove the javascript directory since it is getting cleaned and recreated during the build process.
    -this should make SVN happy and get the builds working again
    Removed Paths:
    flex/sdk/trunk/frameworks/javascript/FABridge/samples/srcview/source/fabridge/javascript/

    - Where? That depends upon what you what. But, going by the letter of what you asked, you shouldn't deploy any applications or packages if you want them on your newly images systems, you should make them a part of the TS using Install Software and Install
    Application tasks.
    - How many times? You should only need one although depending upon what you are deploying and if you are using offline updates, some folks add more. I typically use two one right after the Setup Windows and ConfigMgr task (just like the task sequence wizard
    builds for you) to update the OS and "things" in the image and one at the end to catch additional updates for apps and components added during the TS. Note that you also have to initiate an update scan cycle for additional install update tasks to work. Do
    this by adding a run-command line task before the second Install Updates task with the proper WMIC incantation.
    - Offline Updates only injects CBS updates into the image which are typically just core OS updates. You should also update your image though to include non-CBS updates. Using a build and catpure task sequence makes this easy.
    Jason | http://blog.configmgrftw.com

  • [svn] 3120: When you point Flex Builder at a local sandbox trunk build, it couldn' t generate the html-templates folder correctly for new projects so we moved all the html templates up one level and removed the html-templates directory and adjusted build

    Revision: 3120
    Author: [email protected]
    Date: 2008-09-05 10:44:10 -0700 (Fri, 05 Sep 2008)
    Log Message:
    When you point Flex Builder at a local sandbox trunk build, it couldn't generate the html-templates folder correctly for new projects so we moved all the html templates up one level and removed the html-templates directory and adjusted build.xml's to accommodate the directory change
    Modified Paths:
    flex/sdk/trunk/build.xml
    flex/sdk/trunk/webapps/webtier/build.xml
    Added Paths:
    flex/sdk/trunk/templates/client-side-detection/
    flex/sdk/trunk/templates/client-side-detection/AC_OETags.js
    flex/sdk/trunk/templates/client-side-detection/index.template.html
    flex/sdk/trunk/templates/client-side-detection-with-history/
    flex/sdk/trunk/templates/client-side-detection-with-history/AC_OETags.js
    flex/sdk/trunk/templates/client-side-detection-with-history/history/
    flex/sdk/trunk/templates/client-side-detection-with-history/history/history.css
    flex/sdk/trunk/templates/client-side-detection-with-history/history/history.js
    flex/sdk/trunk/templates/client-side-detection-with-history/history/historyFrame.html
    flex/sdk/trunk/templates/client-side-detection-with-history/index.template.html
    flex/sdk/trunk/templates/express-installation/
    flex/sdk/trunk/templates/express-installation/AC_OETags.js
    flex/sdk/trunk/templates/express-installation/index.template.html
    flex/sdk/trunk/templates/express-installation/playerProductInstall.swf
    flex/sdk/trunk/templates/express-installation-with-history/
    flex/sdk/trunk/templates/express-installation-with-history/AC_OETags.js
    flex/sdk/trunk/templates/express-installation-with-history/history/
    flex/sdk/trunk/templates/express-installation-with-history/history/history.css
    flex/sdk/trunk/templates/express-installation-with-history/history/history.js
    flex/sdk/trunk/templates/express-installation-with-history/history/historyFrame.html
    flex/sdk/trunk/templates/express-installation-with-history/index.template.html
    flex/sdk/trunk/templates/express-installation-with-history/playerProductInstall.swf
    flex/sdk/trunk/templates/metadata/
    flex/sdk/trunk/templates/metadata/AC_OETags.js
    flex/sdk/trunk/templates/metadata/readme.txt
    flex/sdk/trunk/templates/no-player-detection/
    flex/sdk/trunk/templates/no-player-detection/AC_OETags.js
    flex/sdk/trunk/templates/no-player-detection/index.template.html
    flex/sdk/trunk/templates/no-player-detection-with-history/
    flex/sdk/trunk/templates/no-player-detection-with-history/AC_OETags.js
    flex/sdk/trunk/templates/no-player-detection-with-history/history/
    flex/sdk/trunk/templates/no-player-detection-with-history/history/history.css
    flex/sdk/trunk/templates/no-player-detection-with-history/history/history.js
    flex/sdk/trunk/templates/no-player-detection-with-history/history/historyFrame.html
    flex/sdk/trunk/templates/no-player-detection-with-history/index.template.html
    Removed Paths:
    flex/sdk/trunk/templates/html-templates/

    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] 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: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] 4901: Only remove the children from the textFlow when they are going to be immediately replaced .

    Revision: 4901
    Author: [email protected]
    Date: 2009-02-09 09:27:39 -0800 (Mon, 09 Feb 2009)
    Log Message:
    Only remove the children from the textFlow when they are going to be immediately replaced. Side effect from SDK-18880.
    QE Notes:
    Doc Notes:
    Bugs: SDK-19177
    Reviewers: Gordon
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18880
    http://bugs.adobe.com/jira/browse/SDK-19177
    Modified Paths:
    flex/sdk/branches/i10/frameworks/projects/flex4/src/mx/graphics/TextGraphic.as

    This is a problem of overall design.  It is not a scripting issue.
    NET USE wil only delete the drive you tell it to delete.  You will need to know in advance which drive that is.  There is no magic in WIndows.  YOu must tel it everything.
    Bill suggests GPP which is very easy to use and very flexible.  It avoids learning how to write scripts and understand much of Windows.  Just set the values and they do allof this for you.  There are checkboxes for most issues.
    Most of us have not mapped drives since shortly after the release of Vista many years ago.  Save your self a lot of headaches and use the tools that were built to do this/
    ¯\_(ツ)_/¯

Maybe you are looking for