Unit Converter Widget and Dashboard

Hey
I went to check how much $25 was in US Dollars from Australian Dollars, and i saw that the US dollars had moved from the top of the list right to the bottom, and it no longer gave a accurate result, it said $1AUD was = to 1 cent. So i tried moving it out of the dashboard folder and putting it back (in a desperate attempt to make it work) So i deleted it hoping i could just get it back from either the leopard disk or the tiger disk but i couldn't find it using Pacifist. So now I'm stuck without it and was hoping someone out there could let me know why it stuffed up in the first place and where i can get it back from.
Thanks all who can help!

This happened to me too, so I went and had a look at the unit convertor code, and fixed it.
it's a pretty simple fix, you need to load up UnitConvertor.js from inside the widget bundle and find
function populateUnitSelect(select), inside of which there is a sort function units.sort, replace its lines with this:
units.sort(function (a, b) {
if (a.iso == "USD") return -1;
else if (b.iso == "USD") return 1;
else if (a.name < b.name) return -1;
else if (b.name < a.name) return 1;
return 0;
and it should work, It just ads an extra case for USD as b value.
Message was edited by: Silver_Dragon

Similar Messages

  • My Unit Converter Widget is not right

    I'd been stop using Unit Converter widget from Dashboard since many months ago, now it's getting very inconvenient for me because even after many OS X updates, my Unit Converter shows wrong information of the currency conversion.
    Here's a screen capture image I took:
    http://edrian.com/unitconverter.png
    I tried to delete this Widget and replace from other Mac running OS X Leopard, but it still doesn't work right. Any ideas and how can I fix this issue?

    I updated to the latest OS X 10.5.4 and the unit converter widget still not working properly. Obviously Apple didn't look into this at all.
    I would recommend downloading this Currency Converter http://widgets.palple.net/

  • Unit Converter Widget Broken

    Hi there!
    For some reason, my unit converter widget decided to not work anymore; I am not able to select any of the drop downs but can type text in the textfields (not that it helps).
    Anybody got any idea on how to fix it?
    I have already tried:
    - ⌘ + R
    - Closing & Re-adding the widget
    TM

    Have you tried removing it from your dashboard, then adding it back? Display the dashboard, then click the large plus symbol in the lower left. An X will appear at the top left corner of each widget. Click the X for your Unit Converter. Then, drag another Unit Converter up from the row of widget icons at the bottom.
    If that doesn't fix it, open a Finder window and click your home folder in the left sidebar. Double click Library, then Preferences. Find the file named "widget-com.apple.widget.unitconverter.plist" and drag it to the trash. You'll probably have to switch to the List view rather than Icon view, and make the Name column very wide, to find the file. Once it's in the trash, log out and log back in.

  • Problem with unit converter widget

    I am having a weird problem with my unit converter widget on 10.4.9.
    I re-installed my system, and now when I go to open the unit converter widget, I can no longer see the British pound currency, there are all these othere European currencies.
    Is there anyway to get the British pound currency back, do I need to re-install the widget, and how do I do that.

    Then I'd try removing & reinstalling it...
    http://docs.info.apple.com/article.html?artnum=301629
    If it's one that came with OSX, you may have to get pacifist to extract it from your install Disk.

  • Unit converter widget on kde

    does anyone use the unit converter on kde?
    I have been using it for a long while, and it has been working fine, but since the last few kde upgrades, I cannot type anything into the unit converter data field, so I cannot convert anything.
    anyone else got this issue?

    I have found out why this is occuring, but I do not know how to resolve it..
    The text that is being entered has a white font colour, and the backgroung is also white, so I cannot see it. If I highlight (double click) what has been entered, I can see the text.
    This is also happening on the calendar widget (where the week no, and the date are entered in text at the bottom).
    Does anyone know how to change the font colour or the background colour for these? (I have tried changing the clock backgroung colour, but this has no effect on the text boxes).
    Last edited by kierank01 (2010-05-12 10:43:40)

  • Unit Converter Widget displays false Currency values

    Hello there
    Here is what happens:
    No matter how many times I desactivate, re-activate the Conversion between two currencies are wrong; even though it seems to retrieve the latest data from Yahoo!finance.
    http://dl.getdropbox.com/u/624059/currency.png
    Here is a picture of what gives 1€ = 0.178USD which is equivalent to US$1= 5.6€ !
    I have repaired the Startup disk permissions a couple times already.. in vain.
    Has anyone experienced this?
    Is this related to System preferences' "International settings" ? Just a thought...
    Thanks for your help,
    Regards

    this is a known bug caused by safari 4. you can uninstall safari 4 or try the following hack
    http://www.macosxhints.com/article.php?story=20090225162441861

  • Converter Widget giving wrong conversions with Currency

    This has been useless for a very long time. Try doing a currency conversion of one US dollar equals the currency of your choice: Euro, British Pound Sterling, Australian Dollar, Canadian Dollar. The results are completely wrong. Not sure if the widget is screwed or it's the service the conversions are actually coming from.

    Here's the solution to the problem folks. The widget is messed up under OS X 10.5.6. Thanks.
    http://www.macosxhints.com/article.php?story=20090225162441861
    +The Unit Converter Widget is broken in Mac OS X 10.5.6: the left and right pop-up menus do not match, and Apple's code assumes they do. On the left menu, the Australian dollar appears at the top; on the right menu, it's the US Dollar. As a result, conversions come out incorrectly!+
    +To fix this problem, make a copy of /Library/Widgets/Unit Converter.wdgt on your Desktop, Control-click on it and choose Show Package Contents from the pop-up menu, then open the UnitConverter.js file in a text editor. Search for "USD" (with the quotes). There should be only one matching line:+
    +if (a.iso == "USD") return -1;+
    +Delete this line. Then, delete the else at the start of the next line, i.e. change the line from this...+
    +else if (a.name < b.name) return -1;+
    +...to this...+
    +if (a.name < b.name) return -1;+
    +Save the changes and close the document. I suggest keeping the original widget in /Library/Widgets, and installing the corrected version in ~/Library/Widgets, so that the system's version remains untouched.+
    +*robg adds:* When originally posted, I thought this was merely a display glitch, but it's not -- the calculations simply won't work properly with the two lists not being the same. You can test this yourself by converting any number in the default widget as it appears -- enter 55 in the left-side box, for instance, with the left pop-up on Australian Dollar and the right on US Dollar, and you'll see that the result is also shown as 55. Clearly that's not correct. This hint fixes that problem. Sorry for the confusion.+
    P.S. There is some speculation that the Safari 4 Beta has had a hand in this as well, though not sure how Safari 4 would affect the widget.
    Message was edited by: McToast

  • IViews/Business Packages  for News and/or Unit Converter

    Hallo,
    are there any iViews or Business Packages available for the following tasks?
    1. News iView with the possibility to refer to documents, have user (role) specific buttons (Create New, Edit, delete...) and Subscription Services using the cm-functionality
    2. An Unit Converter, to convert some specific items like length, weights...?
    Please let me know.
    Sebastian Traeder

    Hi Sebastian,
    for the first request, easyWCM seems to be quite close. It's a business package which closes some gaps in the standard, for example that there is no connection between the PCD and the KM structure; that there is no internationlization feature in KM; that there is no dynamic switch so that users with the corresponding permissions are confronted with extra possibilities (like create/edit...) whereas endusers only see the content - and all this by using just one PCD structure.
    See http://www.easyWCM.com
    For the second request, I don't expect that there is a special portal solution / business package. But for sure you will find java libs / example implementations on the internet, which easily could be build into some iView implementation.
    Hope it helps
    Detlev

  • Dashboard Widgets and Opening Apps

    Hi, I'm having a hard time with my Dashboard Widgets and opening applications.
    With my Dashboard Widgets, I can't click on the "more info" button. So if I put a clock Widget on my Dashboard, I can't change the region since I can't click on the "i" button. Is there anything you can think of as to why this would happen?
    Also, whenever I open an application, it always loads in the background, keeping my current app in the foreground. Usually when I open an app, it loads in the foreground over my current app. For example, if I have Finder active and I click on Safari, Finder is still active and Safari loads in the background (inactive). I have to click on Safari to make it appear in the foreground and it's kind of annoying.
    I really don't want to do a clean installation of Snow Leopard since that takes a good chuck of time to do. I tried repairing my disk permissions and reinstalled Snow Leopard using the installation disc to see if it would fix important system files but even after that my Dashboard Widgets and app opening problems exist.
    Thanks for any suggestions and help you guys can provide.

    Does anyone else have this problem? I've done a virus scan using Sophos Anti-Virus and nothing comes up.

  • Cockpit and Dashboard widget

    HI
    Can anyone explain me the use of cockpit and dashboard widget in SBO 8.8......

    Hi Kambadasan,
    Refer This......
    Link: [url] How to activating Widgets in B1 Cockpit
    Link: [url] 8.8 Cockpit - Widget or Dashboard
    Link: [url] http://www.youtube.com/watch?v=QXdqD4fPWL8
    Thanks
    Shafi

  • N8 Currency / Unit Converter

    Hi all,
    Anybody knows N8 is having inbuilt Currency/Unit Converter like in the other phones under the application "Converter"?
    I installed some converter widgets but all those need net connection and not userfriendly for me
    if anybody know any Currency/Unit Coverter application instead of widget for N8 like the same converter came with 5800xpressmusic or anyother previous models.. please let me know...

    KeyboardMouseN8 wrote:
    if anybody know any Currency/Unit Coverter application instead of widget for N8 like the same converter came with 5800xpressmusic or anyother previous models.
    One such paid for application would be:http://nokia-n8-software.epocware.com/Handy_Converter.html
    Happy to have helped forum with a Support Ratio = 42.5

  • HELP!   Mail, Safari, and Dashboard are down since the last Security Update

    Ever since I isntalled the latest Security Update for Leopard, my Mail, Safari and Dashboard fail to launch, and other elements of the OS are quirky and unstable.
    I've tried everything (dumping cache, fixing permissions, running disk utility...) but to no avail. Am I alone, or have others been experiencing nagging problems since the last update?
    I'm a devoted user of Mail and Safari, but I've been forced to run Entourage (aargh!) and Firefox. I can't get any of the dashboard widgets to load.
    For what its worth, here is the detailed for the Mail snafu. The report for Safari is identical:
    Process: Mail [3278]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: com.apple.mail
    Version: 3.2 (919)
    Build Info: Mail-9190000~3
    Code Type: PPC (Native)
    Parent Process: launchd [96]
    Date/Time: 2008-03-24 12:22:14.345 -0500
    OS Version: Mac OS X 10.5.2 (9C7010)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000002
    Crashed Thread: 0
    Application Specific Information:
    -[MessageContentController _fetchContentsForMessage:fromStore:withViewingState:]
    -[ToDoReconciler requestReconciliation:]
    Thread 0 Crashed:
    0 com.apple.WebCore 0x9070e984 WebCore::DeprecatedString::find(WebCore::DeprecatedChar, int) const + 164
    1 com.apple.WebCore 0x905fa28c WebCore::KURL::decode_string(WebCore::DeprecatedString const&, WebCore::TextEncoding const&) + 812
    2 com.apple.WebCore 0x905f9ec8 WebCore::KURL::decode_string(WebCore::DeprecatedString const&) + 40
    3 com.apple.WebCore 0x905bb5ac WebCore::KURL::host() const + 92
    4 com.apple.WebCore 0x907c51a0 WebCore::Loader::servePendingRequests() + 1056
    5 com.apple.WebCore 0x907d5cc4 WebCore::CachedCSSStyleSheet::CachedCSSStyleSheet(WebCore::DocLoader*, WebCore::String const&, WebCore::String const&, bool, bool) + 420
    6 com.apple.WebCore 0x907c475c WebCore::Cache::requestResource(WebCore::DocLoader*, WebCore::CachedResource::Type, WebCore::KURL const&, WebCore::String const*, bool, bool) + 588
    7 com.apple.WebCore 0x907c4158 WebCore::DocLoader::requestResource(WebCore::CachedResource::Type, WebCore::String const&, WebCore::String const*, bool, bool) + 488
    8 com.apple.WebCore 0x907d5a3c WebCore::DocLoader::requestCSSStyleSheet(WebCore::String const&, WebCore::String const&, bool) + 44
    9 com.apple.WebCore 0x90b7cb88 WebCore::UserStyleSheetLoader::UserStyleSheetLoader(***::PassRefPtr<WebCore::Do cument>, WebCore::String const&) + 104
    10 com.apple.WebCore 0x90a198e8 WebCore::Frame::setUserStyleSheetLocation(WebCore::KURL const&) + 152
    11 com.apple.WebCore 0x905a623c WebCore::FrameLoader::begin(WebCore::KURL const&, bool, WebCore::SecurityOrigin*) + 1228
    12 com.apple.WebCore 0x906019ec WebCore::FrameLoader::receivedFirstData() + 44
    13 com.apple.WebCore 0x90601930 WebCore::FrameLoader::setEncoding(WebCore::String const&, bool) + 48
    14 com.apple.WebCore 0x90601890 -[WebCoreFrameBridge receivedData:textEncodingName:] + 448
    15 com.apple.WebKit 0x928c88bc -[WebHTMLRepresentation receivedData:withDataSource:] + 156
    16 com.apple.WebKit 0x928c87b8 -[WebDataSource(WebInternal) _receivedData:] + 88
    17 com.apple.WebKit 0x928c8734 WebFrameLoaderClient::committedLoad(WebCore::DocumentLoader*, char const*, int) + 116
    18 com.apple.WebCore 0x905fe368 WebCore::DocumentLoader::commitLoad(char const*, int) + 88
    19 com.apple.WebCore 0x905fdef4 WebCore::ResourceLoader::didReceiveData(char const*, int, long long, bool) + 68
    20 com.apple.WebCore 0x905fde30 WebCore::MainResourceLoader::didReceiveData(char const*, int, long long, bool) + 48
    21 com.apple.WebCore 0x905fc9b4 WebCore::MainResourceLoader::continueAfterContentPolicy(WebCore::PolicyAction, WebCore::ResourceResponse const&) + 916
    22 com.apple.WebCore 0x905fc57c WebCore::MainResourceLoader::continueAfterContentPolicy(WebCore::PolicyAction) + 76
    23 com.apple.WebCore 0x905f95d0 WebCore::MainResourceLoader::didReceiveResponse(WebCore::ResourceResponse const&) + 800
    24 com.apple.WebCore 0x907a8780 WebCore::MainResourceLoader::handleDataLoadNow(WebCore::Timer<WebCore::MainReso urceLoader>*) + 640
    25 com.apple.WebCore 0x907d54c0 WebCore::TimerBase::fireTimers(double, ***::Vector<WebCore::TimerBase*, 0ul> const&) + 176
    26 com.apple.WebCore 0x907d51dc WebCore::TimerBase::sharedTimerFired() + 108
    27 com.apple.WebCore 0x907d5148 WebCore::timerFired(__CFRunLoopTimer*, void*) + 72
    28 com.apple.CoreFoundation 0x90252aa4 CFRunLoopRunSpecific + 2992
    29 com.apple.HIToolbox 0x93d393a4 RunCurrentEventLoopInMode + 264
    30 com.apple.HIToolbox 0x93d391c8 ReceiveNextEventCommon + 412
    31 com.apple.HIToolbox 0x93d39008 BlockUntilNextEventMatchingListInMode + 84
    32 com.apple.AppKit 0x935af3bc _DPSNextEvent + 580
    33 com.apple.AppKit 0x935aed84 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 112
    34 com.apple.AppKit 0x935a8a40 -[NSApplication run] + 736
    35 com.apple.AppKit 0x93579444 NSApplicationMain + 440
    36 com.apple.mail 0x000f286c 0x1000 + 989292
    37 ??? 0x00000ffc 0 + 4092
    Thread 1:
    0 libSystem.B.dylib 0x93385978 machmsgtrap + 8
    1 libSystem.B.dylib 0x9338c89c mach_msg + 56
    2 com.apple.CoreFoundation 0x90252618 CFRunLoopRunSpecific + 1828
    3 com.apple.Foundation 0x948ce130 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 168
    4 com.apple.Foundation 0x948d8a24 -[NSRunLoop(NSRunLoop) run] + 72
    5 com.apple.MessageFramework 0x0045094c -[RSSInterchange _runManager] + 1760
    6 com.apple.Foundation 0x948a04f4 _NSThread__main_ + 1004
    7 libSystem.B.dylib 0x933c7b98 pthreadstart + 316
    Thread 2:
    0 libSystem.B.dylib 0x933859f8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x933c8e3c pthread_condwait + 1320
    2 com.apple.Foundation 0x948dd898 -[NSCondition waitUntilDate:] + 384
    3 com.apple.Foundation 0x948dd6c4 -[NSConditionLock lockWhenCondition:beforeDate:] + 268
    4 com.apple.MessageFramework 0x004527c8 -[InvocationQueue _drainQueue] + 284
    5 com.apple.Foundation 0x948a04f4 _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x933c7b98 pthreadstart + 316
    Thread 3:
    0 libSystem.B.dylib 0x933859f8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x933c8e3c pthread_condwait + 1320
    2 com.apple.Foundation 0x948dd898 -[NSCondition waitUntilDate:] + 384
    3 com.apple.Foundation 0x948dd6c4 -[NSConditionLock lockWhenCondition:beforeDate:] + 268
    4 com.apple.MessageFramework 0x004527c8 -[InvocationQueue _drainQueue] + 284
    5 com.apple.Foundation 0x948a04f4 _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x933c7b98 pthreadstart + 316
    Thread 4:
    0 libSystem.B.dylib 0x933859f8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x933c8e3c pthread_condwait + 1320
    2 com.apple.Foundation 0x948dd898 -[NSCondition waitUntilDate:] + 384
    3 com.apple.Foundation 0x948dd6c4 -[NSConditionLock lockWhenCondition:beforeDate:] + 268
    4 com.apple.MessageFramework 0x004527c8 -[InvocationQueue _drainQueue] + 284
    5 com.apple.Foundation 0x948a04f4 _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x933c7b98 pthreadstart + 316
    Thread 5:
    0 libSystem.B.dylib 0x933859f8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x933c8e3c pthread_condwait + 1320
    2 com.apple.Foundation 0x948dd898 -[NSCondition waitUntilDate:] + 384
    3 com.apple.Foundation 0x948dd6c4 -[NSConditionLock lockWhenCondition:beforeDate:] + 268
    4 com.apple.MessageFramework 0x004527c8 -[InvocationQueue _drainQueue] + 284
    5 com.apple.Foundation 0x948a04f4 _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x933c7b98 pthreadstart + 316
    Thread 6:
    0 libicucore.A.dylib 0x915bb6c4 udata_getMemory + 536
    1 libicucore.A.dylib 0x915bc028 ures_getByKeyWithFallback + 2332
    2 libicucore.A.dylib 0x915bd438 ures_getByIndex + 236
    3 libicucore.A.dylib 0x915ec5ac icu::Transliterator::initializeRegistry() + 204
    4 libicucore.A.dylib 0x915ec32c icu::Transliterator::createBasicInstance(icu::UnicodeString const&, icu::UnicodeString const*) + 84
    5 libicucore.A.dylib 0x915ec234 icu::UVector::setDeleter(void ()(void)) + 112
    6 libicucore.A.dylib 0x915ebff8 icu::UVector::elementAt(int) const + 180
    7 libicucore.A.dylib 0x915e906c icu::Transliterator::createInstance(icu::UnicodeString const&, UTransDirection, UParseError&, UErrorCode&) + 188
    8 libicucore.A.dylib 0x915e8ec0 utrans_openU + 148
    9 com.apple.CoreFoundation 0x90289ccc __CFStringTransformCreate + 340
    10 com.apple.CoreFoundation 0x9028a53c CFStringTransform + 216
    11 com.apple.Foundation 0x94922fb4 stripDiacriticsFromString + 96
    12 com.apple.Foundation 0x94922c00 +[_NSPredicateOperatorUtilities newStringFrom:usingUnicodeTransforms:] + 640
    13 ...apple.AddressBook.framework 0x9186bd40 -[ABAddressBook(ABMailPeopleSearch) recordsMatchingMailAddressWithEmail:fullName:firstName:lastName:inSubscribedCon tent:] + 104
    14 com.apple.MessageFramework 0x003bced4 -[ABAddressBook(MailAdditions) _bestRecordMatchingFormattedAddress:inSubscribedContent:] + 356
    15 com.apple.MessageFramework 0x003bcd2c -[ABAddressBook(MailAdditions) bestRecordMatchingFormattedAddress:] + 36
    16 com.apple.MessageFramework 0x003bcc10 -[MailAddressManager bestRecordMatchingFormattedAddress:] + 156
    17 com.apple.mail 0x0004a740 0x1000 + 300864
    18 com.apple.mail 0x00040308 0x1000 + 258824
    19 com.apple.CoreFoundation 0x902c5ba8 _invoking__ + 168
    20 com.apple.CoreFoundation 0x902c5434 -[NSInvocation invoke] + 128
    21 com.apple.MessageFramework 0x00452d0c -[MonitoredInvocation invoke] + 392
    22 com.apple.MessageFramework 0x0045293c -[InvocationQueue _drainQueue] + 656
    23 com.apple.Foundation 0x948a04f4 _NSThread__main_ + 1004
    24 libSystem.B.dylib 0x933c7b98 pthreadstart + 316
    Thread 7:
    0 libSystem.B.dylib 0x933859f8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x933c8e3c pthread_condwait + 1320
    2 com.apple.Foundation 0x948dd898 -[NSCondition waitUntilDate:] + 384
    3 com.apple.Foundation 0x948dd6c4 -[NSConditionLock lockWhenCondition:beforeDate:] + 268
    4 com.apple.MessageFramework 0x004527c8 -[InvocationQueue _drainQueue] + 284
    5 com.apple.Foundation 0x948a04f4 _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x933c7b98 pthreadstart + 316
    Thread 8:
    0 libSystem.B.dylib 0x93385978 machmsgtrap + 8
    1 libSystem.B.dylib 0x9338c89c mach_msg + 56
    2 com.apple.CoreFoundation 0x90252618 CFRunLoopRunSpecific + 1828
    3 com.apple.CFNetwork 0x95833b5c CFURLCacheWorkerThread(void*) + 292
    4 libSystem.B.dylib 0x933c7b98 pthreadstart + 316
    Thread 9:
    0 libSystem.B.dylib 0x93385978 machmsgtrap + 8
    1 libSystem.B.dylib 0x9338c89c mach_msg + 56
    2 com.apple.CoreFoundation 0x90252618 CFRunLoopRunSpecific + 1828
    3 com.apple.Foundation 0x948f7344 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 280
    4 com.apple.Foundation 0x948a04f4 _NSThread__main_ + 1004
    5 libSystem.B.dylib 0x933c7b98 pthreadstart + 316
    Thread 10:
    0 libSystem.B.dylib 0x93385978 machmsgtrap + 8
    1 libSystem.B.dylib 0x9338c89c mach_msg + 56
    2 com.apple.CoreFoundation 0x90252618 CFRunLoopRunSpecific + 1828
    3 com.apple.MessageFramework 0x0038c5d0 _handleRequestWithTimeout + 1972
    4 com.apple.MessageFramework 0x00388f20 -[_NSSocket connectToHost:withPort:protocol:] + 700
    5 com.apple.MessageFramework 0x00388244 -[Connection _connectUsingHostname:onPort:securityLayerType:accountClass:] + 664
    6 com.apple.MessageFramework 0x00387a90 -[Connection connectAndSetSecurityLayerUsingAccount:] + 204
    7 com.apple.MessageFramework 0x0045a9a4 -[Connection connectUsingAccount:] + 84
    8 com.apple.MessageFramework 0x003871ac -[IMAPAccount _connectAndAuthenticate:] + 276
    9 com.apple.MessageFramework 0x00385c8c -[IMAPAccount _recoverFromConnectionlessState] + 152
    10 com.apple.MessageFramework 0x00385958 -[IMAPAccount _getPotentialGatewayForMailbox:options:createdNewConnection:needsSelect:] + 160
    11 com.apple.MessageFramework 0x00385674 -[IMAPAccount _gatewayForMailboxUid:name:options:] + 208
    12 com.apple.MessageFramework 0x003852e8 -[LibraryIMAPStore _gatewayCreateIfNeeded:options:] + 168
    13 com.apple.MessageFramework 0x0038141c -[LibraryIMAPStore openSynchronouslyUpdatingMetadata:withOptions:] + 116
    14 com.apple.MessageFramework 0x003ca8d8 -[IMAPToDoStoreReconciliationAgent prepareToReconcileForID:] + 96
    15 com.apple.MessageFramework 0x003ca2b4 -[ToDoReconciler(Internal) _triggerAgentsForPhase] + 660
    16 com.apple.MessageFramework 0x003c9e38 -[ToDoReconciler requestReconciliation:] + 788
    17 com.apple.CoreFoundation 0x902c5ba8 _invoking__ + 168
    18 com.apple.CoreFoundation 0x902c5434 -[NSInvocation invoke] + 128
    19 com.apple.MessageFramework 0x00452d0c -[MonitoredInvocation invoke] + 392
    20 com.apple.MessageFramework 0x0045293c -[InvocationQueue _drainQueue] + 656
    21 com.apple.Foundation 0x948a04f4 _NSThread__main_ + 1004
    22 libSystem.B.dylib 0x933c7b98 pthreadstart + 316
    Thread 11:
    0 libSystem.B.dylib 0x933859f8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x933c8e3c pthread_condwait + 1320
    2 ...apple.AddressBook.framework 0x9174a5b8 -[ABRemoteImageLoader workLoop] + 184
    3 com.apple.Foundation 0x948a04f4 _NSThread__main_ + 1004
    4 libSystem.B.dylib 0x933c7b98 pthreadstart + 316
    Thread 12:
    0 libSystem.B.dylib 0x93385978 machmsgtrap + 8
    1 libSystem.B.dylib 0x9338c89c mach_msg + 56
    2 com.apple.CoreFoundation 0x90252618 CFRunLoopRunSpecific + 1828
    3 com.apple.Foundation 0x948ce130 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 168
    4 com.apple.Foundation 0x948d8a24 -[NSRunLoop(NSRunLoop) run] + 72
    5 com.apple.MessageFramework 0x003894a4 +[_NSSocket _runIOThread] + 88
    6 com.apple.Foundation 0x948a04f4 _NSThread__main_ + 1004
    7 libSystem.B.dylib 0x933c7b98 pthreadstart + 316
    Thread 13:
    0 libSystem.B.dylib 0x933ea004 select$DARWIN_EXTSN + 12
    1 com.apple.CoreFoundation 0x9025da68 __CFSocketManager + 764
    Thread 0 crashed with PPC Thread State 32:
    srr0: 0x9070e984 srr1: 0x0200f030 dar: 0x00000002 dsisr: 0x42000000
    r0: 0x0000002a r1: 0xbfffcb20 r2: 0x00000002 r3: 0xbfffcb58
    r4: 0x00000025 r5: 0x00000000 r6: 0x2f45bab0 r7: 0x00000000
    r8: 0x00000000 r9: 0x00000001 r10: 0x0003ec28 r11: 0x00000011
    r12: 0x93386d10 r13: 0xbfffd5b4 r14: 0xbfffd688 r15: 0xbfffd5b8
    r16: 0xbfffd5a0 r17: 0xbfffd628 r18: 0xbfffcc48 r19: 0xa011d3f4
    r20: 0xbfffd5c8 r21: 0x00000000 r22: 0x00000001 r23: 0xbfffd518
    r24: 0x00000000 r25: 0xbfffd718 r26: 0xbfffd7c8 r27: 0x00000000
    r28: 0xbfffd5c8 r29: 0x00000000 r30: 0xbfffd518 r31: 0x905f9f70
    cr: 0x44042208 xer: 0x20000000 lr: 0x905fa3e8 ctr: 0x93386d10
    vrsave: 0x00000000
    Binary Images:
    0x1000 - 0x264fff com.apple.mail 3.2 (919) <161fe7d383a023b5b09b69523de6fac6> /Applications/Mail.app/Contents/MacOS/Mail
    0x2cc000 - 0x334fff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) <4b60ff8df520b0d8ca383547d07cd2bb> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x371000 - 0x59ffff com.apple.MessageFramework 3.2 (919.2) <5a269eed09c195c78645f54883a81486> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x6df000 - 0x6e1fff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x6e7000 - 0x70dfff com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <3abfafbb3982f8c148b49a9c3b35b1f9> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x4a6c000 - 0x4b55ffb com.apple.RawCamera.bundle 2.0.4 (2.0.4) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x4dd1000 - 0x4dd2ffc liblangid.dylib ??? (???) <5f078ac1f623f5ce432ea53fc29338c0> /usr/lib/liblangid.dylib
    0x5fcf000 - 0x5fd5fff libCGXCoreImage.A.dylib ??? (???) <4e1cd099b993b5ad9637cd0435a3a182> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x656b000 - 0x656dffd com.apple.textencoding.unicode 2.2 (2.2) <483d06bdf16bdbbad53efcea4fcfb688> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x8fe00000 - 0x8fe30b23 dyld 96.2 (???) <39109181acbf30fed542e6c9abcf1798> /usr/lib/dyld
    0x90003000 - 0x90012fff com.apple.DMNotification 1.1.0 (143) <c68dc3aa8e69dfea987ae8400ccaa929> /System/Library/PrivateFrameworks/DMNotification.framework/Versions/A/DMNotific ation
    0x90013000 - 0x9001bfff libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x9001c000 - 0x900b6ff7 com.apple.ApplicationServices.ATS 3.2 (???) <4258842969dc8d4fa37e01a80aa3d409> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x900b7000 - 0x90121fff com.apple.PDFKit 2.1 (2.1) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x90122000 - 0x90154fff com.apple.bom 9.0 (136) <cb560109ea507cdfb6c77349845e6b2a> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x90155000 - 0x901e8fff com.apple.framework.IOKit 1.5.1 (???) <590e7f24d3cbfc072c8659173d2141e3> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x901e9000 - 0x9030effb com.apple.CoreFoundation 6.5.1 (476.10) <e71eaa358523eae0e45280bca8a90e98> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9030f000 - 0x9031affb libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x9031b000 - 0x903cbfff edu.mit.Kerberos 6.0.12 (6.0.12) <9a85ee3fd8fb95d4537725b035297fe7> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x903cc000 - 0x90430ffb com.apple.WhitePagesFramework 1.1 (113.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x90431000 - 0x90458fff libxslt.1.dylib ??? (???) <3700d04090629deddb436aa2d516c56d> /usr/lib/libxslt.1.dylib
    0x90459000 - 0x90540ff7 com.apple.JavaScriptCore 5525.13 (5525.13) <69e777d18dea5320096554dca986ce4a> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x90541000 - 0x90c22ff3 com.apple.WebCore 5525.13 (5525.13) <737bfd9a30be77ecb1e6cf339727f13a> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x90c23000 - 0x90c30ff3 com.apple.opengl 1.5.6 (1.5.6) <4ec145eba41b94cff1322a041dfdb437> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90c31000 - 0x90dd1ff7 com.apple.QuartzComposer 2.1 (106.3) <715762e82d4faee79f1b80196f962971> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x90dd2000 - 0x91207ffa libGLProgrammability.dylib ??? (???) <6d71574167a838789ab0ee27f92af626> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x91208000 - 0x91209ff8 com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9120a000 - 0x91251fff com.apple.NavigationServices 3.5.1 (161) <b245f17b2b2902e1f9eeaaa6773f8126> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91252000 - 0x912e8ff3 com.apple.LaunchServices 286.5 (286.5) <1a1a73b91deacb172d15745ec73e5959> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x912e9000 - 0x912e9ff8 com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x912ea000 - 0x9142dfff com.apple.CalendarStore 3.0.2 (809) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x9142e000 - 0x91495ffb libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x91496000 - 0x915b4ff7 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x915b5000 - 0x916fdff3 libicucore.A.dylib ??? (???) <250daed2fb2e6bf114480e2e4da0728b> /usr/lib/libicucore.A.dylib
    0x916fe000 - 0x91724fff libcups.2.dylib ??? (???) <d60807e6cfdc208c2e5520f7acb473f6> /usr/lib/libcups.2.dylib
    0x91725000 - 0x9173afff com.apple.IMUtils 4.0.2 (579) <0cc708840871d968fccfb6c7b5c635af> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x9173b000 - 0x918a6ff9 com.apple.AddressBook.framework 4.1 (687.1) <8ba1dd324b1e390989a1d0c952d95cd7> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x918a7000 - 0x918f6ff7 libGLImage.dylib ??? (???) <1b1db85f633ad1eed75cd6645ec99a5c> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x918f7000 - 0x918f7fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x918f8000 - 0x91901fff com.apple.DiskArbitration 2.2.1 (2.2.1) <a389b4c2badce39540f24402f7df35e7> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91902000 - 0x919b2fff com.apple.QD 3.11.52 (???) <f33191c288897dd4d2e2c4b87bcc09b4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x919b3000 - 0x91a85fff com.apple.CoreServices.OSServices 224.4 (224.4) <1972b141810adcc01c30c31fcbab5af3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91a86000 - 0x91ffaff7 com.apple.CoreGraphics 1.351.21 (???) <44bbf8c3a4e8bc97e8b3e35737001742> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x91ffb000 - 0x92039ff7 libtidy.A.dylib ??? (???) <5ed7eaf2c53383f5bf92fa2b8cd9d16d> /usr/lib/libtidy.A.dylib
    0x9203a000 - 0x9203ffff com.apple.OpenDirectory 10.5 (10.5) <6dca8a620bb66310737d421624ebbfcd> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x92040000 - 0x9205cfff com.apple.IMFramework 4.0.2 (579) <77e18132c0a9e86f15eacff27efaf30d> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9205d000 - 0x9207cfff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9207d000 - 0x92090fff com.apple.LangAnalysis 1.6.4 (1.6.4) <c184bb5b2859e82c5740a6fdb1e3d0bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x92091000 - 0x920c6fff com.apple.AE 402.2 (402.2) <0b15a08da8ec38b74fb9dd6e579ed25f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x920c7000 - 0x920c7ffa com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x920c8000 - 0x920cdfff com.apple.KerberosHelper 1.0 (1.0) <39e7760f51cd9af4d0cf979381577308> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x920ce000 - 0x920d4ffb com.apple.DisplayServicesFW 2.0 (2.0) <fb3b6779bc6c167bc163798b6d20a866> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x920d5000 - 0x9219affb com.apple.CoreData 100.1 (186) <9cf54cb19b18e53ee22edb7ababa6e6c> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9219b000 - 0x921ccfff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x921cd000 - 0x9222dfff com.apple.CoreText 2.0.1 (???) <2ecbcac842c4864bdd3de0a68e4d2f2c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9222e000 - 0x92243fff com.apple.datadetectors 1.0.1 (66.2) <90711dd7887550dd04f564ec211cf059> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x92244000 - 0x9228aff9 com.apple.securityinterface 3.0 (32532) <82a438eff282dd1dc1f803dfd91b5f38> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x92382000 - 0x92407fff libsqlite3.0.dylib ??? (???) <f2a33fe2663eab9c7f4806d2cf05b4ee> /usr/lib/libsqlite3.0.dylib
    0x92408000 - 0x92432ff7 libssl.0.9.7.dylib ??? (???) <5dac2e94552ad76696c35bd6886f5a92> /usr/lib/libssl.0.9.7.dylib
    0x92433000 - 0x92541fff com.apple.PubSub 1.0.3 (65.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x92542000 - 0x92555ffe com.apple.CFOpenDirectory 10.5 (10.5) <41ed29dcd683657b10994df7d7349e0a> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x92556000 - 0x92571ffb libPng.dylib ??? (???) <c51ec88c87a3f0a646471165e16acd43> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92572000 - 0x925aafff com.apple.SystemConfiguration 1.9.1 (1.9.1) <50bc5b4d50a2e1f7743e729381467537> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x925ab000 - 0x925aefff com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9285e000 - 0x928a8fff com.apple.QuickLookUIFramework 1.1 (170.2) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x928b4000 - 0x92976fff com.apple.WebKit 5525.13 (5525.13) <f1df0c201af5b2002f8de2409ebdbb39> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x92977000 - 0x92a44ffb com.apple.syncservices 3.1 (389.1) <f20f7689e32082ee2e0e048eb749f3f6> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x92a45000 - 0x92a5cffb com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92a5d000 - 0x92b81fff com.apple.imageKit 1.0.1 (1.0) <7789976f515c9183d46ad4fc20259210> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x92b87000 - 0x92b8efff com.apple.CommonPanels 1.2.4 (85) <0d1256175c5512c911ede094d767acfe> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92b8f000 - 0x92bb8ffb com.apple.shortcut 1 (1.0) <032016a45147a2f3f191ce70187587c9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x92bb9000 - 0x92ebaff7 com.apple.CoreServices.CarbonCore 785.8 (785.8) <d56076bc0fe62dd58002bdd581a3f3c0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92ebb000 - 0x92f46ffb com.apple.QTKit 7.4.1 (14) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x92f47000 - 0x92f96ffb com.apple.datadetectorscore 1.0.1 (52.13) <69e94c45e78db565ebdd1adfc3840861> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x92fa8000 - 0x92ff5fff com.apple.framework.familycontrols 1.0.2 (1.0.2) <7e5f40bf34e73939c482a2ba6110c024> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x92ff6000 - 0x93006fff libsasl2.2.dylib ??? (???) <18935d5e775962f4728b91189b092d45> /usr/lib/libsasl2.2.dylib
    0x93007000 - 0x9304affb com.apple.DirectoryService.PasswordServerFramework 3.0.2 (3.0.2) <6ecb0c80ef1432ab3ac75b5ffcd016e4> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x93119000 - 0x9312cffb com.apple.speech.synthesis.framework 3.6.59 (3.6.59) <7c299626d6167de473e85327699cdb9c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9312d000 - 0x9314cfff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9314d000 - 0x93230feb libobjc.A.dylib ??? (???) <23a407d7dac6090562827e97bac3cb86> /usr/lib/libobjc.A.dylib
    0x93231000 - 0x93235ffe libGIF.dylib ??? (???) <d6e2a570359313a39c6783c2ecfee608> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93236000 - 0x93241ff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x93242000 - 0x9325dff3 com.apple.DirectoryService.Framework 3.5.1 (3.5.1) <0bd4cfb69d5de8ecff3c61e32837fdf0> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9325e000 - 0x9325effe com.apple.quartzframework 1.5 (1.5) <1477ba992c53f43087c7527c4782fd54> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x93263000 - 0x932a2fff com.apple.DAVKit 3.0.2 (643) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x932a3000 - 0x932a4fff libffi.dylib ??? (???) <11b77dbce4aa0f0b66d40014230abd1d> /usr/lib/libffi.dylib
    0x932a5000 - 0x932a5ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x932a6000 - 0x932b2ff3 com.apple.audio.SoundManager 3.9.2 (3.9.2) <79588842bcaf6c747a95b2120304397a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x932b3000 - 0x932f4fff com.apple.CoreMediaIOServicesPrivate 1.4 (1.4) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x932f5000 - 0x93302fff libCSync.A.dylib ??? (???) <e7073e93982e6872ed72e5873b791462> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93303000 - 0x9331bffb com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9331c000 - 0x9331cffc com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <91aadd6dccda219dd50a6ce06aad5b54> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9331d000 - 0x93320ffb com.apple.securityhi 3.0 (30817) <e50c0cac9048f8923b95797753d50b5c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93321000 - 0x93383ffb com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93384000 - 0x9351dfe3 libSystem.B.dylib ??? (???) <754231f5e52ed8418f89f1f3369caf58> /usr/lib/libSystem.B.dylib
    0x9351e000 - 0x9351efff com.apple.Carbon 136 (136) <6a6a209ec9179368db7ead8382b8ee63> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9351f000 - 0x9352cfff libbz2.1.0.dylib ??? (???) <ff3050272228dbda09852641458eaaa4> /usr/lib/libbz2.1.0.dylib
    0x9352d000 - 0x9356affe com.apple.securityfoundation 3.0 (32989) <ad2dd4c797fa2ba4c656f82936f9fb83> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9356b000 - 0x93572ffb com.apple.print.framework.Print 218.0.2 (220.1) <c7e0e618d5867ae227403ae385aacd82> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93573000 - 0x93ce8fff com.apple.AppKit 6.5.2 (949.26) <8d6ce96921254cbc787b9fe0526bef42> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93ce9000 - 0x93cf8fff com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <651e2b4d7e19d43f520829f76216f2c2> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x93cf9000 - 0x93d07fff libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x93d08000 - 0x94041ff3 com.apple.HIToolbox 1.5.2 (???) <687d476c6a3809efaba68bc11dc894c1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x94042000 - 0x940ccfff libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x940cd000 - 0x943f6fe7 libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x943f7000 - 0x94402fff com.apple.dotMacLegacy 3 (242) <185b606dd372a05be4b68c04648c1445> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x94403000 - 0x9440efff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <ae3dc890a43a9269388301f6b59d3091> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9440f000 - 0x944defff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x944df000 - 0x944dffff com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x944e0000 - 0x94568fff com.apple.ink.framework 101.3 (86) <66a99ad6bc695390a66dd24789e23dcc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94569000 - 0x946b2ffb com.apple.ImageIO.framework 2.0.1 (2.0.1) <ea98d04f3ecfec65edfafe3796d6d442> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x946b3000 - 0x94896ffb com.apple.security 5.0.2 (33001) <5e841904ba22d381672679180d4b0f4a> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x94897000 - 0x94adbffb com.apple.Foundation 6.5.4 (677.15) <0cb0eec2a47f915404236f64abf7c384> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94adc000 - 0x94b18fff libRIP.A.dylib ??? (???) <7bc908a7317a00fe3c659571c50cdd46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94b19000 - 0x94b1fffb com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x94b20000 - 0x94b44ffb libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x94b45000 - 0x94b4aff6 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x94b4b000 - 0x94bccfff com.apple.print.framework.PrintCore 5.5.2 (245.1) <df7cf3aa9f046c543b9e27f08860b692> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x94bcd000 - 0x94bedff7 libJPEG.dylib ??? (???) <92341083256fbcd28888a179ebf941ef> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94bee000 - 0x94c23ffb com.apple.LDAPFramework 1.4.3 (106) <d9a3a16b2d468683b68f714d11196d7b> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94c24000 - 0x94cb3ffb com.apple.DesktopServices 1.4.5 (1.4.5) <b6bd34467a57cc899612152caac2a789> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x94d54000 - 0x94e68ffa com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x94e69000 - 0x94eaaffb libTIFF.dylib ??? (???) <0d0a3107d26786c3708e6a511d5acec9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94eab000 - 0x94f26fff com.apple.SearchKit 1.2.0 (1.2.0) <1b448fbae02460eae76ee1c6883f45d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94f27000 - 0x954e1fff libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x954e2000 - 0x95569ffb com.apple.audio.CoreAudio 3.1.0 (3.1) <880a5a35ef1c5158271ee4b305b35626> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9556a000 - 0x95596fff com.apple.CoreMediaPrivate 1.4 (1.4) <9bd5fc8365eccf8c289eb3009fee3800> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x9559a000 - 0x955a2ffb libCGATS.A.dylib ??? (???) <f08869e380cd4b55e14714fe723cbc66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x955a3000 - 0x955eeffb com.apple.Metadata 10.5.2 (398.7) <f0c3c28205af67a29a2ed728ee297648> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x955ef000 - 0x95631fff com.apple.quartzfilters 1.5.0 (1.5.0) <3f2dc01a646cd5b5ea55d510583ba4d5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x95632000 - 0x956ecfff libcrypto.0.9.7.dylib ??? (???) <4ea3d7e9a1c28ac7b17ed80873fe6598> /usr/lib/libcrypto.0.9.7.dylib
    0x956ed000 - 0x95752ffb com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x95753000 - 0x957a9fff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x957aa000 - 0x95806ffb com.apple.HIServices 1.7.0 (???) <48d200891cc9dd795ee547d526c6a45b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x95807000 - 0x95809ffd libRadiance.dylib ??? (???) <3d70fcb7557347829c96c9753074b3f1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9580a000 - 0x95828fff com.apple.QuickLookFramework 1.1 (170.2) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x95829000 - 0x958a3ffd com.apple.CFNetwork 221.5 (221.5) <ef2672379d6fcb1470dc9361ce68e7f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x958a4000 - 0x95bcafff com.apple.QuickTime 7.4.1 (14) <3087ee45234222a1563007c962626f3a> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x95bcb000 - 0x95f28ff2 com.apple.QuartzCore 1.5.1 (1.5.1) <f364682e96d58c5849cad532f6bf2f91> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95f29000 - 0x95f54ff7 libauto.dylib ??? (???) <b3a3a4b0f09653bd6d58f1847922b533> /usr/lib/libauto.dylib
    0x95f55000 - 0x95feefc3 libvDSP.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x95fef000 - 0x96008fff com.apple.CoreVideo 1.5.0 (1.5.0) <f1e561d4ba585d5740e3d4990729b8de> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96009000 - 0x960f2fff libxml2.2.dylib ??? (???) <271fc4d25f101b60a8e7514d1c32a91c> /usr/lib/libxml2.2.dylib
    0x960f3000 - 0x96112fff libresolv.9.dylib ??? (???) <181fb3defd2942f00201507cfa4efdb5> /usr/lib/libresolv.9.dylib
    0x96113000 - 0x96141ffb com.apple.DotMacSyncManager 1.2.2 (280) <5501c6e8bfab7521001953773f7444e6> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x96142000 - 0x9615dffb com.apple.openscripting 1.2.6 (???) <12270fbb14905644f78975f227328a98> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0xfffec000 - 0xfffeffff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Well, I'm hoping this is a big enough issue that we will receive professional help from experienced folks in this discussion group. I'm not sure what else we can do but wait. I'm pretty good at keeping a Mac running smoothly, so it dumbfounds me that a security update could be so problematic. It has really wrecked havoc for me. I wish there was a way to email this post to experienced people within the discussion, but I'm not sure how to do that.

  • Is it possible for widgets in dashboard to float over other windows?

    I'm trying to assess features in Mavericks in comparison to Snow Leopard (the OS I'm most familiar with).  I usually read the Missing Manual for the new OSes, but haven't gotten to all areas yet - it's a big book!
    Is it possible for widgets in dashboard to float over other windows? 
    I want to be able to see the calculator widget for example while I'm also working in a Bills template document in Word, or over my back account page while viewing in Safari.  Or look at words in Thesaurus while viewing a document I'm writing in Word, or even an email in Mail.  In OS 10.6 widgets on the dashboard float above the other windows, but I can see them both at the same time.  It looks like Dashboard is all by itself in Mavericks.  Is this the case and the only way to view widgets now, is by themselves in their own isolated environment?  Any work around?
    Thanks.

    You can assign a "hot corner" with System preferences > Mission Control > Hot corners to bring up your dashboard anytime you want quickly by moving the mouse to the corner.  Works really well.

  • Can't use widgets in Dashboard interface

    So yesterday I installed iStat and i can't put it on the "dashboard surface" the darkened background, When I click the + button after I openend dashboard I can see all my widgets. But when I try to drag and drop iStat it just disappears and dashboard quits. Any solution ???
    OS Version is 10.6.7

    Odd.
    On mine all I need to do to get an installed widget to display is to click it once (I don't need to drag it) in the bottom display after clicking the "+" button to show them.
    Try this - with the "+" button clicked and the widgets displayed along the bottom, click the new item "Manage Widgets..." that appears alongside the "+" button. In the new window, scroll to the iStat widget - make sure it has been checkmarked.

  • Gmail Widget in Dashboard Simply Doesn't Work

    Hi,
    I just purchased a MacBook Pro. Everything is great, but for some reason the Gmail widget in dashboard simply will not work. It installs, but after I put in my email and password the gmail logo blinks and the window remains blank. I have tried downloading it and uninstalling it numerous times. This is a really useful widget as it will allow me to check my email at a glance and it is simply not working. Am I missing something?
    Thanks,
    Ryan

    im wondering if its a compatibility issue with 10.5.6? // i cant try it out now but i will later tonight /// try using mail untill then as long as you leave it open then it will put numbers on the dock icon and beep once when e-mail comes in.

Maybe you are looking for

  • How do I find the IP address of a website?

    I'm accessing a website through Firefox. How do I find out what the IP address of this website is?

  • Security Mode Feature in ATAPI HD's provided by Apple

    Hello, I'd like to know how would I implement the security mode feature for the hard drive provided by Apple in MacBook Pro and if it will or not have any problems with EFI. How will EFI manage this feature of ATA hard drives?

  • Calling a function that's inside another function

    function test1():void      function test2():void {..} How do I call test2 function (outside test1 function)? Is it possible?

  • Does Address book has a Last Modified Date field?

    Hi Please can you let me know if Address book has a Last Modified Date field? I'd like to know what date I have last modified my address book records. I checked Preferences but not able to find it there. Thank you.

  • Pages crashes whenever I open a file

    Pages crashes whenever I open either a new file or one from an email. All my programs are upto date. Please can anyone suggest a solution? This has been going on for months! All works fine on Iphone or Ipad however. It's just on my Macbook and is ver