Erratic behaviour of jsp & servlet

Hi,
I was just checking few things with passing as array from servlet to jsp
I was getting the expected output from jsp too, but when i refreshed the jsp i may or may not get the output
i.e. the output may come after 1 refresh click or it may not come even after clicking 4-5 times and it may come after 6th click.
Does it related to session in anyway?
The servlet code is,
package core;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
public class BeanTest extends HttpServlet
     String ar[]={"Ok ","This ","is ","working....! asap"};
     HttpSession hs;
     public void doGet(HttpServletRequest req,HttpServletResponse res)throws ServletException, IOException
          res.setContentType("text/html");
          hs=req.getSession(true);
          hs.setAttribute("ar",ar);
}And jsp code is
<%@ page session="true"%>
<jsp:include page="BeanTest" flush="true"/>
<%!String[] str=new String[3];
int i=0;
%>
<%str=(String[])session.getAttribute("ar");%>
Output is here <br>
<%while(i<4)
{%>
     <%=str%>
     <%
          i++;
}%>
Any idea why this is happening, im using tomcat 5.5 and jdk 1.5.
Thanks,
Harsh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

This code is just to test, how a servlet can pass an array to a jsp?
Actually i'm having some problem with a project where i want to implement this functionallity,
there i want to take some data in string array (through servlet) from database and then want to pass that array to a jsp.
You can say it was just a prototype, I don't want to put my database code to jsp, for that reason i want to implement it.

