Patch for dbxml-2.5.16\dbxml\src\perl\build.bat to make it work better!

Hi folks at Oracle,
please consider accepting this patch for the Windows Perl module build script into your distribution of Berkeley DB XML:
--- build.bat.orig      2009-12-22 14:17:00.000000000 +0100
+++ build.bat   2010-03-01 02:38:26.859375000 +0100
@@ -6,46 +6,54 @@
::  "noinstall" installation is not done
-call :TryBat "c:\Program Files\Microsoft Visual Studio .NET 2003\Common7\Tools\vsvars32.bat" && goto BATFOUND1
+::  Avoid hard-coded paths like "C:\Program Files\Microsoft ...".
+::  In another locale, the path is different: "C:\Programme\Microsoft ...".
+::  Use the appropriate environment variables instead.
+::  There is %ProgramFiles% for the program folder.
+::  There are dedicated variables for Visual Studio.
+::  These are by far the best bets here.
-call :TryBat "c:\Program Files\Microsoft Visual Studio .NET\Common7\Tools\vsvars32.bat" && goto BATFOUND2
+call :TryBat "%VS90COMNTOOLS%\vsvars32.bat" && goto VS90
-call :TryBat "c:\Program Files\Microsoft Visual Studio.NET\Common7\Tools\vsvars32.bat" && goto BATFOUND3
+call :TryBat "%VS80COMNTOOLS%\vsvars32.bat" && goto VS80
-call :TryBat "c:\Program Files\Microsoft Visual Studio 8\Common7\Tools\vsvars32.bat" && goto BATFOUND4
+call :TryBat "%VS70COMNTOOLS%\vsvars32.bat" && goto VS70
goto BATNOTFOUND
-:BATFOUND1
-echo Using Visual Studio .NET 2003
+:VS90
+echo Using Visual Studio 2008, VS9
goto BATFOUND
-:BATFOUND2
-echo Using Visual Studio .NET
-echo *********** CHECK: Make sure the binaries are built with the same system libraries that are shipped.
+:VS80
+echo Using Visual Studio 2005, VS8
goto BATFOUND
-:BATFOUND3
-echo Using Visual Studio.NET
-echo *********** CHECK: Make sure the binaries are built with the same system libraries that are shipped.
-goto BATFOUND
-:BATFOUND4
-echo Using Visual Studio 2005
-echo *********** CHECK: Make sure the binaries are built with the same system libraries that are shipped.
+:VS70
+echo Using Visual Studio 2003, VS7
goto BATFOUND
:BATFOUND
+echo *********** CHECK: Make sure the binaries are built with the same system libraries that are shipped.
:: Use the correct line, depending on whether you are building
:: release or debug
:: perl Makefile.PL -config config.win32d >> winbld.out
:: perl Makefile.PL prefix=../../../perl -config config.win32 >> winbld.out
-perl Makefile.PL -config config.win32 >> winbld.out
+
+IF EXIST ..\..\..\bin\debug\libdbxml25d.dll (
+    perl Makefile.PL -config config.win32d >> winbld.out
+) ELSE (
+    perl Makefile.PL -config config.win32 >> winbld.out
+)
+
nmake >> winbld.out
nmake ppd >> winbld.out
if /I [%1] NEQ [noinstall] (
+    echo installing modules, info in logfile winbld.out
     nmake install >> winbld.out
+) else (
+    echo not installing modules as requested
goto ENDIt'll make installation success more likely for international users, and also for English users. Also, at the end of the process, the user is informed where he can go looking for what the installation process has been doing. Plus, the script tries to figure out on its own whether to use the debug config or the straight config.
The build has been successful for as much as I can say now:
:: perl -MSleepycat::DbXml -lwe "print $Sleepycat::DbXml::VERSION"
2.0050016
:: perl -MSleepycat::DbXml -lwe "print $Sleepycat::Db::VERSION"
4.008026Michael Ludwig

Hi Michael,
Thanks for the patch! We'll take a look at that and try to improve the Perl installation in the next release.
John

Similar Messages

  • I bougth the sf2 program change for garagaband, but what is it exactly and how do I make it work?

    I couldn't find out what exactly the sf2 program change is, but it seemed nice, so I bought it, hoping that it would explain itself when installed. It hasn't. I did hope that it would give me some more midi instruments, and it seems like it should, but how to get them into garaband (10.0.2)?
    This thread seems to explain it: How to do use Soundfonts (.sf2 files) in GarageBand 10?
    It says I can add "audio unit plugins" to a track. Now I don't know what an audio unit plugin is, but I assume that it is a confusing word for a sound, and that it refers specifically to the sf2 sounds. I got as far as the smart control inspector but then "Click an empty part of the Audio Units area, choose Audio Units, then choose a plug-in from the submenu." What is the audion units area? I have clicked the empty part of whatever I could find here, but there is no submenu anywhere.
    Is there anybody out there who could give a really basic explanation of what it is that I have purchased and how I can make it work? I would really apreciate it.
    Ahston

    I got a bit further. I found the submenu and I am able to load a default instrument. But I cannot change that instrument to any other.

  • Perl unit tests fail for dbxml-2.5.16

    Hi,
    I installed the berkeley db xml version 2.5.16 but while attempting to install perl, I came across the following errors when I run 'make test'
    PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, '../blib/lib', '../blib/arch')" t/*.t
    t/btree.t .. 1/35 # Check simple env works with a hash.
    # cursors
    t/btree.t .. ok
    t/dbt.t .... ok
    t/txn.t .... # transaction - commit works
    t/txn.t .... 1/28 # transaction - abort works
    t/txn.t .... ok
    All tests successful.
    Files=3, Tests=73, 1 wallclock secs ( 0.03 usr 0.05 sys + 0.16 cusr 0.17 csys = 0.41 CPU)
    Result: PASS
    make[1]: Leaving directory `/home/emulo/Downloads/install/dbxml-2.5.16/dbxml/src/perl/Db'
    make[1]: Entering directory `/home/emulo/Downloads/install/dbxml-2.5.16/dbxml/src/perl/DbXml'
    PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, '../blib/lib', '../blib/arch')" t/*.t
    t/XmlContainerConfig.t ..... 1/28 BDB XML: illegal flag combination specified to DB->open
    XmlException=SCALAR(0x85c0fb4)# Looks like you planned 28 tests but ran 25.
    # Looks like your test exited with 2 just after 25.
    t/XmlContainerConfig.t ..... Dubious, test returned 2 (wstat 512, 0x200)
    Failed 3/28 subtests
    t/XmlDocument.t ............ ok
    t/XmlEvent.t ............... ok
    t/XmlIndexLookup.t ......... ok
    t/XmlIndexSpecification.t .. ok
    t/XmlManager.t ............. 1/92 failed
    Error: The flags DB_READ_UNCOMMITTED and DB_TXN_NOT_DURABLE cannot be used directly, you must set these flags using XmlContainerConfig.setReadUncommitted and XmlContainerConfig.setTransactionNotDurable. in t/XmlManager.t, line 367
    # Looks like you planned 92 tests but ran 53.
    # Looks like your test exited with -1 just after 53.
    t/XmlManager.t ............. Dubious, test returned 255 (wstat 65280, 0xff00)
    Failed 39/92 subtests
    t/XmlQueryContext.t ........ ok
    t/XmlResults.t ............. ok
    t/XmlValue.t ............... ok
    Test Summary Report
    t/XmlContainerConfig.t (Wstat: 512 Tests: 25 Failed: 0)
    Non-zero exit status: 2
    Parse errors: Bad plan. You planned 28 tests but ran 25.
    t/XmlManager.t (Wstat: 65280 Tests: 53 Failed: 0)
    Non-zero exit status: 255
    Parse errors: Bad plan. You planned 92 tests but ran 53.
    Files=9, Tests=535, 5 wallclock secs ( 0.11 usr 0.15 sys + 1.04 cusr 1.51 csys = 2.81 CPU)
    Result: FAIL
    Failed 2/9 test programs. 0/535 subtests failed.
    Any idea what could be causing this?
    Edited by: 902499 on Jul 5, 2012 12:59 AM

    Hi Michael,
    Thanks for the patch! We'll take a look at that and try to improve the Perl installation in the next release.
    John

  • Patch for PeopleSoft

    Hi,
    I learnt there is a patch for PeopleSoft database that reduces free spaces when building indexes in the database.
    Can someone please give me the link or possibly the Patch ID.
    Thanks and regards.
    Texas!

    I'm not sure to understand what you want to do, and how you are expecting indexes space saving.
    As I said earlier, after installing the patch 8.49.06 (or 07, that was several months ago, not sure exactly which one it was) and create an Oracle database, it was very less space than same install (and db creation) with PT8.49.00 (no patch).
    But since you are able to install Peopletools patch, that means you have a metalink3 access, then the easiest way would be to create a SR.
    Anyway, the patch itself won't solve the space issue without recreating database or indexes.
    Nicolas.

  • AAC/MPEG-4 support patch for abcde

    I got bored to day and made up this patch for abcde that adds support for AAC using the M4A extension.
    It uses FAAC as the encoder and also patches abcde to version 2.2.3
    I have not tested it yet so bear with me...i'll post my test results later.
    You'll have to manually add the "M4AENCOPTS=" variable to the config
    usage is: abcde -o m4a
    UPDATED: fixed a plethora of typos
    another side note is the fact FAAC must be compiled with mpeg-4 support, the Archlinux package for FAAC isn't, so therefore this could be a problem unless you compile FAAC yourself. I submitted a feature request to get mp4 support added.
    the following is the 2.2.0 to 2.2.3 update+AAC patch. I will submit a AAC patch for the newest release to the developers of abcde later on.
    --- abcde-old-2.2.0 2005-03-08 12:42:14.000000000 -0500
    +++ abcde2 2005-03-08 12:11:07.000000000 -0500
    @@ -11,7 +11,7 @@
    # Copyright for this work is to expire January 1, 2010, after which it
    # shall be public domain.
    -VERSION="2.2.0"
    +VERSION="2.2.3"
    usage ()
    @@ -21,7 +21,7 @@
    echo "-1 Encode the whole CD in a single file"
    echo "-a <action1[,action2]...>"
    echo " Actions to perform (cddb,read,normalize,encode,tag,move,playlist,clean)"
    -echo "-A Experimental actions (retag, transcode)"
    +#echo "-A Experimental actions (retag, transcode)"
    echo "-b Batch mode: enable album normalization and nogap encoding"
    echo "-c <file>"
    echo " Specify a configuration file (overrides system and user config files)"
    @@ -366,6 +366,9 @@
    mpc)
    run_command tagtrack-$1 true
    + m4a)
    + run_command tagtrack-$1 true
    + ;;
    esac
    done
    @@ -489,6 +492,10 @@
    ## FIXME ## to the encoder ends up empty.
    run_command encodetrack-$OUTPUT-$1 nice $ENCNICE $MPPENCODER $MPPENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" "$IN" "$OUT"
    + m4a)
    + # AAC/MPEG-4 format (.m4a) is done locally, with inline tagging.
    + run_command encodetrack-$OUTPUT-$1 nice $ENCNICE $M4AENCODER $M4AENCODEROPTS --artist "$TRACKARTIST" --album "$DALBUM" --title "$TRACKNAME" --track "$1" --genre "$CDGENRE" --year "$CDYEAR" --comment "$COMMENT" -w "$IN" -o "$OUT"
    + ;;
    esac
    done
    # Only remove .wav if the encoding succeeded
    @@ -737,6 +744,9 @@
    if [ "$INTERACTIVE" = "y" ]; then
    while [ "$DONE" != "y" ]; do
    read ERASEPLAYLIST
    + if [ "$ERASEPLAYLIST" = "" ]; then
    + ERASEPLAYLIST=e
    + fi
    case $ERASEPLAYLIST in
    e|E|a|A|k|K) DONE=y ;;
    @@ -764,7 +774,7 @@
    ARTISTFILE=$(mungefilename "$TRACKARTIST")
    # If we want to start the tracks with a given number, we need to modify the
    # TRACKNUM value before evaluation
    - if [ -n $STARTTRACKNUMBER ] ; then
    + if [ -n "$STARTTRACKNUMBER" ] ; then
    # Get the trackpadding from the current track
    CURRENTTRACKPADDING=$(echo -n $UTRACKNUM | wc -c)
    TRACKNUM=$( printf %0.${CURRENTTRACKPADDING}d $(expr ${UTRACKNUM} + ${STARTTRACKNUMBER} - 1 ))
    @@ -843,7 +853,7 @@
    cdparanoia|debug)
    if [ "$WEHAVEACD" = "y" ]; then
    vecho "Querying the CD for audio tracks..."
    - TRACKS=$( $CDROMREADER -Q 2>&1 | egrep '^[[:space:]]+[[:digit:]]' | tail -n 1 | awk '{print $1}' | tr -d "." | tr 'n' ' ' )
    + TRACKS=$( $CDROMREADER -d $CDROM -Q --verbose 2>&1 | egrep '^[[:space:]]+[[:digit:]]' | tail -n 1 | awk '{print $1}' | tr -d "." | tr 'n' ' ' )
    CDPARANOIAAUDIOTRACKS="$TRACKS"
    else
    if [ -f "$ABCDETEMPDIR/status" ] && checkstatus cdparanoia-audio-tracks ; then
    @@ -1354,7 +1364,7 @@
    EDITCDDB=n
    fi
    if [ "$EDITCDDB" = "y" ]; then
    - CDDBDATAMD5SUM=$($MD5SUM "$CDDBDATA" | cut -d " " -f 1);
    + CDDBDATAMD5SUM=$($MD5SUM "$CDDBDATA" | cut -d" " -f1);
    # Use the debian sensible-editor wrapper to pick the editor that the
    # user has requested via their $EDITOR environment variable
    @@ -1387,7 +1397,7 @@
    # Some heuristics first. Look at Disc Title, and if it starts with
    # "Various", then we'll assume Various Artists
    - if [ "$(grep ^DTITLE= "$CDDBDATA" | cut -f2 -d= | egrep -ci '^(various|soundtrack|varios|sonora|ost)')" != "0" ]; then
    + if [ "$(grep ^DTITLE= "$CDDBDATA" | cut -f2- -d= | egrep -ci '^(various|soundtrack|varios|sonora|ost)')" != "0" ]; then
    echo "Looks like a Multi-Artist CD" >&2
    VARIOUSARTISTS=y
    else
    @@ -1470,7 +1480,7 @@
    echo "variousartiststyle=$VARIOUSARTISTSTYLE" >> "$ABCDETEMPDIR/status"
    if [ "$EDITCDDB" = "y" ] && [ "$UNINTENTIONALLY_ANGER_THE_FREEDB_PEOPLE" = "y" ]; then
    - if [ $CDDBDATAMD5SUM != "" ] && [ $CDDBDATAMD5SUM != $($MD5SUM "$CDDBDATA" | cut -d " " -f 1) ]; then
    + if [ $CDDBDATAMD5SUM != "" ] && [ $CDDBDATAMD5SUM != $($MD5SUM "$CDDBDATA" | cut -d" " -f1) ]; then
    # This works but does not have the necessary error checking
    # yet. If you are familiar with the CDDB spec
    # (see http://www.freedb.org/src/latest/DBFORMAT)
    @@ -1577,7 +1587,7 @@
    WAVDATA="$ABCDETEMPDIR/track$UTRACKNUM.wav"
    OUTDATA="$ABCDETEMPDIR/track$UTRACKNUM.$OUTPUTTYPE"
    if [ -r "$CDDBDATA" ]; then
    - TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | head -n 1 | cut -f2 -d= | tr -d [:cntrl:])
    + TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | head -n 1 | cut -f2- -d= | tr -d [:cntrl:])
    echo "Grabbing track $UTRACKNUM: $TRACKNAME..." >&2
    else
    echo "Grabbing track $UTRACKNUM..." >&2
    @@ -1692,6 +1702,7 @@
    SPEEXENCODERSYNTAX=default
    MPPENCODERSYNTAX=default
    NORMALIZERSYNTAX=default
    +M4AENCODERSYNTAX=default
    OUTPUTFORMAT='${ARTISTFILE}-${ALBUMFILE}/${TRACKNUM}.${TRACKFILE}'
    # Use the following VAOUTPUTFORMAT to revert to 2.0.x VA format:
    @@ -1738,6 +1749,7 @@
    SPEEXENC=speexenc
    # mpp (Musepack)
    MPPENC=mppenc
    +M4AENC=faac
    ID3=id3
    ID3V2=id3v2
    @@ -1773,6 +1785,7 @@
    SPEEXENCOPTS=
    # mpc
    MPPENCOPTS=
    +M4AENCOPTS=
    ID3OPTS=
    ID3V2OPTS=
    @@ -2039,6 +2052,7 @@
    spx) [ "$SPEEXENCODERSYNTAX" = "default" ] && SPEEXENCODERSYNTAX=speexenc ;;
    mpc) [ "$MPPENCODERSYNTAX" = "default" ] && MPPENCODERSYNTAX=mppenc ;;
    + m4a) [ "$M4AENCODERSYNTAX" = "default" ] && M4AENCODERSYNTAX=faac ;;
    *) echo "abcde error: Invalid OUTPUTTYPE defined" >&2
    exit 1
    @@ -2100,6 +2114,12 @@
    MPPENCODER="$MPPENC"
    esac
    +case "$M4AENCODERSYNTAX" in
    + faac)
    + M4AENCODEROPTS="$M4AENCOPTS"
    + M4AENCODER="$M4AENC"
    + ;;
    +esac
    # and which tagger
    @@ -2144,7 +2164,7 @@
    ${NEEDCOMMENTER+$VORBISCOMMENT} ${NEEDMETAFLAC+$METAFLAC}
    ${NEEDNORMALIZER+$NORMALIZER} ${NEEDEJECT+$EJECT}
    ${NEEDDISKTOOL+disktool} ${NEEDCDSPEED+$CDSPEED}
    - ${NEEDVORBISGAIN+$VORBISGAIN}
    + ${NEEDVORBISGAIN+$VORBISGAIN} $M4AENCODER
    do
    # Cut off the command-line options we just added in
    X=$(echo $X | cut -d' ' -f2)
    @@ -2207,37 +2227,6 @@
    esac
    fi
    -if [ "$STRIPDATATRACKS" = "y" ] && [ ! "$ONETRACK" = "y" ]; then
    - case "$CDROMREADERSYNTAX" in
    - cdparanoia|debug)
    - # cdparanoia can query the CD, so let's process the TRACKQUEUE list with the results.
    - if checkstatus cdparanoia-audio-tracks; then
    - CDTRACKQUEUE=$( cat $ABCDETEMPDIR/cdparanoia-audio-tracks )
    - else
    - ## FIXME ##
    - vecho "Querying the CD to obtain a list of valid audio tracks..."
    - $CDROMREADER -Q > $ABCDETEMPDIR/cdparanoia-query 2>&1
    - # Obtain a list of valid audio tracks from the results of the query
    - CDTRACKQUEUE=$( cat $ABCDETEMPDIR/cdparanoia-query | egrep '^[[:space:]]+[[:digit:]]' | awk '{print $1}' | tr -d "." | tr 'n' ' ' )
    - fi
    - # Obtain the track padding value from the before-processing list and pad the CD list
    - TRACKNUMPADDING=$( echo $TRACKQUEUE | awk '{print $1}' | tr -d " n" | wc -c )
    - for TRACK in $CDTRACKQUEUE ; do
    - TRACKNUM=$(printf %0.${TRACKNUMPADDING}d $(expr ${TRACK} + 0 ))
    - PADNEWTRACKQUEUE=$(echo $PADNEWTRACKQUEUE $TRACKNUM)
    - done
    - CDTRACKQUEUE=$PADNEWTRACKQUEUE
    - # Now, compare if the values in the list are valid tracks in the CD
    - for TRACK in $TRACKQUEUE; do
    - if echo $CDTRACKQUEUE | grep $TRACK >/dev/null ; then
    - NEWTRACKQUEUE="$NEWTRACKQUEUE $TRACK"
    - fi
    - done
    - TRACKQUEUE="$NEWTRACKQUEUE"
    - esac
    -fi
    # Create playlist if needed (backgroundable) and start reading in tracks
    @@ -2446,7 +2435,7 @@
    # TRACKNUM=$(printf %0.${TRACKNUMPADDING}d $(expr ${UTRACKNUM} + 0))
    TRACKNUM=$UTRACKNUM
    CDDBTRACKNUM=$(expr $UTRACKNUM - 1)
    - TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2 -d= | tr -d [:cntrl:] | sed 's/ +$//')
    + TRACKNAME=$(grep ^TTITLE$CDDBTRACKNUM= "$CDDBDATA" | cut -f2- -d= | tr -d [:cntrl:] | sed 's/ +$//')
    splitvarious
    fi
    fi
    the patches can also be found here http://www2.rudefyet.com:8080/patch
    please post any other issues you have

    not yet, i'm going to work all the kinks out before i submit it
    as of right now I noticed some major typos, on my part, that cause it to fail...i'm working on that right now

  • [svn:fx-trunk] 12972: Commit Catalyst-submitted patch for fixing up unicode path/ file names in ActiveX.

    Revision: 12972
    Revision: 12972
    Author:   [email protected]
    Date:     2009-12-15 15:27:40 -0800 (Tue, 15 Dec 2009)
    Log Message:
    Commit Catalyst-submitted patch for fixing up unicode path/file names in ActiveX.
    QE notes: None.
    Doc notes: None.
    Bugs: SDK-24648
    Reviewer: Alex & I
    Tests run: checkintests
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24648
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/SWFLoader.as

    Dear Pallavi,
    Very useful post!
    I am looking for similar accelerators for
    Software Inventory Accelerator
    Hardware Inventory Accelerator
    Interfaces Inventory
    Customization Assessment Accelerator
    Sizing Tool
    Which helps us to come up with the relevant Bill of Matetials for every area mentioned above, and the ones which I dont know...
    Request help on such accelerators... Any clues?
    Any reply, help is highly appreciated.
    Regards
    Manish Madhav

  • [svn] 4610: Commit Josh's patch for 3. x to fix bug SDK-17367 which works around an issue with Dictionary that stops ObjectUtil .toString() working with QNames.

    Revision: 4610
    Author: [email protected]
    Date: 2009-01-21 12:48:01 -0800 (Wed, 21 Jan 2009)
    Log Message:
    Commit Josh's patch for 3.x to fix bug SDK-17367 which works around an issue with Dictionary that stops ObjectUtil.toString() working with QNames.
    QE: Yes, please add a test case to ObjectUtil tests for this scenario.
    Doc: No
    Checkintests: Pass
    Bugs:
    SDK-17367 ObjectUtil.toString(QName) causes RTE
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17367
    http://bugs.adobe.com/jira/browse/SDK-17367
    Modified Paths:
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/utils/ObjectUtil.as

    VPN-User,
    Ok - I see the list of issues and will ensure our X300 specialist takes a look at it.   
    Please do understand that while you have put together a very coherent list, I try to ensure priority to threads in which multiple customers are focused on a single issue, as we deliver the most benefit to the community in working on those.   This forum is primarly a peer to peer discussion forum rather than a Lenovo chat / tech support where we try to solve each and every issue put forth.
    Individuals with a long list of issues on a particular machine may find benefit from either contacting technical support and working through their list, or publishing it as you have done and wait for other users of the same system to share their experiences.
    Thanks for your patience
    Mark
    ThinkPads: S30, T43, X60t, X1, W700ds, IdeaPad Y710, IdeaCentre: A300, IdeaPad K1
    Mark Hopkins
    Program Manager, Lenovo Social Media (Services)
    twitter @lenovoforums
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • [svn] 2649: Committing Josh McDonald' s patch for bug SDK-15795 after review and testing.

    Revision: 2649
    Author:   [email protected]
    Date:     2008-07-29 09:33:23 -0700 (Tue, 29 Jul 2008)
    Log Message:
    Committing Josh McDonald's patch for bug SDK-15795 after review and testing. Various minOccurs and maxOccurs scenarios could lead to short circuit logic that would not release the schema stack scope if a reference was previously resolved.
    Checkintests: Pass
    BlazeDS 3.0.x webService flexunit tests: 100% Pass
    BlazeDS 3.0.x webService mxunit tests: 100% Pass
    QE: Yes, please review schema that is described in this bug and consider adding a test case. Note that I'm seeing intermittent failures on a few tests that pass when re-run (likely due to timeouts being too aggressive?).
    Doc: No
    Reviewer: Svetlin
    Bugs:
    SDK-15795 - minOccurs on breaks XMLEncoder
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-15795
        http://bugs.adobe.com/jira/browse/SDK-15795
    Modified Paths:
        flex/sdk/branches/3.0.x/frameworks/projects/rpc/src/mx/rpc/xml/XMLEncoder.as

    Hi.
    Alot of good feedback. Personally I miss some keybindings, such as for branch switching.
    Anyways, on the github corruption issue it seems like this was fixed in 0.8.4 according to http://www.eclipse.org/forums/index.php?t=msg&th=183637& amp;start=0&S=81dfec74c1b979b21614f923fb09b1da

  • [svn] 4878: Patch for integration bug.

    Revision: 4878
    Author: [email protected]
    Date: 2009-02-06 12:56:58 -0800 (Fri, 06 Feb 2009)
    Log Message:
    Patch for integration bug. There was a regression with check-in 4793 when getLayoutBoundsX and getLayoutBoundsY were added to Path. Path now tries to factor in the implicit scale, but in the case of SDK-19154, when these methods are first called during initial layout, _width and _height are 0 (too early), so we assume a 0 scale, which ends up losing 'measuredX' and 'measuredY' from successive calculations.
    Evtim will need to refactor slightly and replace with a more robust fix for the long term.
    Bugs: SDK-19154.
    QE Notes: None.
    Doc Notes: None.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19154
    http://bugs.adobe.com/jira/browse/SDK-19154
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/Path.as

  • [svn] 4879: Patch for integration bug.

    Revision: 4879
    Author: [email protected]
    Date: 2009-02-06 13:12:53 -0800 (Fri, 06 Feb 2009)
    Log Message:
    Patch for integration bug. There was a regression with check-in 4793 when getLayoutBoundsX and getLayoutBoundsY were added to Path. Path now tries to factor in the implicit scale, but in the case of SDK-19154
    , when these methods are first called during initial layout, _width and _height are 0 (too early), so we assume a 0 scale, which ends up losing 'measuredX' and 'measuredY' from successive calculations. Evtim will need to refactor slightly and replace with a more robust fix for the long term. Bugs: SDK-19154
    . QE Notes: None. Doc Notes: None.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19154
    http://bugs.adobe.com/jira/browse/SDK-19154
    http://bugs.adobe.com/jira/browse/SDK-19154
    http://bugs.adobe.com/jira/browse/SDK-19154
    Modified Paths:
    flex/sdk/branches/i10/frameworks/projects/flex4/src/mx/graphics/Path.as

  • [svn:fx-trunk] 13207: Accepted patch for UITextField textHeight property to work around an underlying bug in the player .

    Revision: 13207
    Revision: 13207
    Author:   [email protected]
    Date:     2009-12-23 13:11:43 -0800 (Wed, 23 Dec 2009)
    Log Message:
    Accepted patch for UITextField textHeight property to work around an underlying bug in the player.
    flash.text.TextField does not take into account the leading on the final line of text when measuring itself, yet will scroll if it is not given this extra height. The player has retired this bug.
    Ported componentSmoke test to basicTests.  If this fail it means the player has fixed the bug and we need to remove the workaround.
    QE notes: components/Text/Properties/Text_Properties_tester Checking_Property_textHeight needs to be updated
    Doc notes:
    Bugs: SDK-24461
    Reviewer:
    Tests run: checkintests, mx Label, Panel, TextInput, TextArea and Text
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24461
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UITextField.as
        flex/sdk/trunk/frameworks/tests/basicTests/halo/scripts/TextTestScript.mxml

    Revision: 13207
    Revision: 13207
    Author:   [email protected]
    Date:     2009-12-23 13:11:43 -0800 (Wed, 23 Dec 2009)
    Log Message:
    Accepted patch for UITextField textHeight property to work around an underlying bug in the player.
    flash.text.TextField does not take into account the leading on the final line of text when measuring itself, yet will scroll if it is not given this extra height. The player has retired this bug.
    Ported componentSmoke test to basicTests.  If this fail it means the player has fixed the bug and we need to remove the workaround.
    QE notes: components/Text/Properties/Text_Properties_tester Checking_Property_textHeight needs to be updated
    Doc notes:
    Bugs: SDK-24461
    Reviewer:
    Tests run: checkintests, mx Label, Panel, TextInput, TextArea and Text
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24461
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UITextField.as
        flex/sdk/trunk/frameworks/tests/basicTests/halo/scripts/TextTestScript.mxml

  • Kernel patch for battery life

    Using powertop I found out that the kernel was preventing my laptop from going idle and reading this page found out about a patch for it.
    http://www.lesswatts.org/projects/powertop/known.php
    However, that patch is out of date as I just got 2.6.24.3 today. Is there a recent patch for this as it is very annoying to only get three hours where I get five in vista.

    schivmeister wrote:
    uastasi wrote:
    #dark5 patch
    patch-2.6.24-dark5.patch.bz2
    # dark5 patch
    patch -Np1 -i ../patch-2.6.24-dark5.patch || return 1
    After running makepkg I get an error like this:
    Reversed (or previously applied) patch detected! Skipping patch.
    1 out of 1 hunk ignored -- saving rejects to file sound/usb/usx2y/usX2Yhwdep.c.rej
    patching file sound/usb/usx2y/usx2yhwdeppcm.c
    Reversed (or previously applied) patch detected! Skipping patch.
    1 out of 1 hunk ignored -- saving rejects to file sound/usb/usx2y/usx2yhwdeppcm.c.rej
    ==> ERRORE: Compilazione interrotta.
    L'operazione sta per essere interrotta...
    Simple - the patching failed. Apparently you have patches that are conflicting here, and one file in concern is $startdir/src/linux-2.6.24*/sound/usb/usx2y/usx2yhwdeppcm.c but I can't tell what other files are involved since you didn't paste the relevant lines before this.
    This is the PKGBUILD: http://pastebin.com/m6426d31a
    These are the relevant lines before the error: http://pastebin.com/m10c1e6ff
    B wrote:Just use the broken out ones, what you are doing now is applying the whole lot, I don't think that's what you're after.
    Now that I know what broken-out means I notice that I could only choose to apply something in particular and not the whole patch, but I'm totally a newbie in kernel patching...

  • Patch for Bind on OS X server 10.3.9 ?

    Where can I find the patch for Bind for my OS X server 10.3.9 (we have 9.3.4-1) ?

    Or better yet, see if you can get shasum working,
    http://search.cpan.org/~mshelor/Digest-SHA-PurePerl-5.47/shasum
    http://search.cpan.org/src/MSHELOR/Digest-SHA-PurePerl-5.47/shasum
    You'll need to use CPAN to get Digest::SHA installed,
    which (if you've not used CPAN before) will be an adventure in itself.
    An absolutely necessary one. If you want to be empowered to have the option to handle a matter such as this on your own (a worthy goal !!), then using CPAN should already be part of your toolkit.
    From there, put shasum in (for example) /usr/local/bin
    Then you can use
    /usr/local/bin/shasum -a 512 /Users/yournamehere/Downloads/bind-9.4.2-P1.tar.gz

  • [svn] 4746: User-submitted patch for SDK-16147 - HaloBorder does not take border widths into account when drawing background with rounded corners .

    Revision: 4746
    Author: [email protected]
    Date: 2009-01-29 15:36:59 -0800 (Thu, 29 Jan 2009)
    Log Message:
    User-submitted patch for SDK-16147 - HaloBorder does not take border widths into account when drawing background with rounded corners.
    Bugs: SDK-16147 (bug), SDK-16963 (patch)
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16147
    http://bugs.adobe.com/jira/browse/SDK-16147
    http://bugs.adobe.com/jira/browse/SDK-16963
    Modified Paths:
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/skins/halo/HaloBorder.as

  • [svn:fx-3.x] 5526: User-submitted patch for SDK-19335 - DividedBox - improved includeInLayout handling

    Revision: 5526
    Author: [email protected]
    Date: 2009-03-24 13:06:11 -0700 (Tue, 24 Mar 2009)
    Log Message:
    User-submitted patch for SDK-19335 - DividedBox - improved includeInLayout handling
    Patch submission from Iwo Banas
    QE Notes: n/a
    Doc Notes: n/a
    Bugs: SDK-19335, SDK-19334
    Reviewer: None
    tests: checkintests, mustella (DividedBox)
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19335
    http://bugs.adobe.com/jira/browse/SDK-19335
    http://bugs.adobe.com/jira/browse/SDK-19334
    Modified Paths:
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/containers/DividedBox.as

Maybe you are looking for

  • HELP!!! AT THE END OF MY ROPE!!!

    I've tried "restore to factory settings" with no avail. I am tempted to "Erase all data and petitions" but will that also mean that the system recovery petition will also be erased? I don't want that but I don't know what else to do!

  • Share send by email not working

    I have always liked the share > send by mail function. It has recently just stopped working. You select send by mail > pdf and nothing happens. No mail opens in Mail with the pdf as an attachment. Now I need to export a pdf and then make a mail and a

  • Is there a way to completly copy one hd onto the other?

    I have a hd that I want to backup immediatly because it is giving me all the signs that it might die soon.. is there an easy way to copy one of them onto the other? since just clicking on one and draging the stuff into the other leaves the invisable

  • Need the the underlying table names which the Material Plan Detail Search p

    Our supply planning users would like to obtain the demand and supply plan for a bunch of given parts by running a query against some tables. The data they need via a PS Query output in Excel format is the same data that is provided by the Material Pl

  • How to create cfc for this give solution

    <cfcomponent> <cffunction  name="doc" access="remote" returntype="Any" >  <cfargument name="profile_id" type="any" required="true" default="" >  <cfargument name="search_primary_storage_profile_id_only" type="numeric" required="true" >  <cfargument n