Populate some  Data after loading Seach Page

Hi,
I am using Jdeveloper 11.1.1.3, ADF BC. I have made an Application with search pages. As when the page loads ; inputtexts, LOVs, etc are not displayed, but only the labels are displayed. So when we click for search button then , text fields get displayed.
Is there a way by which when the search page is loaded; i.e some data is already populated in the Fields.
Thanks,
NL

Here is what I understand from your question[correct me if I am wrong]:
You want to create a search page with table to show the result.
1. I hope you have created a VO and added that VO to Application module.
2. From data control expand AM -- VO -- Named Criteria
3. Drag and drop any query criteria to the page as Query --> ADF Query Panel with Table
for defaulting values in query criteria you do need to create a custom query criteria and drop that on to the page
http://naive-amseth.blogspot.com/2010/08/how-to-default-data-on-search-criteria.html
Amit

Similar Messages

  • How to populate form data after LOV search on primary key

    This is the description:
    Pg. 1 contains an item defined as P1_CUSTOMER_ID (Popup Key LOV (Displays description, returns key value) with the list of values definition:
    select
    last_name || ' , ' || first_name display_value, cust_num return_value from customers order by 1
    Pg. 1 contains a button defined as P1_FIND_NOW (Redirect) with a URL redirect to Pg. 4.
    Pg. 1 contains a branch defined as Go To Page 4 (after processing), branch point = On Submit: After processing, action = page in this application, When Button Pressed = P1_FIND_NOW
    Pg. 4 contains two regions with multiple items, for example P4_ADDRESS_1, Display as Text Field (disabled, does not save state), Source Used = Always, replacing any existing value in session state, Source Type = Database column, Source value = ADDRESS_1
    Pg. 4 contains a process (before region) defined as POPULATE_CUST_INFO, Process point = On load, before region, Process error message = Customer could not be found, Source process =
    BEGIN
    SELECT
    CUSTOMERS.FIRST_NAME,CUSTOMERS.LAST_NAME,CUSTOMERS.BIRTH_DATE,
    CUSTOMERS.SEX,CUSTOMERS.MARITAL_STATUS,CUSTOMERS.PHONE_NUMBER_V,
    CUSTOMERS.PHONE_NUMBER_M, CUSTOMERS.ADDRESS_1,CUSTOMERS.ADDRESS_2,
    CUSTOMERS.ADDRESS_3,CUSTOMERS.CITY_NAME,CUSTOMERS.STATE_CODE,
    CUSTOMERS.ZIP_CODE,CUSTOMERS.COUNTRY_CODE
    INTO
    :P4_FIRST_NAME,:P4_LAST_NAME,:P4_DOB,:P4_GENDER,:P4_MARITAL_STATUS,
    :P4_VOICE,:P4_MOBILE,:P4_ADDRESS_1,:P4_ADDRESS_2,:P4_ADDRESS_3,
    :P4_CITY_NAME,:P4_STATE_CODE,:P4_ZIP_CODE,:P4_COUNTRY_CODE
    FROM CUSTOMERS
    WHERE :P1_CUST_ID = CUSTOMERS.CUST_NUM;
    END;
    I am getting the pop-up LOV and selecting a customer from the LOV, then clicking the FIND NOW button. This redirects to Pg. 4 where I expect to see all the data for the selected Customer populated into the various text fields (name, address, etc.). What is actually happening is I'm being redirected to Pg. 4 but
    the Process error message = Customer could not be found is displaying.
    If I run the same Source process query within SQL, I get a screen to
    enter bind variables, I enter an existing customer number (e.g.Y0001), and I get the message:
    ORA-06502: PL/SQL: numeric or value error
    The primary key for the CUSTOMERS table is CUST_NUM varchar2(17)

    Your message refers to "P1_CUSTOMER_ID" and "P1_CUST_ID". Is that a typo in the message? If not, perhaps that's the problem.
    Rodney

  • Deleting master data after loading transactional data using flat file

    Dear All,
    I have loaded transaction data  into an infocube using a flat file . While loading DTP i have checked the  option "load  transactional data with out master data exists" . So transactional data is loaded even if no master data is there in BW.
    While loading the flat file, I made a mistake for DIVISION Characteristic  where original master data value is '04000' , but i loaded the transactional data with value '4000' .Then i later realized after seeing the data from the infocube and deleted the request. then i reloaded data with value '04000'. Till now every thing is fine.
    But when I see the master data for DIVISION , i can see a new entry  with value '4000'.
    My question is how to delete the entry value '4000' from DIVISION. I tried deleting manually this entry from 'maintaining masterdata' , but it is not allowing me to do so .
    I have also checked if any transactional data exists for that value '4000' , as i said earlier I have deleted the transactional data with that values. even tried to delete the entries from the master data table, but i donot see a option to delete entries there.
    Please suggest me on this.
    Regards,
    Veera

    Hi,
    Goto RSA1 right click on the Info object and select Delete Master data. This will delete the master data unused existing in the table.
    If this master data is not used any where else just delete the master data completely with SID option.
    If even this doesnt work you can delete the complete table entire in SE14. But this will wipe out the entire table. Be sure if you wanna do this.
    Hope this helps
    Akhan.

  • How to increment the date without loading the page?

    i have a table which contain fields 'No_of_days','fdate' and 'tdate'
    my requirement is add the value of 'No_of_days' and 'fdate' and put it in field 'tdate'
    No_of_days
    2
    fdate
    12-02-2011
    i want the output from 'tdate' as 14-02-2011 without loading the page....
    what i have to do....?
    i was use when-validate-item in forms to perform this.... but i dont know in apex...im new to apex..so pls help...
    help me guys....
    Edited by: 794244 on Feb 11, 2011 11:54 PM
    Edited by: 794244 on Feb 12, 2011 12:05 AM

    Is this what you're after ?
    http://apex.oracle.com/pls/apex/f?p=18507:12 ?
    This can be accomplished with little effort. Let me know and I'll write it up.
    Jeff

  • Calc script for calculating current month data after loading

    Hi,
    I'm trying to write a script to do a calculation to all dimension after load current month data; it ran successfully but current month data is all zero; can someone tell me what i'm doing wrong?
    SET CACHE HIGH;
    SET UPDATECALC OFF;
    SET CALCPARALLEL 4;
    FIX (&CurMon, &CurYr)
    AGG (Sparse2, Sparse3, Sparse 4, Sparse 5, Sparse 6);
    ENDFIX
    Dense1 – Dynamic Calc
    Period: Dense – Dynamic Calc
    Year: Sparse – Dynamic Calc
    Sparse2 – Label Only
    Sparse3 – Label Only
    Sparse 4– Label Only
    Sparse5 – Label Only
    Sparse6 – Label Only
    Thanks!

    Natilie,
    If I understand you correctly, you are loading data, then clearing out the current month->current year, and then aggregating current month->current year? There isn't going to be any data there -- you've cleared it out in your second step.
    I think the order you want is:
    1) Clear out the current month->current year to be sure it's a good load
    2) Load the current month->current year
    3) Aggregate the current month->current year
    This could be done with a single Maxl that controls two calc scripts and one import database (clear, import, agg) or you could do it manually.
    The default calc is (generally) equivalent to CALC ALL using db properties (UPDATECALC, AGGMISSG, etc.). There shouldn't be practical difference between that and the AGG portion of your calc.
    I would again confirm that all of your data is at the lowest level, i.e., you can navigate to leaf level on all dimensions and pull a data value before you aggregate. Perhaps you are loading to upper level members and don't realize it. I often use the Excel add-in's Styles to tell me if I'm at the lowest level of a db or not.
    Regards,
    Cameron Lackpour

  • Change to blank page after loaded a page

    I am using Firefox 32.0.3 with Windows 7. Recently, when I load some pages, at first, every images, words, links are coming out as usual. When all the elements of the pages are loaded, that means the "Stop loading this page" symbol changes to "Reload current page" symbol, the page change to a blank page.
    If I press the "Stop loading this page" symbol during loading the page, it stops and all the contents are there. I can use this method to solve the above error. However, it will be hard to know when should I press the "Stop loading this page" symbol to avoid changing to the blank page. If I press early, only part of the page could be loaded. If I press late, it change to the blank page. It is very annoying.
    Except this current problem, there are 2 long-term error at Firefox. It uses a lot of memory to load the Firefox. I have only activated the Flash plug-in, no others, no toolbars. And open 1 to 2 tabs, but it still occupy a lot of memory. The second error is the Flash plug-in always crashed with Firefox. Please also fix it.

    Yes, tried Safe Mode, still the same. And just updated to latest version, also the same, problem is still here.
    And I have already cleared the history, caches, and cookies before I posted the question here.

  • Missing some records after Loading Data in Oracle 11g Release 1

    Hi All,
    I wrote a script to load one million records into the database using all insert commands.
    I know there is a faster way using SQL Loader- but i am in the process of learning but ran out of time.
    Anyhow, 1 million data was injected into the database but only 999998 records are there....does anyone know why?
    Is there a way I can find out which data was rejected?
    thanks

    Hello,
    It could be nice that your script spool a log.
    By that way, you could more easily catch the error and the detail of the rows rejected.
    Best regards,
    Jean-Valentin

  • Safari Slow to startup, wrong fonts, crashes after loading apple page

    I'm running Safari 2.0.2 on a new Mac Mini, OS 110.4.3.
    I was doing several things when it started to quit working; running quicktime movies, running Azureus (not too well configured) and adding a CD's worth of fonts to Fontbook
    I started seeing performance hits which I think were due to Azureus; their FAQ said to upgrade to Java 1.5 to s
    help this issue. Before I did that, I overwhelmed Fontbook with a massive addition of fonts. The quicktime movies stopped, Safari wasn't booting, and forced quit didn't respond at all. I had to unplug the machine.
    Upon rebooting, Safari would only load the Apple home page, and it had properly formatted headings for the articles but the body text was in some alternate character set. I got a spinning wheel that wouldn't let me select other menu options for a long time. I tried to Reset Safari and it quit. I loaded a local html page and was able to access the preferences in Safari and clear cache, and history. The preferences showed the foreign font as Times, so I selected a different Times variant that displayed properly in preferences, but when I tried to reboot it, the font hadn't changed. As suggested in another thread, I tried to eliminate font duplicate problems by only leaving System fonts active and turning everything else off, but the incorrect font showed when I tried to start it again.
    I'm not entirely clear on where all the Safari preference files reside, but found some in the Library folder and also deleted icon folders. The Safari help app also crashed intermittently and sometimes wouldn't respond.
    I had found a link to a page that I believe was an apple tech note explaining the procedure for removing the pref files and related files, but I didn't copy it down and after checking every troubleshooting link when I brought it back up in the admin account, couldn't find it again.
    I threw out Azureus. Before I did that I stopped all torrents (I'm not sure if they run in the background when it's shut down - it sure seemed like they did.)
    Safari boots fine in my duplicate admin account, as does Opera. But my primary user account also won't boot Opera or an FTP client I have.
    I installed Firefox in the duplicate admin account and it works fine in the primary user account where Safari and Opera won't boot.
    Java 5 is a new iron in the fire too, but with it selected as the primary java version, no problems show up in the Admin account.
    I really don't know what else to do. It doesn't seem to make sense to reinstall Safari since it runs in the other account. Any suggestions?
    Forthwith, the crash reports and console log. People seemed to indicate they might be helpful in another thread.
    Thanks in advance for any help you might offer.
    CONSOLE LOG:
    Mac OS X Version 10.4.3 (Build 8F46)
    2006-01-07 17:22:25 -0800
    2006-01-07 17:22:27.007 SystemUIServer[255] lang is:en
    2006-01-07 17:25:50.105 Safari[274] An uncaught exception was raised
    2006-01-07 17:25:50.137 Safari[274] * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    2006-01-07 17:25:50.137 Safari[274] * Uncaught exception: <NSFileHandleOperationException> * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    Jan 7 17:25:54 arthur-kegerreis-mac-mini crashdump[279]: Safari crashed
    Jan 7 17:25:56 arthur-kegerreis-mac-mini crashdump[279]: crash report written to: /Users/arthurkegerreis/Library/Logs/CrashReporter/Safari.crash.log
    2006-01-07 17:28:19.676 -BringToFront[290] Checking for updates
    2006-01-07 17:34:56.079 SyndicationAgent[296] WARNING: Syndication database thread didn't close in 10 seconds. Timing out.
    2006-01-07 17:39:09.871 SyncServer[306] A Sync Server is already running on this computer, exiting process.
    2006-01-07 17:41:52.895 Safari[295] An uncaught exception was raised
    2006-01-07 17:41:52.896 Safari[295] * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    2006-01-07 17:41:52.896 Safari[295] * Uncaught exception: <NSFileHandleOperationException> * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    Jan 7 17:41:55 arthur-kegerreis-mac-mini crashdump[307]: Safari crashed
    Jan 7 17:41:56 arthur-kegerreis-mac-mini crashdump[307]: crash report written to: /Users/arthurkegerreis/Library/Logs/CrashReporter/Safari.crash.log
    2006-01-07 17:43:19.980 Safari[309] An uncaught exception was raised
    2006-01-07 17:43:19.980 Safari[309] * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    2006-01-07 17:43:19.980 Safari[309] * Uncaught exception: <NSFileHandleOperationException> * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    Jan 7 17:43:21 arthur-kegerreis-mac-mini crashdump[311]: Safari crashed
    Jan 7 17:43:22 arthur-kegerreis-mac-mini crashdump[311]: crash report written to: /Users/arthurkegerreis/Library/Logs/CrashReporter/Safari.crash.log
    Jan 7 17:44:14 arthur-kegerreis-mac-mini crashdump[314]: Opera 6.03 crashed
    Jan 7 17:44:15 arthur-kegerreis-mac-mini crashdump[314]: crash report written to: /Users/arthurkegerreis/Library/Logs/CrashReporter/Opera 6.03.crash.log
    ### MRJPlugin: getPluginBundle() here. ###
    ### MRJPlugin: CFBundleGetBundleWithIdentifier() succeeded. ###
    ### MRJPlugin: CFURLGetFSRef() succeeded. ###
    2006-01-07 17:49:36.641 Safari[318] An uncaught exception was raised
    2006-01-07 17:49:36.641 Safari[318] * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    2006-01-07 17:49:36.641 Safari[318] * Uncaught exception: <NSFileHandleOperationException> * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    Jan 7 17:49:39 arthur-kegerreis-mac-mini crashdump[320]: Safari crashed
    Jan 7 17:49:40 arthur-kegerreis-mac-mini crashdump[320]: crash report written to: /Users/arthurkegerreis/Library/Logs/CrashReporter/Safari.crash.log
    2006-01-07 18:03:56.599 Safari[341] An uncaught exception was raised
    2006-01-07 18:03:56.600 Safari[341] * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    2006-01-07 18:03:56.600 Safari[341] * Uncaught exception: <NSFileHandleOperationException> * -[NSConcreteFileHandle readDataOfLength:]: Input/output error
    Jan 7 18:03:58 arthur-kegerreis-mac-mini crashdump[343]: Safari crashed
    Jan 7 18:03:58 arthur-kegerreis-mac-mini crashdump[343]: crash report written to: /Users/arthurkegerreis/Library/Logs/CrashReporter/Safari.crash.log
    HELP VIEWER.CRASH.LOG:
    Host Name: arthur-kegerreis-mac-mini
    Date/Time: 2006-01-07 15:31:11.022 -0800
    OS Version: 10.4.3 (Build 8F46)
    Report Version: 3
    Command: Help Viewer
    Path: /System/Library/CoreServices/Help Viewer.app/Contents/MacOS/Help Viewer
    Parent: WindowServer [203]
    Version: 3.0.0 (144.1)
    Build Version: 139
    Project Name: HelpViewer
    Source Version: 1440400
    PID: 235
    Thread: 2
    Exception: EXC_BREAKPOINT (0x0006)
    Code[0]: 0x00000001
    Code[1]: 0x928e4620
    Thread 0:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da0c CFRunLoopRunSpecific + 268
    4 com.apple.HIToolbox 0x931711e0 RunCurrentEventLoopInMode + 264
    5 com.apple.HIToolbox 0x93170874 ReceiveNextEventCommon + 380
    6 com.apple.HIToolbox 0x931706e0 BlockUntilNextEventMatchingListInMode + 96
    7 com.apple.AppKit 0x9364e904 _DPSNextEvent + 384
    8 com.apple.AppKit 0x9364e5c8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    9 com.apple.AppKit 0x9364ab0c -[NSApplication run] + 472
    10 com.apple.AppKit 0x9373b618 NSApplicationMain + 452
    11 com.apple.helpviewer 0x00002a90 0x1000 + 6800
    12 com.apple.helpviewer 0x000021c4 0x1000 + 4548
    13 com.apple.helpviewer 0x00002068 0x1000 + 4200
    Thread 1:
    0 libSystem.B.dylib 0x9004d70c fsync + 12
    1 com.apple.Foundation 0x92902c7c _NSWriteBytesToFile + 400
    2 com.apple.Foundation 0x92902ad8 -[NSData writeToFile:atomically:] + 104
    3 com.apple.Foundation 0x92902a30 -[NSFileManager createFileAtPath:contents:attributes:] + 88
    4 com.apple.Foundation 0x929029b4 -[NSFileManager(NSURLExtras) webcreateFileAtPathWithIntermediateDirectories:contents:attributes:directoryAttribu tes:] + 128
    5 com.apple.Foundation 0x929008d0 -[NSURLCache _diskCacheExecuteWrite:] + 348
    6 com.apple.Foundation 0x928f95e8 -[NSURLCache _diskCacheSync] + 256
    7 com.apple.CoreFoundation 0x90771ae0 __CFRunLoopDoTimer + 184
    8 com.apple.CoreFoundation 0x9075e458 __CFRunLoopRun + 1680
    9 com.apple.CoreFoundation 0x9075da0c CFRunLoopRunSpecific + 268
    10 com.apple.Foundation 0x928f1cdc +[NSURLCache _diskCacheSyncLoop:] + 152
    11 com.apple.Foundation 0x928c96d4 forkThreadForFunction + 108
    12 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2 Crashed:
    0 com.apple.Foundation 0x928e4620 _NSRaiseError + 264
    1 com.apple.Foundation 0x928e435c +[NSException raise:format:] + 40
    2 com.apple.Foundation 0x92907044 -[NSConcreteFileHandle readDataOfLength:] + 508
    3 com.apple.Foundation 0x92907844 -[NSHTTPCookieDiskStorage(NSInternal) _saveCookies] + 292
    4 com.apple.Foundation 0x929075ec saveTimerCallback + 96
    5 com.apple.CoreFoundation 0x90771ae0 __CFRunLoopDoTimer + 184
    6 com.apple.CoreFoundation 0x9075e458 __CFRunLoopRun + 1680
    7 com.apple.CoreFoundation 0x9075da0c CFRunLoopRunSpecific + 268
    8 com.apple.Foundation 0x928f0b9c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    9 com.apple.Foundation 0x928c96d4 forkThreadForFunction + 108
    10 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da0c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928d8664 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x928d859c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x95422870 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x928c96d4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f20c select + 12
    1 com.apple.CoreFoundation 0x9077099c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002b8a8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003001c pthreadcondwait + 488
    2 com.apple.Foundation 0x928d0840 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.AppKit 0x936eb4dc -[NSUIHeartBeat _heartBeatThread:] + 324
    4 com.apple.Foundation 0x928c96d4 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2 crashed with PPC Thread State 64:
    srr0: 0x00000000928e4620 srr1: 0x000000000202f030 vrsave: 0x0000000000000000
    cr: 0x24024442 xer: 0x0000000000000007 lr: 0x00000000928e45f8 ctr: 0x00000000928a645c
    r0: 0x0000000000000000 r1: 0x00000000f0182400 r2: 0x00000000a28a4508 r3: 0x00000000f0181fb0
    r4: 0x0000000000000000 r5: 0x00000000928a5d84 r6: 0x00000000f0182034 r7: 0x00000000000000ff
    r8: 0x00000000f0182020 r9: 0x0000000004dfd3c0 r10: 0x00000000909be648 r11: 0x0000000024024442
    r12: 0x00000000928a645c r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x00000000a28c7720 r18: 0x00000000a28c7720 r19: 0x00000000a28c7720
    r20: 0x0000000000000009 r21: 0x00000000ffffffff r22: 0x0000000005501c78 r23: 0x0000000090a285cc
    r24: 0x0000000000000000 r25: 0x000000000057e000 r26: 0x0000000005916f70 r27: 0x00000000ffffffff
    r28: 0x00000000057eabb0 r29: 0x00000000a28aad28 r30: 0x00000000ffffffff r31: 0x00000000928e4528
    Binary Images Description:
    0x1000 - 0xafff com.apple.helpviewer 3.0.0 (144.1) /System/Library/CoreServices/Help Viewer.app/Contents/MacOS/Help Viewer
    0x4ce5000 - 0x4ce7fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x52fd000 - 0x5303fff com.apple.DictionaryServiceComponent 1.0.0 /System/Library/Components/DictionaryService.component/Contents/MacOS/Dictionar yService
    0x8fe00000 - 0x8fe54fff dyld 44.2 /usr/lib/dyld
    0x90000000 - 0x901b3fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9020b000 - 0x90210fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x90212000 - 0x90265fff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90292000 - 0x90343fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90372000 - 0x906affff com.apple.CoreGraphics 1.256.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9073b000 - 0x90814fff com.apple.CoreFoundation 6.4.4 (368.18) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9085d000 - 0x9085dfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9085f000 - 0x90961fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x909bb000 - 0x90a3ffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90a69000 - 0x90ad7fff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90aee000 - 0x90b00fff libauto.dylib /usr/lib/libauto.dylib
    0x90b07000 - 0x90ddefff com.apple.CoreServices.CarbonCore 671.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90e44000 - 0x90ec4fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f0e000 - 0x90f4ffff com.apple.CFNetwork 10.4.3 (129.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90f64000 - 0x90f7cfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x90f8c000 - 0x9100dfff com.apple.SearchKit 1.0.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91053000 - 0x9107cfff com.apple.Metadata 10.4.3 (121.20.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9108d000 - 0x9109bfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9109e000 - 0x91260fff com.apple.security 4.2 (24844) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91363000 - 0x9136cfff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91373000 - 0x9139afff com.apple.SystemConfiguration 1.8.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x913ad000 - 0x913b5fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x913ba000 - 0x913dbfff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x913e1000 - 0x913e9fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913ed000 - 0x9146bfff com.apple.audio.CoreAudio 3.0.1 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914a9000 - 0x914a9fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914ab000 - 0x914e3fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x914fe000 - 0x915cbfff com.apple.ColorSync 4.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91620000 - 0x916b3fff com.apple.print.framework.PrintCore 4.3 (172.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x916fa000 - 0x917b7fff com.apple.QD 3.8.18 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917f5000 - 0x91853fff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91881000 - 0x918a5fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918b9000 - 0x918defff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x918f1000 - 0x91933fff com.apple.LaunchServices 10.4.5 (168) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9194f000 - 0x91963fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91971000 - 0x919aafff com.apple.ImageIO.framework 1.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x919bf000 - 0x91a85fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91ad2000 - 0x91ae7fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91aec000 - 0x91b08fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b0d000 - 0x91b7cfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91b93000 - 0x91b97fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91b99000 - 0x91bcafff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91bce000 - 0x91c11fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c18000 - 0x91c31fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c36000 - 0x91c39fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c3b000 - 0x91c3bfff com.apple.Accelerate 1.1.1 (Accelerate 1.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c3d000 - 0x91d13fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d1b000 - 0x91d3afff com.apple.Accelerate.vecLib 3.1.1 (vecLib 3.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91da6000 - 0x91e0bfff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e15000 - 0x91ea7fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91ec1000 - 0x92451fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92499000 - 0x927a9fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x927d6000 - 0x92862fff com.apple.DesktopServices 1.3.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x928a4000 - 0x92acefff com.apple.Foundation 6.4.2 (567.21) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92bec000 - 0x92ccafff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92cea000 - 0x92dd8fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92dea000 - 0x92e08fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e13000 - 0x92e6dfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92e8b000 - 0x92e8bfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92e8d000 - 0x92ea1fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92eb9000 - 0x92ec9fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ed5000 - 0x92eeafff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92efc000 - 0x92f83fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92f97000 - 0x92fa2fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92fac000 - 0x92fd9fff com.apple.openscripting 1.2.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92ff3000 - 0x93003fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9300f000 - 0x93075fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x930a6000 - 0x930f8fff com.apple.NavigationServices 3.4.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93124000 - 0x93141fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93153000 - 0x93160fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93169000 - 0x9347bfff com.apple.HIToolbox 1.4.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x935c7000 - 0x935d3fff com.apple.opengl 1.4.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93644000 - 0x93644fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93646000 - 0x93c79fff com.apple.AppKit 6.4.3 (824.23) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94005000 - 0x94074fff com.apple.CoreData 50 (77) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x940ad000 - 0x94177fff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x941cb000 - 0x941cbfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x941cd000 - 0x94345fff com.apple.QuartzCore 1.4.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9438f000 - 0x943ccfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x943d4000 - 0x94424fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945c7000 - 0x945d6fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x945de000 - 0x945eafff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9462f000 - 0x94647fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95420000 - 0x954acfff com.apple.WebKit 416.11 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95507000 - 0x955fbfff com.apple.JavaScriptCore 416.13 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x9564c000 - 0x95950fff com.apple.WebCore 416.13 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95ad5000 - 0x95afefff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9619a000 - 0x961d9fff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x99fc4000 - 0x9a108fff com.apple.helpui 144.4 /System/Library/PrivateFrameworks/HelpUI.framework/Versions/A/HelpUI
    SAFARI.CRASH.LOG:
    ===== Display starts at offset 411783 within file of length 542855. ====
    ===== Use File->Reload (Cmd-R) to display more. ====
    sis.framework/Versions/A/LangAnalysis
    0x918b9000 - 0x918defff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x918f1000 - 0x91933fff com.apple.LaunchServices 10.4.5 (168) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9194f000 - 0x91963fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91971000 - 0x919aafff com.apple.ImageIO.framework 1.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x919bf000 - 0x91a85fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91ad2000 - 0x91ae7fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91aec000 - 0x91b08fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b0d000 - 0x91b7cfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91b93000 - 0x91b97fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91b99000 - 0x91bcafff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91bce000 - 0x91c11fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c18000 - 0x91c31fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c36000 - 0x91c39fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c3b000 - 0x91c3bfff com.apple.Accelerate 1.1.1 (Accelerate 1.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c3d000 - 0x91d13fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d1b000 - 0x91d3afff com.apple.Accelerate.vecLib 3.1.1 (vecLib 3.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91da6000 - 0x91e0bfff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e15000 - 0x91ea7fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91ec1000 - 0x92451fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92499000 - 0x927a9fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x927d6000 - 0x92862fff com.apple.DesktopServices 1.3.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x928a4000 - 0x92acefff com.apple.Foundation 6.4.2 (567.21) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92bec000 - 0x92ccafff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92cea000 - 0x92dd8fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92dea000 - 0x92e08fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e13000 - 0x92e6dfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92e8b000 - 0x92e8bfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92e8d000 - 0x92ea1fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92eb9000 - 0x92ec9fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ed5000 - 0x92eeafff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92efc000 - 0x92f83fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92f97000 - 0x92fa2fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92fac000 - 0x92fd9fff com.apple.openscripting 1.2.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92ff3000 - 0x93003fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9300f000 - 0x93075fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x930a6000 - 0x930f8fff com.apple.NavigationServices 3.4.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93124000 - 0x93141fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93153000 - 0x93160fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93169000 - 0x9347bfff com.apple.HIToolbox 1.4.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x935c7000 - 0x935d3fff com.apple.opengl 1.4.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x935d8000 - 0x935f9fff com.apple.DirectoryService.Framework 3.0 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93644000 - 0x93644fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93646000 - 0x93c79fff com.apple.AppKit 6.4.3 (824.23) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94005000 - 0x94074fff com.apple.CoreData 50 (77) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x940ad000 - 0x94177fff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x941cb000 - 0x941cbfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x941cd000 - 0x94345fff com.apple.QuartzCore 1.4.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9438f000 - 0x943ccfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x943d4000 - 0x94424fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x944b4000 - 0x944ecfff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9452f000 - 0x9454bfff com.apple.securityfoundation 2.1 (24988) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9455f000 - 0x945a3fff com.apple.securityinterface 2.1 (24981) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x945c7000 - 0x945d6fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x945de000 - 0x945eafff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9462f000 - 0x94647fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94a8f000 - 0x94bbdfff com.apple.AddressBook.framework 4.0.3 (483) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94c4f000 - 0x94c5efff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94c66000 - 0x94c93fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94c9a000 - 0x94caafff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94cae000 - 0x94cdcfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94cec000 - 0x94d09fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95420000 - 0x954acfff com.apple.WebKit 416.11 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95507000 - 0x955fbfff com.apple.JavaScriptCore 416.13 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x9564c000 - 0x95950fff com.apple.WebCore 416.13 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95ad5000 - 0x95afefff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9a344000 - 0x9a377fff com.apple.Syndication 1.0.2 (42) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9a393000 - 0x9a3a3fff com.apple.SyndicationUI 1.0.2 (42) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Host Name: arthur-kegerreis-mac-mini
    Date/Time: 2006-01-07 17:02:49.797 -0800
    OS Version: 10.4.3 (Build 8F46)
    Report Version: 3
    Command: Safari
    Path: /Applications/Internet/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [55]
    Version: 2.0.2 (416.12)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 4161200
    PID: 218
    Thread: 2
    Exception: EXC_BREAKPOINT (0x0006)
    Code[0]: 0x00000001
    Code[1]: 0x928e4620
    Thread 0:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da0c CFRunLoopRunSpecific + 268
    4 com.apple.HIToolbox 0x931711e0 RunCurrentEventLoopInMode + 264
    5 com.apple.HIToolbox 0x93170874 ReceiveNextEventCommon + 380
    6 com.apple.HIToolbox 0x931b5ca4 AcquireNextEventInMode + 72
    7 com.apple.HIToolbox 0x9321b130 IsUserStillTracking(MenuSelectData*, unsigned char*) + 252
    8 com.apple.HIToolbox 0x93208370 TrackMenuCommon(MenuSelectData&, unsigned char*) + 756
    9 com.apple.HIToolbox 0x932060bc MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 188
    10 com.apple.HIToolbox 0x93205c7c MenuSelect + 100
    11 com.apple.AppKit 0x93651254 _NSHandleCarbonMenuEvent + 168
    12 com.apple.AppKit 0x9364ec84 _DPSNextEvent + 1280
    13 com.apple.AppKit 0x9364e5c8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    14 com.apple.Safari 0x00006ef0 0x1000 + 24304
    15 com.apple.AppKit 0x9364ab0c -[NSApplication run] + 472
    16 com.apple.AppKit 0x9373b618 NSApplicationMain + 452
    17 com.apple.Safari 0x0000265c 0x1000 + 5724
    18 com.apple.Safari 0x00056d1c 0x1000 + 351516
    Thread 1:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da0c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928d8664 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x928d859c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x95422870 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x928c96d4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2 Crashed:
    0 com.apple.Foundation 0x928e4620 _NSRaiseError + 264
    1 com.apple.Foundation 0x928e435c +[NSException raise:format:] + 40
    2 com.apple.Foundation 0x92907044 -[NSConcreteFileHandle readDataOfLength:] + 508
    3 com.apple.Foundation 0x92907844 -[NSHTTPCookieDiskStorage(NSInternal) _saveCookies] + 292
    4 com.apple.Foundation 0x929075ec saveTimerCallback + 96
    5 com.apple.CoreFoundation 0x90771ae0 __CFRunLoopDoTimer + 184
    6 com.apple.CoreFoundation 0x9075e458 __CFRunLoopRun + 1680
    7 com.apple.CoreFoundation 0x9075da0c CFRunLoopRunSpecific + 268
    8 com.apple.Foundation 0x928f0b9c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    9 com.apple.Foundation 0x928c96d4 forkThreadForFunction + 108
    10 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9004d70c fsync + 12
    1 com.apple.Foundation 0x92902c7c _NSWriteBytesToFile + 400
    2 com.apple.Foundation 0x92902ad8 -[NSData writeToFile:atomically:] + 104
    3 com.apple.Foundation 0x92902a30 -[NSFileManager createFileAtPath:contents:attributes:] + 88
    4 com.apple.Foundation 0x929029b4 -[NSFileManager(NSURLExtras) webcreateFileAtPathWithIntermediateDirectories:contents:attributes:directoryAttribu tes:] + 128
    5 com.apple.Foundation 0x929008d0 -[NSURLCache _diskCacheExecuteWrite:] + 348
    6 com.apple.Foundation 0x928f95e8 -[NSURLCache _diskCacheSync] + 256
    7 com.apple.CoreFoundation 0x90771ae0 __CFRunLoopDoTimer + 184
    8 com.apple.CoreFoundation 0x9075e458 __CFRunLoopRun + 1680
    9 com.apple.CoreFoundation 0x9075da0c CFRunLoopRunSpecific + 268
    10 com.apple.Foundation 0x928f1cdc +[NSURLCache _diskCacheSyncLoop:] + 152
    11 com.apple.Foundation 0x928c96d4 forkThreadForFunction + 108
    12 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9002b8a8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003001c pthreadcondwait + 488
    2 com.apple.Foundation 0x928d0840 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9a3469ec -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x928c96d4 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9001f20c select + 12
    1 com.apple.CoreFoundation 0x9077099c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2 crashed with PPC Thread State 64:
    srr0: 0x00000000928e4620 srr1: 0x000000000202f030 vrsave: 0x0000000000000000
    cr: 0x24024422 xer: 0x0000000000000007 lr: 0x00000000928e45f8 ctr: 0x00000000928a645c
    r0: 0x0000000000000000 r1: 0x00000000f0182400 r2: 0x00000000a28a4508 r3: 0x00000000f0181fb0
    r4: 0x0000000000000000 r5: 0x00000000928a5d84 r6: 0x00000000f0182034 r7: 0x00000000000000ff
    r8: 0x00000000f0182020 r9: 0x00000000053daea0 r10: 0x00000000909be648 r11: 0x0000000024024422
    r12: 0x00000000928a645c r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x00000000a28c7720 r18: 0x00000000a28c7720 r19: 0x00000000a28c7720
    r20: 0x0000000000000012 r21: 0x00000000ffffffff r22: 0x00000000053da678 r23: 0x0000000090a285cc
    r24: 0x0000000000000000 r25: 0x0000000000505000 r26: 0x0000000000412d60 r27: 0x00000000ffffffff
    r28: 0x00000000059bab20 r29: 0x00000000a28aad28 r30: 0x00000000ffffffff r31: 0x00000000928e4528
    Binary Images Description:
    0x1000 - 0xd9fff com.apple.Safari 2.0.2 (416.12) /Applications/Internet/Safari.app/Contents/MacOS/Safari
    0x548b000 - 0x548dfff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x54be000 - 0x54c4fff com.apple.DictionaryServiceComponent 1.0.0 /System/Library/Components/DictionaryService.component/Contents/MacOS/Dictionar yService
    0x8fe00000 - 0x8fe54fff dyld 44.2 /usr/lib/dyld
    0x90000000 - 0x901b3fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9020b000 - 0x90210fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x90212000 - 0x90265fff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90292000 - 0x90343fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90372000 - 0x906affff com.apple.CoreGraphics 1.256.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9073b000 - 0x90814fff com.apple.CoreFoundation 6.4.4 (368.18) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9085d000 - 0x9085dfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9085f000 - 0x90961fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x909bb000 - 0x90a3ffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90a69000 - 0x90ad7fff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90aee000 - 0x90b00fff libauto.dylib /usr/lib/libauto.dylib
    0x90b07000 - 0x90ddefff com.apple.CoreServices.CarbonCore 671.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90e44000 - 0x90ec4fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f0e000 - 0x90f4ffff com.apple.CFNetwork 10.4.3 (129.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90f64000 - 0x90f7cfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x90f8c000 - 0x9100dfff com.apple.SearchKit 1.0.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91053000 - 0x9107cfff com.apple.Metadata 10.4.3 (121.20.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9108d000 - 0x9109bfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9109e000 - 0x91260fff com.apple.security 4.2 (24844) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91363000 - 0x9136cfff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91373000 - 0x9139afff com.apple.SystemConfiguration 1.8.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x913ad000 - 0x913b5fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x913ba000 - 0x913dbfff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x913e1000 - 0x913e9fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913ed000 - 0x9146bfff com.apple.audio.CoreAudio 3.0.1 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914a9000 - 0x914a9fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914ab000 - 0x914e3fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x914fe000 - 0x915cbfff com.apple.ColorSync 4.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91620000 - 0x916b3fff com.apple.print.framework.PrintCore 4.3 (172.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x916fa000 - 0x917b7fff com.apple.QD 3.8.18 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917f5000 - 0x91853fff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91881000 - 0x918a5fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918b9000 - 0x918defff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x918f1000 - 0x91933fff com.apple.LaunchServices 10.4.5 (168) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9194f000 - 0x91963fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91971000 - 0x919aafff com.apple.ImageIO.framework 1.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x919bf000 - 0x91a85fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91ad2000 - 0x91ae7fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91aec000 - 0x91b08fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b0d000 - 0x91b7cfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91b93000 - 0x91b97fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91b99000 - 0x91bcafff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91bce000 - 0x91c11fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c18000 - 0x91c31fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c36000 - 0x91c39fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c3b000 - 0x91c3bfff com.apple.Accelerate 1.1.1 (Accelerate 1.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c3d000 - 0x91d13fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d1b000 - 0x91d3afff com.apple.Accelerate.vecLib 3.1.1 (vecLib 3.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91da6000 - 0x91e0bfff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e15000 - 0x91ea7fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91ec1000 - 0x92451fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92499000 - 0x927a9fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x927d6000 - 0x92862fff com.apple.DesktopServices 1.3.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x928a4000 - 0x92acefff com.apple.Foundation 6.4.2 (567.21) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92bec000 - 0x92ccafff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92cea000 - 0x92dd8fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92dea000 - 0x92e08fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e13000 - 0x92e6dfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92e8b000 - 0x92e8bfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92e8d000 - 0x92ea1fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92eb9000 - 0x92ec9fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ed5000 - 0x92eeafff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92efc000 - 0x92f83fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92f97000 - 0x92fa2fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92fac000 - 0x92fd9fff com.apple.openscripting 1.2.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92ff3000 - 0x93003fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9300f000 - 0x93075fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x930a6000 - 0x930f8fff com.apple.NavigationServices 3.4.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93124000 - 0x93141fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93153000 - 0x93160fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93169000 - 0x9347bfff com.apple.HIToolbox 1.4.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x935c7000 - 0x935d3fff com.apple.opengl 1.4.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x935d8000 - 0x935f9fff com.apple.DirectoryService.Framework 3.0 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93644000 - 0x93644fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93646000 - 0x93c79fff com.apple.AppKit 6.4.3 (824.23) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94005000 - 0x94074fff com.apple.CoreData 50 (77) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x940ad000 - 0x94177fff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x941cb000 - 0x941cbfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x941cd000 - 0x94345fff com.apple.QuartzCore 1.4.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9438f000 - 0x943ccfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x943d4000 - 0x94424fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x944b4000 - 0x944ecfff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9452f000 - 0x9454bfff com.apple.securityfoundation 2.1 (24988) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9455f000 - 0x945a3fff com.apple.securityinterface 2.1 (24981) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x945c7000 - 0x945d6fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x945de000 - 0x945eafff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9462f000 - 0x94647fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94a8f000 - 0x94bbdfff com.apple.AddressBook.framework 4.0.3 (483) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94c4f000 - 0x94c5efff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94c66000 - 0x94c93fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94c9a000 - 0x94caafff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94cae000 - 0x94cdcfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94cec000 - 0x94d09fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95420000 - 0x954acfff com.apple.WebKit 416.11 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95507000 - 0x955fbfff com.apple.JavaScriptCore 416.13 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x9564c000 - 0x95950fff com.apple.WebCore 416.13 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95ad5000 - 0x95afefff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9a344000 - 0x9a377fff com.apple.Syndication 1.0.2 (42) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9a393000 - 0x9a3a3fff com.apple.SyndicationUI 1.0.2 (42) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Host Name: arthur-kegerreis-mac-mini
    Date/Time: 2006-01-07 17:25:51.816 -0800
    OS Version: 10.4.3 (Build 8F46)
    Report Version: 3
    Command: Safari
    Path: /Applications/Internet/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [81]
    Version: 2.0.2 (416.13)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 4161300
    PID: 274
    Thread: 2
    Exception: EXC_BREAKPOINT (0x0006)
    Code[0]: 0x00000001
    Code[1]: 0x928e7620
    Thread 0:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da18 CFRunLoopRunSpecific + 268
    4 com.apple.HIToolbox 0x931741e0 RunCurrentEventLoopInMode + 264
    5 com.apple.HIToolbox 0x93173874 ReceiveNextEventCommon + 380
    6 com.apple.HIToolbox 0x931736e0 BlockUntilNextEventMatchingListInMode + 96
    7 com.apple.AppKit 0x93651904 _DPSNextEvent + 384
    8 com.apple.AppKit 0x936515c8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    9 com.apple.Safari 0x00007910 0x1000 + 26896
    10 com.apple.AppKit 0x9364db0c -[NSApplication run] + 472
    11 com.apple.AppKit 0x9373e618 NSApplicationMain + 452
    12 com.apple.Safari 0x0000307c 0x1000 + 8316
    13 com.apple.Safari 0x00057758 0x1000 + 354136
    Thread 1:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928db664 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x928db59c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x95426690 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x928cc6d4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2 Crashed:
    0 com.apple.Foundation 0x928e7620 _NSRaiseError + 264
    1 com.apple.Foundation 0x928e735c +[NSException raise:format:] + 40
    2 com.apple.Foundation 0x9290a044 -[NSConcreteFileHandle readDataOfLength:] + 508
    3 com.apple.Foundation 0x9290a844 -[NSHTTPCookieDiskStorage(NSInternal) _saveCookies] + 292
    4 com.apple.Foundation 0x9290a5ec saveTimerCallback + 96
    5 com.apple.CoreFoundation 0x90771aec __CFRunLoopDoTimer + 184
    6 com.apple.CoreFoundation 0x9075e464 __CFRunLoopRun + 1680
    7 com.apple.CoreFoundation 0x9075da18 CFRunLoopRunSpecific + 268
    8 com.apple.Foundation 0x928f3b9c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    9 com.apple.Foundation 0x928cc6d4 forkThreadForFunction + 108
    10 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075e114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075da18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928f4cdc +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x928cc6d4 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f20c select + 12
    1 com.apple.CoreFoundation 0x907709a8 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002b8a8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9003001c pthreadcondwait + 488
    2 com.apple.Foundation 0x928d3840 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9a3709ec -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x928cc6d4 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2 crashed with PPC Thread State 64:
    srr0: 0x00000000928e7620 srr1: 0x000000000202f030 vrsave: 0x0000000000000000
    cr: 0x24024442 xer: 0x0000000000000007 lr: 0x00000000928e75f8 ctr: 0x00000000928a945c
    r0: 0x0000000000000000 r1: 0x00000000f0182400 r2: 0x00000000a28a7508 r3: 0x00000000f0181fb0
    r4: 0x0000000000000000 r5: 0x00000000928a8d84 r6: 0x00000000f0182034 r7: 0x00000000000000ff
    r8: 0x00000000f0182020 r9: 0x00000000053db4d0 r10: 0x00000000909be648 r11: 0x0000000024024442
    r12: 0x00000000928a945c r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x00000000a28ca720 r18: 0x00000000a28ca720 r19: 0x00000000a28ca720
    r20: 0x000000000000000b r21: 0x00000000ffffffff r22: 0x00000000053daca8 r23: 0x0000000090a285cc
    r24: 0x0000000000000000 r25: 0x0000000005981000 r26: 0x0000000005a1a350 r27: 0x00000000ffffffff
    r28: 0x0000000005a19940 r29: 0x00000000a28add28 r30: 0x00000000ffffffff r31: 0x00000000928e7528
    Binary Images Description:
    0x1000 - 0xdafff com.apple.Safari 2.0.2 (416.13) /Applications/Internet/Safari.app/Contents/MacOS/Safari
    0x54a3000 - 0x54a5fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x568b000 - 0x5691fff com.apple.DictionaryServiceComponent 1.0.0 /System/Library/Components/DictionaryService.component/Contents/MacOS/Dictionar yService
    0x8fe00000 - 0x8fe54fff dyld 44.2 /usr/lib/dyld
    0x90000000 - 0x901b3fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9020b000 - 0x90210fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x90212000 - 0x90265fff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90292000 - 0x90343fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90372000 - 0x906affff com.apple.CoreGraphics 1.256.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9073b000 - 0x90814fff com.apple.CoreFoundation 6.4.4 (368.25) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9085d000 - 0x9085dfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9085f000 - 0x90961fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x909bb000 - 0x90a3ffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90a69000 - 0x90ad7fff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90aee000 - 0x90b00fff libauto.dylib /usr/lib/libauto.dylib
    0x90b07000 - 0x90ddefff com.apple.CoreServices.CarbonCore 671.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90e44000 - 0x90ec4fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f0e000 - 0x90f4ffff com.apple.CFNetwork 10.4.3 (129.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90f64000 - 0x90f7cfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x90f8c000 - 0x9100dfff com.apple.SearchKit 1.0.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91053000 - 0x9107cfff com.apple.Metadata 10.4.3 (121.20.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9108d000 - 0x9109bfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9109e000 - 0x91260fff com.apple.security 4.2 (24844) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91363000 - 0x9136cfff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91373000 - 0x9139afff com.apple.SystemConfiguration 1.8.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x913ad000 - 0x913b5fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x913ba000 - 0x913dbfff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x913e1000 - 0x913e9fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913ed000 - 0x9146bfff com.apple.audio.CoreAudio 3.0.1 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914a9000 - 0x914a9fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914ab000 - 0x914e3fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x914fe000 - 0x915cbfff com.apple.ColorSync 4.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91620000 - 0x916b3fff com.apple.print.framework.PrintCore 4.3 (172.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x916fa000 - 0x917b7fff com.apple.QD 3.8.18 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917f5000 - 0x91853fff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91881000 - 0x918a5fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis

    Sure enough, the cookies file removal got Help & Safari running again. Thanks so much!
    I think the font problem is a duplicate that wasn't resolved in Font Book. It's still displaying incorrectly on the Apple Home page. I'm not sure why changing Safari preferences for the display font to another one isn't fixing it. Tried clearingh! the cache too, that didn't make any difference.
    Does anybody know if there's a problem with setting the font prefs in Safari?
    I've seen that Font Book has duplication resolution problems, but that's another topic.
    There was a similar preferences & cookie problem with Opera, and when I removed that it worked too.
    One last related question:
    The help viewer linked me to what seemed to be a web page with instructions for more advanced Safari repair issues, including the sequence of files to remove in the Library folder. Does anybody know the URL for that? I'd like to print a copy. Or know specifically which files should be removed so I don't toss anything that could cripple it.
    Thanks!
    Mac Mini Mac OS X (10.4.3)

  • End Routine is NOT modifying the DSO with new data after load into that DSO

    Hi all,
      I am creating an End Routine for DSO to populate a field ZFCMP_FLG (to store 'Y' ) with lookup from another DSO ZMDS_D01. This new field shows blank instead of 'Y', after activating the DSO. The RESULT_PACKAGE record is populated with 'Y' for ZFCMP_FLG  while debugging that End Routine and why it is NOT writing the modified records into DSO, please ? It is a Characteristic InfoObject with length 1 to store 'Y'. The following is some part of the code:
    DATA: wa_fcmp_flag   TYPE c VALUE 'Y'.
    LOOP AT RESULT_PACKAGE ASSIGNING <RESULT_FIELDS>.
        READ TABLE it_zmds_d01 INTO wa_zmds_d01 WITH KEY
                    /BIC/ZAUFNR    = <RESULT_FIELDS>-CS_ORDER
                    NOTIFICATN     = <RESULT_FIELDS>-NOTIFICATN  BINARY SEARCH.
         IF sy-subrc = 0.
           <RESULT_FIELDS>-/BIC/ZFCMP_FLG = wa_fcmp_flg.
        ENDIF.
    ENDLOOP.
    Thanks,
    Venkat.

    hi...
    Since you are using Field symbol to loop the internal Table there is no need to use the MODIFY Statement in the loop.
    So your code is correct only.
    But here you have to check the status of READ TABLE command in the debug mode.
    it may be failing that's why the RESULT_PACKAGE is not getting modified.
    Plz check it.
    Note: You may need to SORT the Int Table since you are using BINARY SEARCH. check below.
    DATA: wa_fcmp_flag   TYPE c VALUE 'Y'.
    Sort it_zmds_d01 by  /BIC/ZAUFNR    NOTIFICATN  .
    LOOP AT RESULT_PACKAGE ASSIGNING <RESULT_FIELDS>.
        READ TABLE it_zmds_d01 INTO wa_zmds_d01 WITH KEY
                    /BIC/ZAUFNR    = <RESULT_FIELDS>-CS_ORDER
                    NOTIFICATN     = <RESULT_FIELDS>-NOTIFICATN  BINARY SEARCH.
         IF sy-subrc = 0.
           <RESULT_FIELDS>-/BIC/ZFCMP_FLG = wa_fcmp_flg.
        ENDIF.
    ENDLOOP.

  • Authorisation problem when trying to see the data after loading

    HI Everyone,
                           I loaded data in quality. when i am trying to see the data, i am getting the following messages
    1.Your user master record is not sufficiently maintained for object Authorization Object for Plant
    2.System error: RSDRC / FORM AUTHORITY_CHECK USER NOT AUTHORIZED ZCOPC_C21 ZCOPC_C21
    3.System error: RSDRC / FUNC RSDRC_BASIC_CUBE_DATA_GET ERROR IN RSDRC_BASIC_QUERY_DATA_GET ZCOPC_C21 64
    4.System error: RSDRC / FORM DATA_GET ERROR IN RSDRC_BASIC_CUBE_DATA_GET ZCOPC_C21 64
    Can any one of you tell whether it is a transport issue or some authorisation problem. Guide me how to solve this.
    Thanks in advance for your help.

    Hi,
    After you get this error goto Tcode SU53 and then you'll get the object and activity for that auth object.
    You can then go and check if this is enabled in your auth profile using SUIM tcode and going to users.
    If its enabled then you need to check for values if you have authorization to display data for that particular plant.
    This is an auth issue and you should get approval from the appropriate person in order for you to look at the Master data and then have the Security or Basis team grant you access to the same.
    Cheers,
    Kedar

  • How to populate existing data into a DFF Page

    Hi OAF Gurus,
    I have a requirement where i have to create a Search Page where for each line i should have a DFF.
    Till now i have created a Search Page where at each line i am having an Image on click on which i am navigating to one more page where i am having a DFF.
    The problem is when i click on the image i should populate all the data (if already present for the segments) but when i am doing so i am getting an Error which is as below:Current VO row is empty for flexfield
    I have checked the DFF portion through Java code and declaratively also but same error is percisting.
    If i open the Update Page directly then the DFF is rendered correcyt.
    Kindly suggest.

    Hi,
    When i am in the processFormRequest i am checking the rowCount it is showing only the rows which are available in the table.It should show the extra empty row which i had created in processRequest.
    See in the processRequest i am creatng an empty row after which in the processFormRequest i am setting the data into the empty rows.
    But everytime it is pointing to the first row.Which is quite strange as i have'nt noticed this thing in earlier implementations.The only difference what i have noticed is earlier i was using custom table but now i am using Fnd_LookUp_Values.
    Can use of Look Up table cause this issue?
    Kindly suggest.

  • SAFARI BROWSER CRASHING AFTER LOADING A PAGE

    Hi,
    We use javascript extensively with in all our pages and consistently the browser is crashing on one particular page.This page is really important for our customers.
    Here's the log that gets shown after the browser crash.Please respond
    Thanks,
    Srikanth
    Date/Time: 2006-05-26 11:14:31.070 -0700 OS Version: 10.4.3 (Build 8F46) Report Version: 3 Command: Safari Path: /Applications/Safari.app/Contents/MacOS/Safari Parent: WindowServer [1802] Version: 2.0.2 (416.13) Build Version: 1 Project Name: WebBrowser Source Version: 4161300 PID: 4662 Thread: 0 Exception: EXCBADACCESS (0x0001) Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000004 Thread 0 Crashed: 0 com.apple.WebCore 0x95c85e20 khtml::RenderTableSection::paint(khtml::RenderObject::PaintInfo&, int, int) + 124 1 com.apple.WebCore 0x95c85c10 khtml::RenderTable::paint(khtml::RenderObject::PaintInfo&, int, int) + 492 2 com.apple.WebCore 0x95c85680 khtml::RenderBlock::paintChildren(khtml::RenderObject::PaintInfo&, int, int) + 452 3 com.apple.WebCore 0x95c83d7c khtml::RenderBlock::paintObject(khtml::RenderObject::PaintInfo&, int, int) + 244 4 com.apple.WebCore 0x95c83c74 khtml::RenderBlock::paint(khtml::RenderObject::PaintInfo&, int, int) + 296 5 com.apple.WebCore 0x95c825f0 khtml::RenderLayer::paintLayer(khtml::RenderLayer*, QPainter*, QRect const&, bool, bool, khtml::RenderObject*) + 724 6 com.apple.WebCore 0x95c82714 khtml::RenderLayer::paintLayer(khtml::RenderLayer*, QPainter*, QRect const&, bool, bool, khtml::RenderObject*) + 1016 7 com.apple.WebCore 0x95c82714 khtml::RenderLayer::paintLayer(khtml::RenderLayer*, QPainter*, QRect const&, bool, bool, khtml::RenderObject*) + 1016 8 com.apple.WebCore 0x95c8229c KWQKHTMLPart::paint(QPainter*, QRect const&) + 164 9 com.apple.WebCore 0x95c821d4 -[WebCoreBridge drawRect:withPainter:] + 80 10 com.apple.WebCore 0x95c81f64 -[WebCoreBridge drawRect:] + 112 11 com.apple.WebKit 0x959e9610 -[WebHTMLView drawRect:] + 520 12 com.apple.AppKit 0x936ca628 -[NSView _drawRect:clip:] + 2128 13 com.apple.AppKit 0x936c93cc -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 736 14 com.apple.WebKit 0x959ea6c8 -[WebHTMLView(WebPrivate) _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 252 15 com.apple.AppKit 0x936c9778 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676 16 com.apple.AppKit 0x936c9778 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676 17 com.apple.AppKit 0x936c9778 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676 18 com.apple.AppKit 0x936c2e24 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 384 19 com.apple.AppKit 0x937a2cec -[NSView displayIfNeededInRectIgnoringOpacity:] + 264 20 com.apple.AppKit 0x937a2bd0 -[NSView displayRectIgnoringOpacity:] + 104 21 com.apple.WebCore 0x95cb6560 QWidget::paint(QPainter*, QRect const&) + 180 22 com.apple.WebCore 0x95cb5004 khtml::RenderWidget::paint(khtml::RenderObject::PaintInfo&, int, int) + 380 23 com.apple.WebCore 0x95d0fee8 khtml::RenderBox::paint(khtml::RenderObject::PaintInfo&, int, int) + 92 24 com.apple.WebCore 0x95c85680 khtml::RenderBlock::paintChildren(khtml::RenderObject::PaintInfo&, int, int) + 452 25 com.apple.WebCore 0x95c83d7c khtml::RenderBlock::paintObject(khtml::RenderObject::PaintInfo&, int, int) + 244 26 com.apple.WebCore 0x95c83c74 khtml::RenderBlock::paint(khtml::RenderObject::PaintInfo&, int, int) + 296 27 com.apple.WebCore 0x95c82644 khtml::RenderLayer::paintLayer(khtml::RenderLayer*, QPainter*, QRect const&, bool, bool, khtml::RenderObject*) + 808 28 com.apple.WebCore 0x95c82714 khtml::RenderLayer::paintLayer(khtml::RenderLayer*, QPainter*, QRect const&, bool, bool, khtml::RenderObject*) + 1016 29 com.apple.WebCore 0x95c8229c KWQKHTMLPart::paint(QPainter*, QRect const&) + 164 30 com.apple.WebCore 0x95c821d4 -[WebCoreBridge drawRect:withPainter:] + 80 31 com.apple.WebCore 0x95c81f64 -[WebCoreBridge drawRect:] + 112 32 com.apple.WebKit 0x959e9610 -[WebHTMLView drawRect:] + 520 33 com.apple.AppKit 0x936ca628 -[NSView _drawRect:clip:] + 2128 34 com.apple.AppKit 0x936c93cc -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 736 35 com.apple.WebKit 0x959ea6c8 -[WebHTMLView(WebPrivate) _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 252 36 com.apple.AppKit 0x936c9778 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676 37 com.apple.AppKit 0x936c9778 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676 38 com.apple.AppKit 0x936c9778 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676 39 com.apple.AppKit 0x936c9778 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676 40 com.apple.AppKit 0x936c9778 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676 41 com.apple.AppKit 0x936c9778 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676 42 com.apple.AppKit 0x936c9778 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676 43 com.apple.AppKit 0x936e9e14 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 192 44 com.apple.AppKit 0x936c2e24 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 384 45 com.apple.AppKit 0x936b8118 -[NSView displayIfNeeded] + 248 46 com.apple.AppKit 0x936b7f88 -[NSWindow displayIfNeeded] + 180 47 com.apple.Safari 0x00017cbc 0x1000 + 93372 48 com.apple.AppKit 0x936b7e34 _handleWindowNeedsDisplay + 200 49 com.apple.CoreFoundation 0x9075ccd8 __CFRunLoopDoObservers + 352 50 com.apple.CoreFoundation 0x9075cf78 __CFRunLoopRun + 420 51 com.apple.CoreFoundation 0x9075ca18 CFRunLoopRunSpecific + 268 52 com.apple.HIToolbox 0x931861e0 RunCurrentEventLoopInMode + 264 53 com.apple.HIToolbox 0x931857ec ReceiveNextEventCommon + 244 54 com.apple.HIToolbox 0x931856e0 BlockUntilNextEventMatchingListInMode + 96 55 com.apple.AppKit 0x93684904 _DPSNextEvent + 384 56 com.apple.AppKit 0x936845c8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116 57 com.apple.Safari 0x00007910 0x1000 + 26896 58 com.apple.AppKit 0x93680b0c -[NSApplication run] + 472 59 com.apple.AppKit 0x93771618 NSApplicationMain + 452 60 com.apple.Safari 0x0000307c 0x1000 + 8316 61 com.apple.Safari 0x00057758 0x1000 + 354136 Thread 1: 0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8 1 libSystem.B.dylib 0x9000b15c mach_msg + 60 2 com.apple.CoreFoundation 0x9075d114 __CFRunLoopRun + 832 3 com.apple.CoreFoundation 0x9075ca18 CFRunLoopRunSpecific + 268 4 com.apple.Foundation 0x928ed664 -[NSRunLoop runMode:beforeDate:] + 172 5 com.apple.Foundation 0x928ed59c -[NSRunLoop run] + 76 6 com.apple.WebKit 0x959d0690 +[WebFileDatabase _syncLoop:] + 176 7 com.apple.Foundation 0x928de6d4 forkThreadForFunction + 108 8 libSystem.B.dylib 0x9002b200 pthreadbody + 96 Thread 2: 0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8 1 libSystem.B.dylib 0x9000b15c mach_msg + 60 2 com.apple.CoreFoundation 0x9075d114 __CFRunLoopRun + 832 3 com.apple.CoreFoundation 0x9075ca18 CFRunLoopRunSpecific + 268 4 com.apple.Foundation 0x92905b9c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264 5 com.apple.Foundation 0x928de6d4 forkThreadForFunction + 108 6 libSystem.B.dylib 0x9002b200 pthreadbody + 96 Thread 3: 0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8 1 libSystem.B.dylib 0x9000b15c mach_msg + 60 2 com.apple.CoreFoundation 0x9075d114 __CFRunLoopRun + 832 3 com.apple.CoreFoundation 0x9075ca18 CFRunLoopRunSpecific + 268 4 com.apple.Foundation 0x92906cdc +[NSURLCache _diskCacheSyncLoop:] + 152 5 com.apple.Foundation 0x928de6d4 forkThreadForFunction + 108 6 libSystem.B.dylib 0x9002b200 pthreadbody + 96 Thread 4: 0 libSystem.B.dylib 0x9001f20c select + 12 1 com.apple.CoreFoundation 0x9076f9a8 __CFSocketManager + 472 2 libSystem.B.dylib 0x9002b200 pthreadbody + 96 Thread 5: 0 libSystem.B.dylib 0x9002b8a8 semaphorewait_signaltrap + 8 1 libSystem.B.dylib 0x9003001c pthreadcondwait + 488 2 com.apple.Foundation 0x928e5840 -[NSConditionLock lockWhenCondition:] + 68 3 com.apple.Syndication 0x9b0119ec -[AsyncDB _run:] + 192 4 com.apple.Foundation 0x928de6d4 forkThreadForFunction + 108 5 libSystem.B.dylib 0x9002b200 pthreadbody + 96 Thread 0 crashed with PPC Thread State 64: srr0: 0x0000000095c85e20 srr1: 0x100000000200f030 vrsave: 0x0000000000000000 cr: 0x44002428 xer: 0x0000000020000000 lr: 0x0000000095c85e00 ctr: 0x0000000095c85da4 r0: 0x0000000000000000 r1: 0x00000000bfffb270 r2: 0x0000000000000004 r3: 0x0000000000000000 r4: 0x0000000000000001 r5: 0x00000000000003ec r6: 0x0000000000000238 r7: 0x00000000000004aa r8: 0x0000000000000218 r9: 0x0000000000000000 r10: 0x0000000000000088 r11: 0x0000000000000004 r12: 0x0000000095c85da4 r13: 0x0000000000000000 r14: 0x00000000bfffc310 r15: 0x0000000000000001 r16: 0x0000000005af8c80 r17: 0x0000000000000238 r18: 0x00000000000003ec r19: 0x00000000000004aa r20: 0x00000000bfffb330 r21: 0x0000000000000000 r22: 0x0000000000000000 r23: 0x00000000000003ec r24: 0x0000000000000238 r25: 0x0000000000000218 r26: 0x0000000000000001 r27: 0x0000000005b4e80c r28: 0x0000000000000088 r29: 0x0000000000000002 r30: 0x0000000000000001 r31: 0x0000000095c85a30 Binary Images Description: 0x1000 - 0xdafff com.apple.Safari 2.0.2 (416.13) /Applications/Safari.app/Contents/MacOS/Safari 0x5037000 - 0x5039fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings 0x8fe00000 - 0x8fe54fff dyld 44.2 /usr/lib/dyld 0x90000000 - 0x901b3fff libSystem.B.dylib /usr/lib/libSystem.B.dylib 0x9020b000 - 0x9020ffff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib 0x90211000 - 0x90264fff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText 0x90291000 - 0x90342fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS 0x90371000 - 0x906aefff com.apple.CoreGraphics 1.256.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics 0x9073a000 - 0x90813fff com.apple.CoreFoundation 6.4.4 (368.25) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x9085c000 - 0x9085cfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x9085e000 - 0x90960fff libicucore.A.dylib /usr/lib/libicucore.A.dylib 0x909ba000 - 0x90a3efff libobjc.A.dylib /usr/lib/libobjc.A.dylib 0x90a68000 - 0x90ad6fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x90aed000 - 0x90afffff libauto.dylib /usr/lib/libauto.dylib 0x90b06000 - 0x90dddfff com.apple.CoreServices.CarbonCore 671.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore 0x90e43000 - 0x90ec3fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices 0x90f0d000 - 0x90f4efff com.apple.CFNetwork 4.0 (129.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork 0x90f63000 - 0x90f7bfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore 0x90f8b000 - 0x9100cfff com.apple.SearchKit 1.0.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit 0x91052000 - 0x9107bfff com.apple.Metadata 10.4.3 (121.20.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata 0x9108c000 - 0x9109afff libz.1.dylib /usr/lib/libz.1.dylib 0x9109d000 - 0x9125ffff com.apple.security 4.2 (24844) /System/Library/Frameworks/Security.framework/Versions/A/Security 0x91362000 - 0x9136bfff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x91372000 - 0x91399fff com.apple.SystemConfiguration 1.8.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration 0x913ac000 - 0x913b4fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib 0x913b9000 - 0x913d9fff libmx.A.dylib /usr/lib/libmx.A.dylib 0x913df000 - 0x913e7fff libbsm.dylib /usr/lib/libbsm.dylib 0x913eb000 - 0x91469fff com.apple.audio.CoreAudio 3.0.1 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x914a7000 - 0x914a7fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services 0x914a9000 - 0x914e1fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE 0x914fc000 - 0x915c9fff com.apple.ColorSync 4.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync 0x9161e000 - 0x916b1fff com.apple.print.framework.PrintCore 4.3 (172.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore 0x916f8000 - 0x917b5fff com.apple.QD 3.8.18 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD 0x917f3000 - 0x91851fff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices 0x9187f000 - 0x918a3fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis 0x918b7000 - 0x918dcfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent 0x918ef000 - 0x91931fff com.apple.LaunchServices 10.4.5 (168) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices 0x9194d000 - 0x91961fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x9196f000 - 0x919a8fff com.apple.ImageIO.framework 1.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO 0x919bd000 - 0x91a85fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib 0x91ad3000 - 0x91ae8fff libcups.2.dylib /usr/lib/libcups.2.dylib 0x91aed000 - 0x91b09fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x91b0e000 - 0x91b7dfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x91b94000 - 0x91b98fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x91b9a000 - 0x91bcbfff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib 0x91bcf000 - 0x91c12fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x91c19000 - 0x91c32fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib 0x91c37000 - 0x91c3afff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x91c3c000 - 0x91c3cfff com.apple.Accelerate 1.1.1 (Accelerate 1.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x91c3e000 - 0x91d28fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage 0x91d30000 - 0x91d4ffff com.apple.Accelerate.vecLib 3.1.1 (vecLib 3.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib 0x91dbb000 - 0x91e20fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib 0x91e2a000 - 0x91ebcfff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib 0x91ed6000 - 0x92466fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib 0x924ae000 - 0x927befff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib 0x927eb000 - 0x92877fff com.apple.DesktopServices 1.3.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv 0x928b9000 - 0x92ae3fff com.apple.Foundation 6.4.2 (567.21) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x92c01000 - 0x92cdffff libxml2.2.dylib /usr/lib/libxml2.2.dylib 0x92cff000 - 0x92dedfff libiconv.2.dylib /usr/lib/libiconv.2.dylib 0x92dff000 - 0x92e1dfff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x92e28000 - 0x92e82fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x92ea0000 - 0x92ea0fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x92ea2000 - 0x92eb6fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture 0x92ece000 - 0x92edefff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition 0x92eea000 - 0x92efffff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI 0x92f11000 - 0x92f98fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink 0x92fac000 - 0x92fb7fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help 0x92fc1000 - 0x92feefff com.apple.openscripting 1.2.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting 0x93008000 - 0x93018fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print 0x93024000 - 0x9308afff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering 0x930bb000 - 0x9310dfff com.apple.NavigationServices 3.4.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices 0x93139000 - 0x93156fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound 0x93168000 - 0x93175fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels 0x9317e000 - 0x93490fff com.apple.HIToolbox 1.4.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox 0x935dc000 - 0x935e8fff com.apple.opengl 1.4.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x935ed000 - 0x9360efff com.apple.DirectoryService.Framework 3.0 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce 0x9367a000 - 0x9367afff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x9367c000 - 0x93caffff com.apple.AppKit 6.4.3 (824.23) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x9403b000 - 0x940aafff com.apple.CoreData 50 (77) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x940e3000 - 0x941adfff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x94201000 - 0x94201fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x94203000 - 0x9437bfff com.apple.QuartzCore 1.4.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x943c5000 - 0x94402fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib 0x9440a000 - 0x9445afff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib 0x944e9000 - 0x94521fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils 0x94564000 - 0x94580fff com.apple.securityfoundation 2.1 (24988) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation 0x94594000 - 0x945d8fff com.apple.securityinterface 2.1 (24981) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face 0x945fc000 - 0x9460bfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib 0x94613000 - 0x9461ffff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib 0x94664000 - 0x9467cfff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x94ac4000 - 0x94bf2fff com.apple.AddressBook.framework 4.0.3 (483) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook 0x94c84000 - 0x94c93fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers 0x94c9b000 - 0x94cc8fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP 0x94ccf000 - 0x94cdffff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib 0x94ce3000 - 0x94d12fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib 0x94d22000 - 0x94d3ffff libresolv.9.dylib /usr/lib/libresolv.9.dylib 0x959ce000 - 0x95a5afff com.apple.WebKit 416.12 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit 0x95ab5000 - 0x95ba9fff com.apple.JavaScriptCore 416.14 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore 0x95bfa000 - 0x95efefff com.apple.WebCore 416.14 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore 0x96083000 - 0x960acfff libxslt.1.dylib /usr/lib/libxslt.1.dylib 0x96f8b000 - 0x96f98fff com.apple.JavaScriptGlue 416.9 /System/Library/PrivateFrameworks/JavaScriptGlue.framework/Versions/A/JavaScrip tGlue 0x9b00f000 - 0x9b042fff com.apple.Syndication 1.0.2 (42) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication 0x9b05e000 - 0x9b06efff com.apple.SyndicationUI 1.0.2 (42) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI Model: PowerMac12,1, BootROM 5.2.6f1, 1 processors, PowerPC G5 (3.1), 2.1 GHz, 1 GB Graphics: ATI Radeon X600 XT, ATY,RV380, PCI, 128 MB Memory Module: DIMM0/BUILT-IN, 512 MB, built-in, built-in Memory Module: DIMM1/J6700, 512 MB, DDR2 SDRAM, PC2-4200U-444 AirPort: AirPort Extreme, 402.6 (3.90.34.0.p13) Bluetooth: Version 1.6.6f22, 2 service, 1 devices, 1 incoming serial ports Network Service: Built-in Ethernet, Ethernet, en0 PCI Card: ATY,RV380, Display, PCI-E Serial ATA Device: WDC WD2500JS-40MVB1, 232.89 GB Parallel ATA Device: MATSHITADVD-R UJ-846, USB Device: Hub, , Up to 480 Mb/sec, 500 mA USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA USB Device: Apple Optical USB Mouse, Mitsumi Electric, Up to 1.5 Mb/sec, 500 mA USB Device: Bluetooth HCI, , Up to 12 Mb/sec, 500 mA USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
      Mac OS X (10.4.3)   Safari

    Hi,
    I was replying to the original poster in this case. Their crash log was for OS X 10.4.3. Since 10.4.6 includes many bugfixes in Safari and WebKit it may fix their issue.
    As you already have 10.4.6 and you mention it occurs for all websites then your problem is unlikely to be the same
    Can you post an example crash log as well?
    Also, one quick test you can do to help narrow down things is to try Safari in another user account. This will help us to know whether your problem is local to your account or system wide. If you don't have another account you can use System Preferences -> Accounts -> [+] to create a test one (and [-] to remove it if needed)

  • Browser progress bar still in processing  mode after loading the page

    Hi all,
    In my project ,I am facing one problem.
    After completion of loading page the IE browser progress bar is still showing that loading is not yet done. That means progress bar is in still processing mode.
    Can any one please tell me what is the reason behind it.
    Sujan

    Are you creating the pages dynamically with JavaScript? If you do a document.open() and then do document.write()s but forget to do a document.close(), the loading animation will continue to display.

  • Everytime i run firefox a "Mozilla" folder appears on my desktop, also after loading a page firefox seems to freeze up into a super lag thats approximatly 20sec

    Brand New Machine
    New Harddrive
    New Everything
    I downloaded Firefox, installed it now this happens.
    I have also removed and reinstalled firefox to attempt to fix.
    please help.

    ''Saurav [[#answer-702809|said]]''
    <blockquote>
    What is your operating system ? Windows or LInux?
    </blockquote>
    Look at the upper right and click '''Question details'''
    ''Phrosty [[#question-1051668|said]]''
    <blockquote>
    Everytime i run firefox a "Mozilla" folder appears
    </blockquote>
    Is it just called Mozilla? What is in the folder?
    Also, your System Details shows; Firefox 35. The current is 36.0.1
    '''[http://www.mozilla.org/en-US/firefox/all/ Download Firefox Full Installer For All languages And Systems]''' {web link}

  • How to remove data from page after submitting the page?

    Hi,
    I am using API to create person record.After submitting the create page the data are still
    showing on that page.
    How to remove data after submitting the page?
    Please suggest.
    Regards,
    Sagarika

    Abdul,
    Your solution is perfect if the UIX beans on the page do not have BC4J binding with a VO attribute, otherwise, Sumit's soution is appropriate.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for

  • Save As / File Open dialog boxes too large to use on laptop

    I have a Macbook Air and am using one of the new Apple LED Cinema Displays, although this problem was also present when I was using my older Apple Studio Display. The problem is that some of the system dialog boxes, notably File Open and Save As are

  • IE10 on Win7 and OWA 2010 can't drag and drop

    I've upgraded to IE10 for win7.  When I login to OWA for exchange 2010, I notice I can't drag and drop emails into any folders.  Compatibility mode doesn't work either.  The only way for it to work is to go into developer mode and force "Document Mod

  • SQL statement Advice Please

    Hi - Nice to see the forums back :-) Ok i have quite a complex question here, but hope some clever peep can help me out. I have a search page with four methods of searching the database. The code used on the results page is below. I've created a thre

  • File adapter: lastFiledsOptional = YES

    Hi, I have a file adapter that works fine with this setup: <u>Structure:</u>   Head,1,Line,* <u>Adapter:</u>   Head.lastFieldsOptional = YES   Line.lastFieldsOptional = YES But with this setup, i still get the message <i>java.lang.Exception: Consiste

  • Upgrading Wireless Suite to TLS 1.x and changing CBC to CTR or GCM

    To anyone who may have a solution, Is there anyone who has successfully upgraded an ISE Server, MSE 3355, WLC 5508, and/or Prime Infrastructure to rid themselves of the vulnerabilities mentioned in the title?  I have to upgrade these devices from SSL