Similar Messages

  • How can i display data on tha same page in jsp/servlet

    Hello friend,
    I am storing 50 items in a dataBase. i ve two buttons/links name previous and next. i ve to display 10 items each time in the same page when i click next button and the revrese for previous. through JSP/Servlet.
    Any suggestions will be appreciated.
    chintan anand

    I'm not sure this is the best practice... try to add the item in the arraylist, then when u click next button, add 10 to the counter. subtract if it is a previous button. thats it!
    ex..
    for(int x=counter;x<=arraylist.lenght();x++)
    ....print item here......
    }

  • How to install eclipse and MyEclipse and use it for jsp-servlet-web service

    hi ,
    please help me to install eclipse 3.1 and How to integrate MyEclipse to do jsp-servlet programming and web services.
    please also help me to include application server like tomcat and axis and use that environment in MyEclipse ide.
    please help me.....

    At the time of installation , you can't change SID XE.
    After installation, you can add another service name
    Check following thread for more details
    Re: How to create service on Oracle 10g XE
    - Virag Sharma
    http://virag.sharma.googlepages.com
    http://viragsharma.blogspot.com

  • Using JSP/Servlet to write Word Document to BLOB

    Hi
    I need some help pls
    When I use a normal class with a main method, it loads the word document into a blob and I can read this 100%.Stunning.
    With a JSP/Servlet I cannot get the document out again. The "format" seems to be lost.
    Any ideas,help greatly appreciated:
    Here is the Main class that works:
    package mypackage1;
    import java.io.OutputStream;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.PrintWriter;
    import java.io.IOException;
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileReader;
    import java.io.FileNotFoundException;
    import java.io.Writer;
    import java.sql.Connection;
    import oracle.jdbc.*;
    import oracle.jdbc.OracleResultSet;
    import oracle.sql.BLOB;
    import org.apache.log4j.Logger;
    import Util_Connect.DataBase;
    public class TestLOB
    //static final Logger logger = Logger.getLogger("test");
    public TestLOB()
    public static void main(String args[])
    TestLOB testLOB = new TestLOB();
    testLOB.TestLOBInsert("c:\\my_data\\callcenterpilot.doc");
    public void TestLOBInsert(String fileName)
    Connection conn = getConnection("wizard");
    BLOB blob = null;
    try
    conn.setAutoCommit(false);
    String cmd = "SELECT * FROM so_cs.testlob WHERE docno = 1 FOR UPDATE";
    PreparedStatement pstmt = conn.prepareStatement(cmd);
    ResultSet rset = pstmt.executeQuery(cmd);
    rset.next();
    blob = ((OracleResultSet)rset).getBLOB(2);
    File binaryFile = new File(fileName);
    System.out.println("Document length = " + binaryFile.length());
    FileInputStream instream = new FileInputStream(binaryFile);
    OutputStream outstream = blob.getBinaryOutputStream();
    int size = blob.getBufferSize();
    byte[] buffer = new byte[size];
    int length = -1;
    while ((length = instream.read(buffer)) != -1)
    outstream.write(buffer, 0, length);
    instream.close();
    outstream.close();
    conn.commit();
    closeConnection(conn);
    catch (Exception ex)
    System.out.println("Error =- > "+ex.toString());
    private Connection getConnection(String dataBase)
    Connection conn = null;
    try
    DriverManager.registerDriver(new OracleDriver());
    conn = DriverManager.getConnection("jdbc:oracle:thin:@oraclu5:1600:dwz110","so_cs","so_cs");
    catch (Exception ex)
    System.out.println("Error getting conn"+ex.toString());
    return conn;
    private void closeConnection(Connection conn)
    if (conn != null)
    try
    conn.close();
    catch (Exception se)
    System.out.println("Error closing connection in get last imei"+se.toString());
    Works fine:
    Here is the display servlet: Works when main class inserts file
    package mypackage1;
    import java.io.InputStream;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.PrintWriter;
    import java.io.IOException;
    import java.io.OutputStream;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileReader;
    import java.io.FileNotFoundException;
    import java.io.Writer;
    import java.sql.Connection;
    import oracle.jdbc.*;
    import oracle.jdbc.OracleResultSet;
    import oracle.sql.BLOB;
    import org.apache.log4j.Logger;
    import Util_Connect.DataBase;
    public class DisplayLOB extends HttpServlet
    private static final String CONTENT_TYPE = "text/html; charset=windows-1252";
    static final Logger logger = Logger.getLogger(DisplayLOB.class);
    public void init(ServletConfig config) throws ServletException
    super.init(config);
    public void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
    //response.setContentType(CONTENT_TYPE);
    //PrintWriter out = response.getWriter();
    Connection conn = null;
    PreparedStatement pstmt = null;
    try
    conn = getConnection("wizard");
    //out.println("<html>");
    //out.println("<head><title>DisplayLOB</title></head>");
    //out.println("<body>");
    //out.println("<p>The servlet has received a POST. This is the reply.</p>");
    InputStream is=null;
    oracle.sql.BLOB blob=null;
    response.setContentType("application/msword");
    //response.setContentType("audio/mpeg");
    OutputStream os = response.getOutputStream();
    String term = "1";
    String query = "SELECT docdetail FROM testlob WHERE docno = 1";
    pstmt = conn.prepareStatement(query);
    ResultSet rs = pstmt.executeQuery();
    while (rs.next())
    blob=((OracleResultSet)rs).getBLOB(1);
    is=blob.getBinaryStream();
    int pos=0;
    int length=0;
    byte[] b = new byte[blob.getChunkSize()];
    while((length=is.read(b))!= -1)
    pos+=length;
    os.write(b);
    }//try
    catch (Exception se)
    se.printStackTrace();
    finally
    try
    pstmt.close();
    catch (Exception ex)
    System.out.println("Error closing pstmt "+ex.toString());
    //out.println("</body></html>");
    //out.close();
    private Connection getConnection(String dataBase)
    Connection conn = null;
    try
    conn = DataBase.getPoolConnection(dataBase);
    catch (Exception se)
    logger.fatal("Error getting connection: ",se);
    return conn;
    private void closeConnection(Connection conn)
    if (conn != null)
    try
    conn.close();
    catch (Exception se)
    logger.error("Error closing connection in get last imei",se);
    Here is JSP/Servlet
    <%@ page import="org.apache.log4j.*"%>
    <%@ page contentType="text/html; charset=ISO-8859-1" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>untitled</title>
    <title>Wizard SMS Interface</title>
    <link rel='stylesheet' type='text/css' href='main1.css'>
    <script language='JavaScript' src='copyright.js'></script>
    </head>
    <pre>
    <%
    //HTTP 1.1
    response.setHeader("Cache-Control","no-cache");
    //HTTP 1.0
    response.setHeader("Pragma","no-cache");
    //prevents caching at the proxy server
    response.setDateHeader ("Expires", 0);
    Logger logger = Logger.getLogger("co.za.mtn.wizard.administration.admin01.jsp");
    %>
    </pre>
    <body>
    <FORM ACTION="/WizardAdministration/uploadfile"
    METHOD="POST"
    ENCTYPE="multipart/form-data">
    <INPUT TYPE="FILE" NAME="example">
    <INPUT TYPE="SUBMIT" NAME="button" VALUE="Upload">
    </FORM>
    </body>
    </html>
    <font> <b>Copyright &copy;
    <script>
    var LMDate = new Date( document.lastModified );
    year = LMDate.getYear();
    document.write(display(year));
    </script>
    Mobile Telephone Networks.
    <p align="left"><i><b><font face="Georgia, Times New Roman, Times, serif" size="1"></font></b></i></p>
    package co.za.mtn.wizard.admin;
    import java.io.InputStream;
    import java.util.Enumeration;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.PrintWriter;
    import java.io.IOException;
    import java.io.OutputStream;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.io.BufferedReader;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileReader;
    import java.io.FileNotFoundException;
    import java.io.Writer;
    import java.sql.Connection;
    import oracle.jdbc.OracleResultSet;
    import oracle.sql.BLOB;
    import org.apache.log4j.Logger;
    import Util_Connect.DataBase;
    public class UploadFile extends HttpServlet
    private static final String CONTENT_TYPE = "text/html; charset=windows-1252";
    //static final Logger logger = Logger.getLogger(UploadFile.class);
    public void init(ServletConfig config) throws ServletException
    super.init(config);
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
    String headerName = null;
    Enumeration en = request.getHeaderNames();
    try
    while ( en.hasMoreElements() )
    Object ob = en.nextElement();
    headerName = ob.toString();
    System.out.println("Value for headerNAme is >"+headerName+"<");
    String aaa = request.getHeader(headerName);
    System.out.println("Value for aa is >"+aaa+"<");
    catch (Exception ex)
    System.out.println("Error in extracting request headers"+ex.toString());
    Connection conn = getConnection("wizard");
    BLOB blob = null;
    try
    conn.setAutoCommit(false);
    String cmd = "SELECT * FROM so_cs.testlob WHERE docno = 1 FOR UPDATE";
    PreparedStatement pstmt = conn.prepareStatement(cmd);
    ResultSet rset = pstmt.executeQuery(cmd);
    rset.next();
    blob = ((OracleResultSet)rset).getBLOB(2);
    //File binaryFile = new File("h:\\callcenterpilot.doc");
    //System.out.println("Document length = " + binaryFile.length());
    //FileInputStream instream = new FileInputStream(binaryFile);
    response.setHeader("Content-Type","application/vnd.ms-word");
    String contentType = request.getContentType();
    System.out.println("Content type received in servlet is >"+contentType+"<");
    ServletInputStream instream = request.getInputStream();
    OutputStream outstream = blob.getBinaryOutputStream();
    int size = blob.getBufferSize();
    byte[] buffer = new byte[size];
    int length = -1;
    while ((length = instream.read(buffer)) != -1)
    outstream.write(buffer, 0, length);
    instream.close();
    outstream.close();
    conn.commit();
    closeConnection(conn);
    response.setContentType(CONTENT_TYPE);
    PrintWriter out = response.getWriter();
    catch (Exception ex)
    System.out.println("Error =- > "+ex.toString());
    //out.println("</body></html>");
    //out.close();
    private Connection getConnection(String dataBase)
    Connection conn = null;
    try
    conn = DataBase.getPoolConnection(dataBase);
    catch (Exception se)
    System.err.println("Error getting connection: "+se.toString());
    return conn;
    private void closeConnection(Connection conn)
    if (conn != null)
    try
    conn.close();
    catch (Exception se)
    System.err.println("Error closing connection in get last imei"+se.toString());
    This is what the display servlet is showing when the JSP/Servlet insert the document
    -----------------------------7d31422224030e
    Content-Disposition: form-data; name="example"; filename="H:\(your name) Skills Matrix.doc"
    Content-Type: application/msword
    �� ࡱ � > ��     � � ���� � � ���������������������
    Tks
    Andre

    hello,
    there are multiple documents out there, describing the oracle reports server setup. try doc.oracle.com for documentation.
    also it is part of the online-documentation.
    you need to install 9iAS enterprise edition. the server is pre-configured and will listen to the url http://yourserver/dev60cgi/rwcgi60.exe
    passing only this url you will get a help-screen, describing the syntax.
    regards,
    the oracle reports team

  • How can I call EJB from JSP/Servlets in iWS?

    Hi!!
    My JSP/Servlets are on iWS, and I deploy EJB on iAS.
    In this case, I don't know how JSP/Servlet call EJb on iAS.
    I'd like to know how I can set JNDI name in JSP/Servlet on iWS.
    I will thank you if you give me a simple example source using JSP/Servlet
    and EJB.
    Thanks in advance!!!
    - Park-

    Park,
    Why Are you running your JSP/Servlets in iWS instead of iAS? For whatever
    reason,
    look at the Converter sample from iAS. You will be doing RMI/IIOP in this
    case and the sample explains in detail what to do.
    hth,
    -robert
    "SungHyun, Park" <[email protected]> wrote in message
    news:9jpfmt$[email protected]..
    Hi!!
    My JSP/Servlets are on iWS, and I deploy EJB on iAS.
    In this case, I don't know how JSP/Servlet call EJb on iAS.
    I'd like to know how I can set JNDI name in JSP/Servlet on iWS.
    I will thank you if you give me a simple example source using JSP/Servlet
    and EJB.
    Thanks in advance!!!
    - Park-

  • How to use connection pool in jsp/servlet ?

    I found I can "lookup" it in either java beans/servlets/JSP using JNDI. why?
    what is the best practice to use it in a jsp/servlet web app considering JNDI lookuping expensive?
    Thanks!
    Bo
    Edited by: BobXu on Nov 17, 2008 2:27 PM
    Edited by: BobXu on Nov 17, 2008 2:32 PM

    Huh?
    You can lookup a JNDI resource from anywhere in java code you want to. As long as you have a repository set up to search on :-)
    Of course whether that resource is available or not is a different matter. If you let the server set up the JNDI resource for you, then you can't run it standalone outside the server without something else setting the same thing up :-)
    So its not so much a limitation of beans, but just the environment you run the code in.
    Best practice? Don't write sql queries in JSP pages :-)
    For the rest you might consider the DAO pattern. Or ignore SQL altogether and let hibernate do the work there for you.
    Cheers,
    evnafets

  • How to implement this function in JSP/Servlet env?

    Hi all,
    I working on a project, it provides functionality to upload file using JSP/Servlet. In the first JSP page, there is file location and submit button. After user select a file to upload and click submit button, a message, like "sending file to XXXX", will be shown on the screen. Once uploading and validation are done on the server-side, a successful/error msg will be shown to user.
    Here I have a question for the "sending..." msg and the successful/error msg. They should be put in one jsp page or in two separate page? how to implement them?
    Thanks for any help!
    Tranquil

    For the sending message... Well, the thing is, when you click submit, it's sending the file to the server and the server is processing it, and this is all done before the "complete" page is sent to the server. So one would need to use some Javascript on the page before the actual submit happens to show some message. This is done on Ebay when you put something for sale, you can upload an image, and there is a little popup message telling you that it's uploading, and it is removed when the process is done. Now, I'm not sure the exact details of how this works, but my educated guess is this:
    1) The onsubmit function of the form checks that the file upload fields have a value (no need to popup a message if no file upload, since that's what usually takes the time, although it could just be assumed there is a file). If a file is to be uploaded, or just want to show the message anyway, a new popup window is opened with the window.open method and the "sending" message is shown (either written via Javascript or just load a small web page to the window).
    2) The popup window, since you can't transfer the window object from the form page to the next page, has to check window.opener for some value that the success/error page would have to set. The success/error page could use it's body onload function to set a variable in it's own window object to denote that the page is loaded. The popup window can use a looping check using setTimeout or setInterval in Javascript to check for window.opener.isLoadedVariable to be present, and if so, close itself.
    I've never done that, but I see no reason why it wouldn't work.

  • Upload video by using jsp/servlet

    I'm using jsp/servlet to upload video file but I have a problem.
    This error occurs for preparing SQL statement when I cast OraclePreparedStatement.
    It is " Error : weblogic.jdbc.rmi.SerialPreparedStatement
    at jsp_servlet._upload._jspService(_upload.java:185)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:263)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:200)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java:2390)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java:1959)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)"
    Please help me asap.
    Thanks

    You need to use the Oracle jdbc driver. Apparently, the Weblogic JDBC driver is being selected:
    weblogic.jdbc.rmi.SerialPreparedStatement
    The Oracle JDBC classes can be found in <ORACLE_HOME>/jdbc/lib/See <ORACLE_HOME>/jdbc/readme.txt for how to specify the correct class path in the application.
    I would have thought that the oracle JDBC driver would have been selected (if in the classpath) or an exception would be raised if the Oracle JDBC driver was not found.... because the code should include:
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    This should load the Oracle jdbc driver and classes, not the weblogic ones. IF the Oracle JDBC drivers are not found, an exception should be raised...

  • Erratic behaviour with Tiger 10.4.6

    I have installed Tiger on my B&W G3, upgraded with a ZIF G4/500 OWC upgrade.
    I did not upgrade the previous installation of Panther, but made a fresh install of Tiger on the SCSI drive connected to my Atto card.
    I am experiencing erratic behaviour from mostly all applications (after a while they either freeze, or just shut).
    I noticed that these problems are happening more often with programs
    related to communications, like Safari, Limewire, Azureus, eMule, etc.
    I have tried everything, run disk utility, DiskWarrior, Techtool Pro, but they do not seem to locate any problem with the drive (s) connected to the machine.
    Even the processor does not seem to be the cause. I check the operating temperature, and it always seems to be within the normal limits (anywhere between 40 to 48 degrees celsius, according to Mach Speed Control).
    The last time it happened with Safari, and below is what appeared in the crash log, which is obviously a lot of jibberish to me, but the right eyes will
    maybe be able to identify a problem that my knowledge does not allow me
    to see.
    The computer operates normally after startup, but after about 20/25 minutes in operation, the glitches become evident, as said above.
    The problems do not seem to affect Panther, and os 9.2.2 installed on different partitions.
    All the help will be very much appreciated. thanks
    Host Name: mauro-maitans-powermacg3series
    Date/Time: 2006-05-20 12:48:02.568 +1000
    OS Version: 10.4.6 (Build 8I127)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [56]
    Version: 2.0.3 (417.9.3)
    Build Version: 2
    Project Name: WebBrowser
    Source Version: 4170903
    PID: 271
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000808
    Thread 0 Crashed:
    0 com.apple.JavaScriptCore 0x953aefa4 KJS::PropertyMap::~PropertyMap [unified]() + 120
    1 com.apple.JavaScriptCore 0x953aeec0 KJS::ObjectImp::~ObjectImp [unified]() + 116
    2 com.apple.JavaScriptCore 0x953ae388 KJS::Collector::collect() + 208
    3 com.apple.WebCore 0x9559ec6c KJS::Window::clear(KJS::ExecState*) + 276
    4 com.apple.WebCore 0x954c5170 KHTMLPart::clear() + 188
    5 com.apple.WebCore 0x9559e970 KHTMLPart::~KHTMLPart [unified]() + 188
    6 com.apple.WebCore 0x9559e76c KWQKHTMLPart::~KWQKHTMLPart [unified]() + 860
    7 com.apple.WebCore 0x9551a3c8 KWQSignal::call() const + 116
    8 com.apple.Foundation 0x92934f5c __NSFireTimer + 116
    9 com.apple.CoreFoundation 0x907ef550 __CFRunLoopDoTimer + 184
    10 com.apple.CoreFoundation 0x907dbec8 __CFRunLoopRun + 1680
    11 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    12 com.apple.HIToolbox 0x931d8980 RunCurrentEventLoopInMode + 264
    13 com.apple.HIToolbox 0x931d7f8c ReceiveNextEventCommon + 244
    14 com.apple.HIToolbox 0x931d7e80 BlockUntilNextEventMatchingListInMode + 96
    15 com.apple.AppKit 0x936b9e84 _DPSNextEvent + 384
    16 com.apple.AppKit 0x936b9b48 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    17 com.apple.Safari 0x00006df4 0x1000 + 24052
    18 com.apple.AppKit 0x936b608c -[NSApplication run] + 472
    19 com.apple.AppKit 0x937a6bfc NSApplicationMain + 452
    20 com.apple.Safari 0x0005cb98 0x1000 + 375704
    21 com.apple.Safari 0x0005ca40 0x1000 + 375360
    Thread 1:
    0 libSystem.B.dylib 0x9000b0a8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000affc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92941164 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x9294109c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x952a33f0 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x92932194 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b0a8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000affc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x9295969c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x92932194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b0a8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000affc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x9295a7dc +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92932194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f5ec select + 12
    1 com.apple.CoreFoundation 0x907ee40c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x92939300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x98f2a50c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x92932194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000953aefa4 srr1: 0x000000000000d030 vrsave: 0x0000000000000000
    cr: 0x44028224 xer: 0x0000000000000004 lr: 0x00000000953aeec0 ctr: 0x00000000953b2854
    r0: 0x00000000000002c0 r1: 0x00000000bfffe2e0 r2: 0x000000000000009d r3: 0x0000000000000800
    r4: 0x0000000000000002 r5: 0x0000000000000000 r6: 0x00000000953e7ec4 r7: 0x00000000a53a6c60
    r8: 0x0000000000000030 r9: 0x0000000000000000 r10: 0x0000000005c89e18 r11: 0x00000000059f6908
    r12: 0x00000000953b2854 r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000001 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x0000000000000001 r21: 0x0000000000000000 r22: 0x00000000a539e2c0 r23: 0x000000000000000a
    r24: 0x0000000000000028 r25: 0x0000000000000dc1 r26: 0x0000000000000133 r27: 0x0000000005cc0f64
    r28: 0x0000000000000040 r29: 0x000000000000002c r30: 0x00000000059c5cf8 r31: 0x00000000953aee58
    Binary Images Description:
    0x1000 - 0xdafff com.apple.Safari 2.0.3 (417.9.3) /Applications/Safari.app/Contents/MacOS/Safari
    0x535000 - 0x547fff com.jokeweb.SpotlightInputManager ??? (1.0.1) /Users/mauromaitan/Library/InputManagers/SpotlightInputManager/SpotlightInputMa nager.bundle/Contents/MacOS/SpotlightInputManager
    0x54e000 - 0x54efff org.xlife.InquisitorLoader ??? (2.6.1) /Users/mauromaitan/Library/InputManagers/Inquisitor/Inquisitor.bundle/Contents/ MacOS/Inquisitor
    0x5fb000 - 0x61afff org.xlife.InquisitorCore ??? (2.6.1) /Users/mauromaitan/Library/InputManagers/Inquisitor/Inquisitor.bundle/Contents/ Resources/InquisitorCore.bundle/Contents/MacOS/InquisitorCore
    0x533f000 - 0x5341fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x8fe00000 - 0x8fe51fff dyld 44.4 /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x90267fff 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 - 0x9072cfff com.apple.CoreGraphics 1.258.30 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907b9000 - 0x90892fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908db000 - 0x908dbfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908dd000 - 0x909dffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a39000 - 0x90abdfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae7000 - 0x90b57fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b6d000 - 0x90b7ffff libauto.dylib /usr/lib/libauto.dylib
    0x90b86000 - 0x90e5dfff com.apple.CoreServices.CarbonCore 681.3 (671.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec3000 - 0x90f43fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f8d000 - 0x90fcefff com.apple.CFNetwork 4.0 (129.16) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe3000 - 0x90ffbfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100b000 - 0x9108cfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d2000 - 0x910fbfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9110c000 - 0x9111afff libz.1.dylib /usr/lib/libz.1.dylib
    0x9111d000 - 0x912d3fff com.apple.security 4.3 (25966) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913d0000 - 0x913d9fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913e0000 - 0x91407fff com.apple.SystemConfiguration 1.8.2 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9141a000 - 0x91425fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x9142a000 - 0x91432fff libbsm.dylib /usr/lib/libbsm.dylib
    0x91436000 - 0x914b1fff com.apple.audio.CoreAudio 3.0.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914ee000 - 0x914eefff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914f0000 - 0x91528fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91543000 - 0x91610fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91665000 - 0x916f6fff com.apple.print.framework.PrintCore 4.5 (177.10) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9173d000 - 0x917f4fff com.apple.QD 3.8.20 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91831000 - 0x9188ffff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918be000 - 0x918dffff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918f3000 - 0x91918fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9192b000 - 0x9196dfff com.apple.LaunchServices 178 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91989000 - 0x9199dfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919ab000 - 0x919eafff com.apple.ImageIO.framework 1.4.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a00000 - 0x91ac8fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b16000 - 0x91b2bfff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b30000 - 0x91b4dfff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b52000 - 0x91bc1fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91bd8000 - 0x91bdcfff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91bde000 - 0x91c25fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c2a000 - 0x91c67fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c6e000 - 0x91c87fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c8c000 - 0x91c8ffff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c91000 - 0x91c91fff com.apple.Accelerate 1.2.1 (Accelerate 1.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c93000 - 0x91d73fff com.apple.vImage 2.3 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d7b000 - 0x91d9afff com.apple.Accelerate.vecLib 3.2.1 (vecLib 3.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e06000 - 0x91e74fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e7f000 - 0x91f13fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f2d000 - 0x924b5fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924e8000 - 0x92813fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92843000 - 0x928cbfff com.apple.DesktopServices 1.3.3 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9290c000 - 0x92b37fff com.apple.Foundation 6.4.5 (567.26) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c55000 - 0x92d33fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d53000 - 0x92e41fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e53000 - 0x92e71fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e7c000 - 0x92ed6fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92ef4000 - 0x92ef4fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92ef6000 - 0x92f0afff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f22000 - 0x92f32fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f3e000 - 0x92f53fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f65000 - 0x92fecfff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93000000 - 0x9300bfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93015000 - 0x93042fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9305c000 - 0x9306bfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93077000 - 0x930ddfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9310e000 - 0x9315dfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9318b000 - 0x931a8fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931ba000 - 0x931c7fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x931d0000 - 0x934ddfff com.apple.HIToolbox 1.4.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9362c000 - 0x93638fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9363d000 - 0x9365dfff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x936b0000 - 0x936b0fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936b2000 - 0x93ce4fff com.apple.AppKit 6.4.6 (824.38) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94071000 - 0x940e1fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9411a000 - 0x941ddfff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9422f000 - 0x9422ffff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94231000 - 0x943e5fff com.apple.QuartzCore 1.4.7 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94438000 - 0x94475fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9447d000 - 0x944cdfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9455d000 - 0x94595fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x945d8000 - 0x945f4fff com.apple.securityfoundation 2.1 (24988) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94608000 - 0x9464cfff com.apple.securityinterface 2.1 (24981) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94670000 - 0x9467ffff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94687000 - 0x94694fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x946da000 - 0x946f3fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x947de000 - 0x947fefff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94906000 - 0x94a34fff com.apple.AddressBook.framework 4.0.3 (483) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94ac6000 - 0x94ad5fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94add000 - 0x94b0afff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94b11000 - 0x94b21fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94b25000 - 0x94b54fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94b64000 - 0x94b81fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95270000 - 0x95298fff libcurl.3.dylib /usr/lib/libcurl.3.dylib
    0x952a1000 - 0x9532dfff com.apple.WebKit 418 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95388000 - 0x9547dfff com.apple.JavaScriptCore 417.11 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x954b9000 - 0x957c3fff com.apple.WebCore 417.24 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9594b000 - 0x95974fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x98f27000 - 0x98f5dfff com.apple.Syndication 1.0.5 (52) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x98f7a000 - 0x98f8cfff com.apple.SyndicationUI 1.0.5 (52) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Host Name: mauro-maitans-powermacg3series
    Date/Time: 2006-05-20 17:13:52.876 +1000
    OS Version: 10.4.6 (Build 8I127)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [56]
    Version: 2.0.3 (417.9.3)
    Build Version: 2
    Project Name: WebBrowser
    Source Version: 4170903
    PID: 282
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000800
    Thread 0 Crashed:
    0 com.apple.WebCore 0x95535688 khtml::RenderFlow::deleteLineBoxes() + 52
    1 com.apple.WebCore 0x9559c1a0 khtml::RenderFlow::detach() + 300
    2 com.apple.WebCore 0x95579b90 DOM::NodeImpl::detach() + 48
    3 com.apple.WebCore 0x95579b40 DOM::NodeBaseImpl::detach() + 56
    4 com.apple.WebCore 0x95579b40 DOM::NodeBaseImpl::detach() + 56
    5 com.apple.WebCore 0x95579b40 DOM::NodeBaseImpl::detach() + 56
    6 com.apple.WebCore 0x95579b40 DOM::NodeBaseImpl::detach() + 56
    7 com.apple.WebCore 0x95579b40 DOM::NodeBaseImpl::detach() + 56
    8 com.apple.WebCore 0x95579b40 DOM::NodeBaseImpl::detach() + 56
    9 com.apple.WebCore 0x95579b40 DOM::NodeBaseImpl::detach() + 56
    10 com.apple.WebCore 0x95579b40 DOM::NodeBaseImpl::detach() + 56
    11 com.apple.WebCore 0x95579b40 DOM::NodeBaseImpl::detach() + 56
    12 com.apple.WebCore 0x95579b40 DOM::NodeBaseImpl::detach() + 56
    13 com.apple.WebCore 0x95579b40 DOM::NodeBaseImpl::detach() + 56
    14 com.apple.WebCore 0x95579b40 DOM::NodeBaseImpl::detach() + 56
    15 com.apple.WebCore 0x9559bfe8 DOM::DocumentImpl::detach() + 128
    16 com.apple.WebCore 0x955e27bc -[KWQPageState dealloc] + 100
    17 com.apple.CoreFoundation 0x907d22c0 __CFDictionaryDeallocate + 552
    18 com.apple.CoreFoundation 0x907bbf34 _CFRelease + 240
    19 com.apple.Foundation 0x9290e968 NSPopAutoreleasePool + 536
    20 com.apple.Foundation 0x92934fe0 __NSFireTimer + 248
    21 com.apple.CoreFoundation 0x907ef550 __CFRunLoopDoTimer + 184
    22 com.apple.CoreFoundation 0x907dbec8 __CFRunLoopRun + 1680
    23 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    24 com.apple.HIToolbox 0x931d8980 RunCurrentEventLoopInMode + 264
    25 com.apple.HIToolbox 0x931d8014 ReceiveNextEventCommon + 380
    26 com.apple.HIToolbox 0x931d7e80 BlockUntilNextEventMatchingListInMode + 96
    27 com.apple.AppKit 0x936b9e84 _DPSNextEvent + 384
    28 com.apple.AppKit 0x936b9b48 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    29 com.apple.Safari 0x00006df4 0x1000 + 24052
    30 com.apple.AppKit 0x936b608c -[NSApplication run] + 472
    31 com.apple.AppKit 0x937a6bfc NSApplicationMain + 452
    32 com.apple.Safari 0x0005cb98 0x1000 + 375704
    33 com.apple.Safari 0x0005ca40 0x1000 + 375360
    Thread 1:
    0 libSystem.B.dylib 0x9000b0a8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000affc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92941164 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x9294109c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x952a33f0 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x92932194 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b0a8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000affc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x9295969c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x92932194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b0a8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000affc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x9295a7dc +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92932194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f5ec select + 12
    1 com.apple.CoreFoundation 0x907ee40c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x92939300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x98f2a50c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x92932194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x92939300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.AppKit 0x93756aac -[NSUIHeartBeat _heartBeatThread:] + 324
    4 com.apple.Foundation 0x92932194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000095535688 srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x44024224 xer: 0x0000000000000004 lr: 0x00000000955356a4 ctr: 0x000000009575e5e8
    r0: 0x0000000004bc711c r1: 0x00000000bfffdba0 r2: 0x0000000004fe6434 r3: 0x0000000004fe63d0
    r4: 0x0000000000000067 r5: 0x0000000004bc71c4 r6: 0x00000000ffffffff r7: 0x00000000a554fbec
    r8: 0x0000000000000001 r9: 0x00000000048fef08 r10: 0x000000009575e5f0 r11: 0x0000000024024224
    r12: 0x000000009575e5e8 r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x0000000000000001
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x000000000000c173 r19: 0x0000000000000000
    r20: 0x0000000015c77910 r21: 0x000000004edddb15 r22: 0x0000000000412a58 r23: 0x000000000570f750
    r24: 0x0000000000000005 r25: 0x0000000000000000 r26: 0x00000000a07b9150 r27: 0x00000000a07bb458
    r28: 0x0000000004fe63d0 r29: 0x0000000000000800 r30: 0x0000000004b41e3c r31: 0x00000000955e2758
    Binary Images Description:
    0x1000 - 0xdafff com.apple.Safari 2.0.3 (417.9.3) /Applications/Safari.app/Contents/MacOS/Safari
    0x1fa000 - 0x1fcfff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x535000 - 0x547fff com.jokeweb.SpotlightInputManager ??? (1.0.1) /Users/mauromaitan/Library/InputManagers/SpotlightInputManager/SpotlightInputMa nager.bundle/Contents/MacOS/SpotlightInputManager
    0x54e000 - 0x54efff org.xlife.InquisitorLoader ??? (2.6.1) /Users/mauromaitan/Library/InputManagers/Inquisitor/Inquisitor.bundle/Contents/ MacOS/Inquisitor
    0x552000 - 0x571fff org.xlife.InquisitorCore ??? (2.6.1) /Users/mauromaitan/Library/InputManagers/Inquisitor/Inquisitor.bundle/Contents/ Resources/InquisitorCore.bundle/Contents/MacOS/InquisitorCore
    0x60cf000 - 0x60e9fff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x611f000 - 0x6174fff com.DivXInc.DivXDecoder 6.0.0 /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x6182000 - 0x61bffff com.apple.QuickTimeFireWireDV.component 7.1 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x61ca000 - 0x6243fff com.apple.applepixletvideo 1.2.5 (1.2d5) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x628e000 - 0x62a7fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x66ff000 - 0x68effff com.macromedia.Flash Player.plugin 8.0.24 (1.0.1f24) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x7a18000 - 0x7b27fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x7b56000 - 0x7bbefff com.apple.ATIRage128GLDriver 1.4.4 (4.0.4) /System/Library/Extensions/ATIRage128GLDriver.bundle/Contents/MacOS/ATIRage128G LDriver
    0x7bc2000 - 0x7bddfff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x8ec5c000 - 0x8ec5ffff com.apple.QuickTimeH264.component 7.1 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x8ed5b000 - 0x8f731fff com.apple.QuickTimeComponents.component 7.1 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x8fa73000 - 0x8fd27fff com.apple.QuickTime 7.1.0 /System/Library/Frameworks/QuickTime.framework/QuickTime
    0x8fe00000 - 0x8fe51fff dyld 44.4 /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x90267fff 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 - 0x9072cfff com.apple.CoreGraphics 1.258.30 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907b9000 - 0x90892fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908db000 - 0x908dbfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908dd000 - 0x909dffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a39000 - 0x90abdfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae7000 - 0x90b57fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b6d000 - 0x90b7ffff libauto.dylib /usr/lib/libauto.dylib
    0x90b86000 - 0x90e5dfff com.apple.CoreServices.CarbonCore 681.3 (671.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec3000 - 0x90f43fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f8d000 - 0x90fcefff com.apple.CFNetwork 4.0 (129.16) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe3000 - 0x90ffbfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100b000 - 0x9108cfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d2000 - 0x910fbfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9110c000 - 0x9111afff libz.1.dylib /usr/lib/libz.1.dylib
    0x9111d000 - 0x912d3fff com.apple.security 4.3 (25966) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913d0000 - 0x913d9fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913e0000 - 0x91407fff com.apple.SystemConfiguration 1.8.2 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9141a000 - 0x91425fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x9142a000 - 0x91432fff libbsm.dylib /usr/lib/libbsm.dylib
    0x91436000 - 0x914b1fff com.apple.audio.CoreAudio 3.0.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914ee000 - 0x914eefff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914f0000 - 0x91528fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91543000 - 0x91610fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91665000 - 0x916f6fff com.apple.print.framework.PrintCore 4.5 (177.10) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9173d000 - 0x917f4fff com.apple.QD 3.8.20 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91831000 - 0x9188ffff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918be000 - 0x918dffff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918f3000 - 0x91918fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9192b000 - 0x9196dfff com.apple.LaunchServices 178 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91989000 - 0x9199dfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919ab000 - 0x919eafff com.apple.ImageIO.framework 1.4.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a00000 - 0x91ac8fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b16000 - 0x91b2bfff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b30000 - 0x91b4dfff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b52000 - 0x91bc1fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91bd8000 - 0x91bdcfff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91bde000 - 0x91c25fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c2a000 - 0x91c67fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c6e000 - 0x91c87fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c8c000 - 0x91c8ffff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c91000 - 0x91c91fff com.apple.Accelerate 1.2.1 (Accelerate 1.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c93000 - 0x91d73fff com.apple.vImage 2.3 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d7b000 - 0x91d9afff com.apple.Accelerate.vecLib 3.2.1 (vecLib 3.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e06000 - 0x91e74fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e7f000 - 0x91f13fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f2d000 - 0x924b5fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924e8000 - 0x92813fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92843000 - 0x928cbfff com.apple.DesktopServices 1.3.3 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9290c000 - 0x92b37fff com.apple.Foundation 6.4.5 (567.26) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c55000 - 0x92d33fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d53000 - 0x92e41fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e53000 - 0x92e71fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e7c000 - 0x92ed6fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92ef4000 - 0x92ef4fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92ef6000 - 0x92f0afff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f22000 - 0x92f32fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f3e000 - 0x92f53fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f65000 - 0x92fecfff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93000000 - 0x9300bfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93015000 - 0x93042fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9305c000 - 0x9306bfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93077000 - 0x930ddfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9310e000 - 0x9315dfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9318b000 - 0x931a8fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931ba000 - 0x931c7fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x931d0000 - 0x934ddfff com.apple.HIToolbox 1.4.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9362c000 - 0x93638fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9363d000 - 0x9365dfff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93675000 - 0x936a5fff com.apple.MediaKit 8.6.1 (345.1.7) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x936b0000 - 0x936b0fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x936b2000 - 0x93ce4fff com.apple.AppKit 6.4.6 (824.38) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94071000 - 0x940e1fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9411a000 - 0x941ddfff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9422f000 - 0x9422ffff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94231000 - 0x943e5fff com.apple.QuartzCore 1.4.7 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94438000 - 0x94475fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9447d000 - 0x944cdfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9450d000 - 0x94551fff com.apple.bom 8.4 (86.2) /System/Library/PrivateFrameworks/Bom.framework/Bom
    0x9455d000 - 0x94595fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x945d8000 - 0x945f4fff com.apple.securityfoundation 2.1 (24988) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94608000 - 0x9464cfff com.apple.securityinterface 2.1 (24981) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94670000 - 0x9467ffff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94687000 - 0x94694fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x946da000 - 0x946f3fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x946fa000 - 0x9476bfff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x947de000 - 0x947fefff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94906000 - 0x94a34fff com.apple.AddressBook.framework 4.0.3 (483) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94ac6000 - 0x94ad5fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94add000 - 0x94b0afff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94b11000 - 0x94b21fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94b25000 - 0x94b54fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94b64000 - 0x94b81fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94f7a000 - 0x94f7afff com.apple.DiscRecording 3.1.2 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x94f7c000 - 0x94ffffff com.apple.DiscRecordingEngine 3.1.2 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x9502c000 - 0x95072fff com.apple.DiscRecordingContent 3.1.2 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x95270000 - 0x95298fff libcurl.3.dylib /usr/lib/libcurl.3.dylib
    0x952a1000 - 0x9532dfff com.apple.WebKit 418 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95388000 - 0x9547dfff com.apple.JavaScriptCore 417.11 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x954b9000 - 0x957c3fff com.apple.WebCore 417.24 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9594b000 - 0x95974fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9606a000 - 0x9606bfff libCyrillicConverter.dylib /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0x9606d000 - 0x9606efff libGreekConverter.dylib /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0x96073000 - 0x96089fff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x9608b000 - 0x960abfff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x960b9000 - 0x960c7fff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x960cc000 - 0x960cdfff libThaiConverter.dylib /System/Library/CoreServices/Encodings/libThaiConverter.dylib
    0x960cf000 - 0x960e2fff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x96b08000 - 0x96b27fff com.apple.vecLib 3.2.1 (vecLib 3.2.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9723e000 - 0x972fffff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9732a000 - 0x9732bfff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x9732d000 - 0x9733afff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x982c1000 - 0x983c9fff com.apple.DiskImagesFramework 10.4.3 (112.5) /System/Library/PrivateFrameworks/DiskImages.framework/DiskImages
    0x98446000 - 0x98453fff libbz2.1.0.dylib /usr/lib/libbz2.1.0.dylib
    0x98f27000 - 0x98f5dfff com.apple.Syndication 1.0.5 (52) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x98f7a000 - 0x98f8cfff com.apple.SyndicationUI 1.0.5 (52) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Host Name: mauro-maitans-powermacg3series
    Date/Time: 2006-05-20 17:18:48.820 +1000
    OS Version: 10.4.6 (Build 8I127)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [56]
    Version: 2.0.3 (417.9.3)
    Build Version: 2
    Project Name: WebBrowser
    Source Version: 4170903
    PID: 340
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000800
    Thread 0 Crashed:
    0 com.apple.WebCore 0x95541438 khtml::RenderObject::updateWidgetPositions() + 40
    1 com.apple.WebCore 0x9554144c khtml::RenderObject::updateWidgetPositions() + 60
    2 com.apple.WebCore 0x9554144c khtml::RenderObject::updateWidgetPositions() + 60
    3 com.apple.WebCore 0x9554144c khtml::RenderObject::updateWidgetPositions() + 60
    4 com.apple.WebCore 0x9554144c khtml::RenderObject::updateWidgetPositions() + 60
    5 com.apple.WebCore 0x9554144c khtml::RenderObject::updateWidgetPositions() + 60
    6 com.apple.WebCore 0x9554144c khtml::RenderObject::updateWidgetPositions() + 60
    7 com.apple.WebCore 0x9554144c khtml::RenderObject::updateWidgetPositions() + 60
    8 com.apple.WebCore 0x9554144c khtml::RenderObject::updateWidgetPositions() + 60
    9 com.apple.WebCore 0x9554144c khtml::RenderObject::updateWidgetPositions() + 60
    10 com.apple.WebCore 0x9554144c khtml::RenderObject::updateWidgetPositions() + 60
    11 com.apple.WebCore 0x9554144c khtml::RenderObject::updateWidgetPositions() + 60
    12 com.apple.WebCore 0x9554144c khtml::RenderObject::updateWidgetPositions() + 60
    13 com.apple.WebCore 0x9552ddc0 KHTMLView::layout() + 1016
    14 com.apple.WebCore 0x95540870 -[WebCoreBridge forceLayoutAdjustingViewSize:] + 56
    15 com.apple.WebKit 0x952bbdc0 -[WebHTMLView layoutToMinimumPageWidth:maximumPageWidth:adjustingViewSize:] + 228
    16 com.apple.WebKit 0x952b930c -[WebHTMLView(WebPrivate) weblayoutIfNeededRecursive:testDirtyRect:] + 196
    17 com.apple.WebKit 0x952bd2d8 -[WebHTMLView(WebPrivate) _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 164
    18 com.apple.AppKit 0x936fed48 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    19 com.apple.AppKit 0x936fed48 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    20 com.apple.AppKit 0x936fed48 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    21 com.apple.AppKit 0x936fed48 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    22 com.apple.AppKit 0x936fed48 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    23 com.apple.AppKit 0x936fed48 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    24 com.apple.AppKit 0x936fed48 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    25 com.apple.AppKit 0x9371f3e4 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 192
    26 com.apple.AppKit 0x936f83f4 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 384
    27 com.apple.AppKit 0x936ed6e8 -[NSView displayIfNeeded] + 248
    28 com.apple.AppKit 0x936ed558 -[NSWindow displayIfNeeded] + 180
    29 com.apple.Safari 0x0001ac30 0x1000 + 105520
    30 com.apple.AppKit 0x936ed404 _handleWindowNeedsDisplay + 200
    31 com.apple.CoreFoundation 0x907db73c __CFRunLoopDoObservers + 352
    32 com.apple.CoreFoundation 0x907db9dc __CFRunLoopRun + 420
    33 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    34 com.apple.HIToolbox 0x931d8980 RunCurrentEventLoopInMode + 264
    35 com.apple.HIToolbox 0x931d8014 ReceiveNextEventCommon + 380
    36 com.apple.HIToolbox 0x931d7e80 BlockUntilNextEventMatchingListInMode + 96
    37 com.apple.AppKit 0x936b9e84 _DPSNextEvent + 384
    38 com.apple.AppKit 0x936b9b48 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    39 com.apple.Safari 0x00006df4 0x1000 + 24052
    40 com.apple.AppKit 0x936b608c -[NSApplication run] + 472
    41 com.apple.AppKit 0x937a6bfc NSApplicationMain + 452
    42 com.apple.Safari 0x0005cb98 0x1000 + 375704
    43 com.apple.Safari 0x0005ca40 0x1000 + 375360
    Thread 1:
    0 libSystem.B.dylib 0x9000b0a8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000affc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92941164 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x9294109c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x952a33f0 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x92932194 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b0a8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000affc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x9295969c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x92932194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b0a8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000affc mach_msg + 60
    2 com.apple.CoreFoundation 0x907dbb78 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907db47c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x9295a7dc +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92932194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f5ec select + 12
    1 com.apple.CoreFoundation 0x907ee40c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x92939300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x98f2a50c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x92932194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000095541438 srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x24022244 xer: 0x0000000000000002 lr: 0x000000009554144c ctr: 0x0000000095758edc
    r0: 0x000000009554144c r1: 0x00000000bfffd7f0 r2: 0x00000000a54d8d20 r3: 0x0000000000000000
    r4: 0x00000000bfffd7b0 r5: 0x00000000000002d4 r6: 0x00000000000000aa r7: 0x0000000000000012
    r8: 0x00000000bfffd360 r9: 0x0000000000000001 r10: 0x0000000056646142 r11: 0x0000000024022242
    r12: 0x0000000095758edc r13: 0x0000000000000000 r14: 0x00000000bfffdf00 r15: 0x0000000000000000
    r16: 0x00000000004ac430 r17: 0x0000000000000000 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x0000000015c77910 r21: 0x0000000000000001 r22: 0x0000000000000002 r23: 0x0000000000000000
    r24: 0x00000000a36ef324 r25: 0x00000000004ac430 r26: 0x0000000000000000 r27: 0x00000000049db030
    r28: 0x00000000004f5800 r29: 0x00000000000002cc r30: 0x0000000000000800 r31: 0x000000009552d9d4
    Binary Images Description:
    0x1000 - 0xdafff com.apple.Safari 2.0.3 (417.9.3) /Applications/Safari.app/Contents/MacOS/Safari
    0x535000 - 0x547fff com.jokeweb.SpotlightInputManager ??? (1.0.1) /Users/mauromaitan/Library/InputManagers/SpotlightInputManager/SpotlightInputMa nager.bundle/Contents/MacOS/SpotlightInputManager
    0x54e000 - 0x54efff org.xlife.InquisitorLoader ??? (2.6.1) /Users/mauromaitan/Library/InputManagers/Inquisitor/Inquisitor.bundle/Contents/ MacOS/Inquisitor
    0x552000 - 0x571fff org.xlife.InquisitorCore ??? (2.6.1) /Users/mauromaitan/Library/InputManagers/Inquisitor/Inquisitor.bundle/Contents/ Resources/InquisitorCore.bundle/Contents/MacOS/InquisitorCore
    0x7eb000 - 0x7edfff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x8fe00000 - 0x8fe51fff dyld 44.4 /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x90267fff 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 - 0x9072cfff com.apple.CoreGraphics 1.258.30 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907b9000 - 0x90892fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908db000 - 0x908dbfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908dd000 - 0x909dffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a39000 - 0x90abdfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae7000 - 0x90b57fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b6d000 - 0x90b7ffff libauto.dylib /usr/lib/libauto.dylib
    0x90b86000 - 0x90e5dfff com.apple.CoreServices.CarbonCore 681.3 (671.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec3000 - 0x90f43fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f8d000 - 0x90fcefff com.apple.CFNetwork 4.0 (129.16) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe3000 - 0x90ffbfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100b000 - 0x9108cfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d2000 - 0x910fbfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9110c000 - 0x9111afff libz.1.dylib /usr/lib/libz.1.dylib
    0x9111d000 - 0x912d3fff com.apple.security 4.3 (25966) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913d0000 - 0x913d9fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913e0000 - 0x91407fff com.apple.SystemConfiguration 1.8.2 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9141a000 - 0x91425fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x9142a000 - 0x91432fff libbsm.dylib /usr/lib/libbsm.dylib
    0x91436000 - 0x914b1fff com.apple.audio.CoreAudio 3.0.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914ee000 - 0x914eefff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914f0000 - 0x91528fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91543000 - 0x91610fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91665000 - 0x916f6fff com.apple.print.framework.PrintCore 4.5 (177.10) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9173d000 - 0x917f4fff com.apple.QD 3.8.20 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91831000 - 0x9188ffff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918be000 - 0x918dffff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918f3000 - 0x91918fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9192b000 - 0x9196dfff com.apple.LaunchServices 178 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91989000 - 0x9199dfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919ab000 - 0x919eafff com.apple.ImageIO.framework 1.4.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a00000 - 0x91ac8fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b16000 - 0x91b2bfff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b30000 - 0x91b4dfff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b52000 - 0x91bc1fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91bd8000 - 0x91bdcfff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91bde000 - 0x91c25fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c2a000 - 0x91c67fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c6e000 - 0x91c87fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c8c000 - 0x91c8ffff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c91000 - 0x91c91fff com.apple.Accelerate 1.2.1 (Accelerate 1.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c93000 - 0x91d73fff com.apple.vImage 2.3 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d7b000 - 0x91d9afff com.apple.Accelerate.vecLib 3.2.1 (vecLib 3.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e06000 - 0x91e74fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e7f000 - 0x91f13fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f2d000 - 0x924b5fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924e8000 - 0x92813fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92843000 - 0x928cbfff com.apple.DesktopServices 1.3.3 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9290c000 - 0x92b37fff com.apple.Foundation 6.4.5 (567.26) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c55000 - 0x92d33fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d53000 - 0x92e41fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e53000 - 0x92e71fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e7c000 - 0x92ed6fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92ef4000 - 0x92ef4fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92ef6000 - 0x92f0afff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f22000 - 0x92f32fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f3e000 - 0x92f53fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f65000 - 0x92fecfff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93000000 - 0x9300bfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93015000 - 0x93042fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9305c000 - 0x9306bfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/C

    Andy,
    thanks for the suggestion. I followed your advice and eliminated the two "intruders", and then also re-installed the 10.4.6 PPC Combo updatem but
    all this did not solve the problem.
    As I said, the computer behaves erratically with all apps afte prolonged use.
    Tonight I was using Garageband, and it started freezing. Mind you I only had three tracks in there, two of which locked, and not many effects used.
    The Safari crash.log I attached was just an example for Safari, but the behaviour extends to all other apps, with different inclinations:
    - "coloured" spinning wheel even when there is not much to do or process;
    - excessive waiting for absolutely normal operations (like copying a file
    from one place to another);
    - sudden freezing;
    - As another example, last night my back/forward buttons on the Microsoft
    mouse stopped working. It was enough to restart and everything went
    back to normal.
    I have scanned the disks (all disks and partition) with any imaginable tool you can think off, but nothing turns up.
    After a freeze or strange behaviour, if I restart in single user mode and run a
    /sbin/fsck -f, when I do /sbin/mount -uw /, the system tells me it has eliminated a number of unlinked orphaned files (1,2,3, it depends).
    I am really puzzled.
    thanks

  • File upload and download using jsp/servlets

    How to upload any file to the server using jsp/servlets. . Help me out

    You can also try the Jenkov HTTP Multipart File Upload. It's a servlet filter that is easy to add to your web-project. After adding it, you can access both request parameters and the uploaded files easily. It's more transparent than Apache Commons File Upload. There is sufficient documentation to get you started, and there is a forum if you have any questions.
    Jenkov HTTP Multipart File Upload is available under the Apache license, meaning its free to use.

  • Separate jsp/servlets from EJBs for petstore

    By default, petstore deploy all the web apps and EJBs in one ear. I am trying to
    separate the JSP/servlets to deploy to diffent machine. I need to modify the client
    InitialContext to point to the remote server. I took a look at the source and
    there are many places using the default constructor of InitialContext to load
    the default URL. I wrote a jndi.properties file that has the correct url and put
    this to the classpath. I know this file needs to be put to the working directory,
    too. In case of pet store web application, what should be the working directory?
    Thanks, Cathy

    I'm also interested in running the Pet Store application server and the database
    (Oracle prefered) on different systems.
    Is this configurable during runtime or does it require code modification, compilation
    and deployment?
    Thanks,
    TL

  • Is there any JSP/servlet opensource project like phpMyAdmin?

    Is there any JSP/servlet opensource project existed which is designed to manipulate the database MySQL such as phpMyAdmin?
    I would like to gain the source code and reference to its design pattern.

    I don't know about PHPMYAdmin but MySqlAdmin can do any job you need
    http://www.skillipedia.com

  • Jsp / Servlet / bean / upload

    Hello,
    I use a jsp to enter several fields. These fields are sent to a servlet by using a bean (recorded in the current session). Until now there is no problem. The servlet receives all information. Now I must also send 5 files which must be stored on the server. I have thus to add in my jsp 5 file fields.
    My question :
    Is it possible to integrate the FileUpload package for uploader my files without anything to change in my code (by using of a bean to exchange the data between my jsp and my servlet). ??
    In other words, it is possible to use my bean to also transport files. ??
    Tank u for u help

    Yes it is possible..
    download cos.jar from www.oreily.com for file upload..
    it will read dat from the form as two parts ..
    parameter part and file part..
    and you can implement it throgh a servlet easily..
    for more follow oreily JSP/servlets Cookbook

  • Jsp,servlet,bean question,please help

    The Tomcat Web server set up like this.......
    The directory structure is
    e:/sampleapp/WEB-INF/classes
    /lib
    And the web.xml is in the WEB-INF for the use of ay potential servlet.
    The basic understanding is that all the .java files go into the WEB-INF directory and the .class files go into the classes directory.
    All the .jsp files go into the sampleapp directory.Till here is correct I feel.
    Now for my qustion......
    I plan to use jsp,servlet and beans for a potential web application...,where do all these files go?,just the same as above or is there a difference.
    Hope that I have given a reasonable explaination to my question.
    Thanks for any replies
    AS

    All of your compiled servlet and java bean (java
    classes in general) will be placed into the following
    directory (under a directory structure matching the
    java package they are in):
    e:/sampleapp/WEB-INF/classesAll of your .jar files that are used as libraries (not
    your .jar files for applets):
    e:/sampleapp/WEB-INF/libAll of the rest of your JSP files, javascript files,
    HTML files, JAR files, images files, etc. will go into
    the following directory:
    e:/sampleappYou must make sure you put your sampleapp directory
    where tomcat can load it. Or use the admin tool to
    load it. If you make a .WAR file with a corresponding
    web.xml file in it, it will simplify loading it into
    tomcat. It also will help you do your servlet
    mappings, etc. I hope this helps.Thanks for your timely response.To add to it,let me tell you.
    The <b>bean</b> files are put into a package right,so they should be put into the WEB-INF/classes/<package name>
    What about The <b> servlet </b> files...... they are just put into the WEB-INF/classes/ directory????
    Kindly let me know.
    Thanks
    AS

  • JSP- Servlet-- Bean-- JSP how to implement

    I have problem.
    My JSP will take a emplyee id .
    Now I want to show all the values regarding that employee in a JSP(JSP form) from the DB(Oracle).
    So Iam planning like
    JSP-->Servlet-->Bean-->JSP
    So my doubts are.
    1. Is it correct approach
    2.If it is correct then which part of the flow connects to DB and stores the value before putting to JSP.
    Iam using Tomcat 4.31
    Plz help me

    I have problem.
    My JSP will take a emplyee id .
    Now I want to show all the values regarding that
    employee in a JSP(JSP form) from the DB(Oracle).
    So Iam planning like
    JSP-->Servlet-->Bean-->JSP
    So my doubts are.
    1. Is it correct approach
    2.If it is correct then which part of the flow
    connects to DB and stores the value before putting to
    JSP.
    Iam using Tomcat 4.31
    Plz help meHI
    What you are probably proposing is an MVC design pattern. I wonder if u have heard of the struts framework. Sruts uses MVC design pattern wherein the servlet u are talking about acts as a controller(C) and the bean acts as the model(M) .The JSPs present the view(V). Hence the name MVC.
    Your approach is right. First get the employee ID from the jsp and get the corresponding data from database(This logic u implement in the servlet). Then save the fetched data in a bean so that the result jsp can fetch data from it.
    Now this is not a strict MVC approach.
    Learn more about struts. It presents a much more cleaner solution.

Maybe you are looking for

  • Difference between NULL and ''

    Hi All, Is the below right? NULL is not stored as a value in a field. Its an internal bit that is set to indicate that the value is unknown. Blank is stored as a value in the field. Because of that we can perform all kinds of comparisons with blank v

  • Ipod 5th/gen stuck in restoring mode can't get pass recovery mode..........

    first mess:{1} ipod needs to be reformatted for use with windows (then){2} restoring "ipod" (then) {3}Your ipod has been restored to factory settings and will be restarting (heres where it gets stuck){4} logo screen with timer at bottom screen is gra

  • SAP Floor plan manager for webdynpro ABAP

    Hi All, The current version of SAP is SAP ECC 6.0. Following are the more detail patch levels. SAP_ABA     700     0010 SAP_BASIS     700     0010 ST-PI     2008_1_700     0000 PI_BASIS     2005_1_700     0010 SAP_BW     700     0010 SAP_AP     700  

  • Nokia PC Suite Error. Phone will not install. Reso...

    Seek wdf01000.sys from c:\windows\system32\drivers folder rename or delete. Open regedit seek for keys and remove them, might be there or then not HKLM\SYSTEM\CurrentControlSet\Control\Wdf HKLM\SYSTEM\CurrentControlSet\Services\Wdf01000 Now plug your

  • Camera Raw for Canon EOS 6D? I use PSE 9.

    Where can I download a Camera Raw version wich supports Canon EOS 6D? I use PSE9. Peter.