Problem trying to send file to browser in JSF

Hi I've tried two different techniques for sending a file to a browser(making the user download a file). I've tried an example from myfaces wikipage
FacesContext context = FacesContext.getCurrentInstance();
HttpServletResponse response = (HttpServletResponse)context.getExternalContext().getResponse();
int read = 0;
byte[] bytes = new byte[1024];
String fileName = "test.txt";
response.setContentType("text/plain");
response.setHeader("Content-Disposition", "attachment;filename=\"" + fileName + "\"");
OutputStream os = null;
StringBuffer stringBuffer1 = new StringBuffer("Java Forums rock");
ByteArrayInputStream bis1;
try {
    bis1 = new ByteArrayInputStream(stringBuffer1.toString().getBytes("UTF-8"));
    os = response.getOutputStream();
     while ((read = bis1.read(bytes)) != -1) {
        os.write(bytes, 0, read);
    os.flush();
    os.close();
} catch (UnsupportedEncodingException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
}FacesContext.getCurrentInstance().responseComplete();
I have also tried using a component named fileDownload from PrimeFaces. Both give the same result:
I get a response from the server, the response contains text that should be in the file. The header is a follows:
X-Powered-By    Servlet/3.0, JSF/2.0
Server  GlassFish v3
Content-Disposition attachment;filename="test.txt"
Content-Type    text/plain
Transfer-Encoding   chunked
Date    Thu, 20 May 2010 06:30:20 GMTTo me this looks correct but for some reason I don't get to download the file, I just get this response in firebug.
Does anyone have any idea?, could it be a serversetting problem? I using glassfish 3
Thanks / Stefan

False alarm, it didn't really work, I think it was just a glitsh in JSF that made it work. I think the problem lies in JSF and facelets. I use a facelet and a template.
Template
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
     xmlns:h="http://java.sun.com/jsf/html"
     xmlns:f="http://java.sun.com/jsf/core"
     xmlns:p="http://primefaces.prime.com.tr/ui"
     xmlns:ui="http://java.sun.com/jsf/facelets">
<h:head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
     <title><ui:insert name="windowTitle">Default title</ui:insert></title>
     <link rel="stylesheet" type="text/css"
          href="/admin/resources/css/mainGUI.css" />
          <noscript lang="NO">Beklager, dette nettstedet krever at Javascript er skrudd på / tilgjengelig.</noscript>
          <noscript lang="EN">We're sorry, this site need Javascript to be enabled.</noscript>
</h:head>
<h:body>
     <div id="fwCenterMiddle" class="fwCenterMiddle"><ui:insert
          name="content">Default content</ui:insert></div>
</h:body>
</html>Facelet
<f:view xmlns="http://www.w3.org/1999/xhtml"
     xmlns:f="http://java.sun.com/jsf/core"
     xmlns:h="http://java.sun.com/jsf/html"
     xmlns:ui="http://java.sun.com/jsf/facelets"
     xmlns:p="http://primefaces.prime.com.tr/ui"
     xmlns:c="http://java.sun.com/jsp/jstl/core" contentType="text/html"
     xmlns:em="http://java.sun.com/jsf/composite/emcomp/"
     xmlns:fn="http://java.sun.com/jsp/jstl/functions">
     <ui:composition template="/templates/masterLayout.xhtml">
          <ui:define name="content">
               <h1><h:outputText value="Export">
               </h:outputText></h1>
               <h:outputText value="#{ChooseExportController.selectEvent}"/>
                              <h:outputText value="#{ChooseExportController.selectRole}"/>
               <h:form id="form" >
                    <p:panel header="Velg Election event" style="margin-bottom:10px;" rendered="#{ChooseExportController.selectEvent}">
                         <h:selectOneMenu value="#{ChooseExportController.eventPk}"
                              onchange="this.form.submit();"
                              valueChangeListener="#{ChooseExportController.eventListener}">
                              <f:selectItem itemLabel="" itemValue="0"/>
                              <f:selectItems
                                   value="#{ChooseExportController.electionEventList}" var="n"
                                   itemLabel="#{n.name}" itemValue="#{n.pk}" />
                         </h:selectOneMenu>
                    </p:panel>
                     <p:messages errorClass="errors" layout="table" showDetail="true"
                         globalOnly="true" />
                    <p:dataTable id="datatable" value="#{ChooseExportController.operatorRoleList}" rendered="#{ChooseExportController.selectRole}"
                         var="operatorRole" border="1" selectionMode="single"
                         selection="#{ChooseExportController.operatorRole}" paginator="true" rows="10">
                         <p:column sortBy="#{operatorRole.role.name}">
                              <f:facet name="header">
                                   <h:outputText value="Name" />
                              </f:facet>
                              <h:outputText value="#{operatorRole.role.name}" />
                         </p:column>
                         <p:column sortBy="#{operatorRole.mvArea.areaLevelString}">
                              <f:facet name="header">
                                   <h:outputText value="OmrÃ¥desnivÃ¥" />
                              </f:facet>
                              <h:outputText value="#{operatorRole.mvArea.areaLevelString}" />
                         </p:column>
                         <p:column sortBy="#{operatorRole.mvArea}">
                              <f:facet name="header">
                                   <h:outputText value="OmrÃ¥deskontekst" />
                              </f:facet>
                              <h:outputText value="#{operatorRole.mvArea}" />
                         </p:column>
                         <p:column sortBy="#{operatorRole.mvElection.electionLevelString}">
                              <f:facet name="header">
                                   <h:outputText value="ValgnivÃ¥" />
                              </f:facet>
                              <h:outputText value="#{operatorRole.mvElection.electionLevelString}" />
                         </p:column>
                         <p:column sortBy="#{operatorRole.mvElection}">
                              <f:facet name="header">
                                   <h:outputText value="Valgkontekst" />
                              </f:facet>
                              <h:outputText value="#{operatorRole.mvElection}" />
                         </p:column>
                    </p:dataTable>
                     <br />
                     <p:commandButton value="Velg rolle" id="selectRole" action="#{ChooseExportController.download}"/>
                    <br />
                    <br />
                    <br />
               </h:form>
          </ui:define>
     </ui:composition>
</f:view>But if I rewrite the facelet like this, the download works, and it works with the mimetype text/plain
<html   xmlns="http://www.w3.org/1999/xhtml"
     xmlns:h="http://java.sun.com/jsf/html"
     xmlns:f="http://java.sun.com/jsf/core"
     xmlns:p="http://primefaces.prime.com.tr/ui"
     xmlns:ui="http://java.sun.com/jsf/facelets">
<body>
<f:view>
               <h1><h:outputText value="Export">
               </h:outputText></h1>
                    <h:outputText value="#{ChooseExportController.selectEvent}"/>
                              <h:outputText value="#{ChooseExportController.selectRole}"/>
               <h:form id="form" >
               <h:outputText value="Velg Election event: "/>
               <br/>
               <h:selectOneMenu value="#{ChooseExportController.eventPk}"
                    onchange="this.form.submit();"
                    valueChangeListener="#{ChooseExportController.eventListener}">
                    <f:selectItem itemLabel="" itemValue="0"/>
                    <f:selectItems
                         value="#{ChooseExportController.electionEventList}" var="n"
                         itemLabel="#{n.name}" itemValue="#{n.pk}" />
               </h:selectOneMenu>
                    <p:dataTable id="datatable" value="#{ChooseExportController.operatorRoleList}" rendered="#{ChooseExportController.selectRole}"
                         var="operatorRole" border="1" selectionMode="single"
                         selection="#{ChooseExportController.operatorRole}" paginator="true" rows="10">
                         <p:column sortBy="#{operatorRole.role.name}">
                              <f:facet name="header">
                                   <h:outputText value="Name" />
                              </f:facet>
                              <h:outputText value="#{operatorRole.role.name}" />
                         </p:column>
                         <p:column sortBy="#{operatorRole.mvArea.areaLevelString}">
                              <f:facet name="header">
                                   <h:outputText value="OmrÃ¥desnivÃ¥" />
                              </f:facet>
                              <h:outputText value="#{operatorRole.mvArea.areaLevelString}" />
                         </p:column>
                         <p:column sortBy="#{operatorRole.mvArea}">
                              <f:facet name="header">
                                   <h:outputText value="OmrÃ¥deskontekst" />
                              </f:facet>
                              <h:outputText value="#{operatorRole.mvArea}" />
                         </p:column>
                         <p:column sortBy="#{operatorRole.mvElection.electionLevelString}">
                              <f:facet name="header">
                                   <h:outputText value="ValgnivÃ¥" />
                              </f:facet>
                              <h:outputText value="#{operatorRole.mvElection.electionLevelString}" />
                         </p:column>
                         <p:column sortBy="#{operatorRole.mvElection}">
                              <f:facet name="header">
                                   <h:outputText value="Valgkontekst" />
                              </f:facet>
                              <h:outputText value="#{operatorRole.mvElection}" />
                         </p:column>
                    </p:dataTable>
                     <br />
                     <p:commandButton value="Velg rolle" id="selectRole" action="#{ChooseExportController.download}"/>
                    <br />
                    <br />
                    <br />
               </h:form>
</f:view>
</body>
</html>

Similar Messages

  • Problem in sending file to browser through JSF

    Hi,
    I have developed a web page in JSF through which user can download a file.
    I write file to the OutputStream of response, it works fine.
    But an exception is printed on console:
    java.lang.IllegalStateException: Cannot forward after response has been committed
    Probably, this is because in backing bean class I have acquired output stream of session and I have written file data to it.
    Is there any resolution to the above problem?
    Thanks.

    Add FacesContext#responseComplete() to the end of the code to let JSF lifecycle know that the response is already completed manually, otherwise JSF will render the response again.
    Also see: http://balusc.blogspot.com/2006/05/pdf-handling.html
    I'd rather to use a servlet for streaming files and use a plain GET link for that however.
    Also see: http://balusc.blogspot.com/2007/07/fileservlet.html

  • I finished a video on whale watching, I retimed some of the clips to run slower to reduce boat motion and added a few whale sound effects, when trying to send to media browser or compressor I keep getting  Frame 3085 (error-1) please help

    I finished a video on whale watching, I retimed some of the clips to run slower to reduce boat motion and added a few whale sound effects, when trying to send to media browser or compressor I keep getting  Frame 3085 (error-1) please help

    Trash your preferences. Trash your project render files. Switch off background rendering. Do not render. Export.

  • I tried to send "File:  / / / " through messages...

    I tried to send "File: / / / " without quotes to a friend through the messages application which obviously crashed it. Now, however, File: / / /  is saved as a draft message and will crash the messages app upon opening it. Is there a way to delete draft messages outside of the app?
    <Edited by Host>

    In the Finder choose the "Go" menu and press Option followed by selecting the Library. Then go to the Messages folder and remove the files that begin with "chat.db" in their names. Then re-open the Messages program.

  • Problem facing in sender file adapter

    Hi XI gurus,
    I am facing a problem in sender file adapter communcation channel
    Is there any restriction in XI that XI picks max of 100 at a time .
    Actaully probolem here is My XI sender file adapter need to pick 2800 file from ftp.
    adapter need to file pick files ranging SAP_OUT_066581_280_INV.xml to SAP_OUT_SZ22TXN066581_2800_INV.xml
    to pick these we have given file name as u201CSAP_OUT_*_INV.xmlu201D when ever given this XI is coming with no messges.
    when ever file name is given as SAP_OUT_SZ22TXN066581_3*_INV.xml it XI has picked file from 300 to 399
    when eve tried with the options to pick all the message
    SAP_OUT_SZ22TXN066581_*_INV.xml  Failed with no messaege
    even atleast tried to pick 1000 mesaanges from 1000 to 1999
    i have given like this
    SAP_OUT_SZ22TXN066581_1*_INV.xml failed with no messages
    while trying with option xi picking file max 100 at a time
    SAP_OUT_SZ22TXN066581_1*_INV.xml
    SAP_OUT_SZ22TXN066581_11*_INV.xml
    SAP_OUT_SZ22TXN066581_12*_INV.xml
    like this I am increaing the number and picking maximum of 100 messages only
    Is there any way to auto mate this or nny file names need to be required
    waiting for your reply

    Check SAP Note 821267 - FAQ: XI 3.0 / PI 7.0/ PI 7.1 File Adapter.
    I guess point 8 might relate to your problem if the FTP adapter timeout occurs.
    check the note 849089 as well.
    Also check point 13 and 26.
    Gaurav Jain
    Points if answer is useful
    Edited by: Gaurav Jain on Jun 6, 2008 4:20 PM

  • Correcting email address that adobe is trying to send file from

    I have asked this Q before with no resolution but I really need this fixed.  If I open a file that is in adobe reader or acrobat, etc.  When I click on the option to "send" it then brings up a black box a saying " [email protected]:  creating draft message... " The problem is that email address no longer exists and I can't change any settings because my settings don't have that address associated with it.  My computer will just lock up since it is trying to create a draft from that email address that does not exist.  I want to change it but have had no luck.  I have changed everything I can in my computer but this is strictly an adobe setting somewhere within the system.  Can somebody fig this one out for me?

    Hi
    Adobie XI and yes that is how I am trying to send.. File, Send File, then
    it pops up preparing to send "from [email protected]" then is just
    locks up.  This is not my default email either.
    On Fri, Mar 6, 2015 at 10:52 PM, RahulTyagi4you <[email protected]>

  • Outlook keeps trying to send files that are too large

    I'm using Microsoft Outlook on my Mac (first mistake) and I find that 4 or 5 files containg photos that I tried to send are causing problems because of their size.  The problem is I can't find a way to delete them - as these files are not in Drafts or in Send folders and every time I open Outlook it tries (again) to resend.  Can someone help please?  How do I delete those files?  Thanks

    Open up Outlook and click on Window on the top menu bar and then select Progress. You should be able to cancel the emails from sending from here.

  • Problem in polling sender file CC

    Hi,
    On a sender File CC, I set the poll interval to 300 secs.
    If I inactivate the CC and re activate the CC after some interval, the CC pools 2 times within 30 secs interval.
    Why is it behaving this way?
    I tried 3 times by inactivating and activating and all the cases, it works the same way.
    It is on 7.0, SP 13.
    Regards,
    Venkat.

    Hemanth,
    I dont think this is a issue with cache refresh.
    I have refreshed cache and even restarted server once...
    but still the issue persists.
    You just try creating a sample scenario and set the poll interval to 300, deactivate the sender CC and re activate the CC.
    It will poll immeadiately for 2 times in one minute of activation.
    -Venkat.

  • Trying to send file to someone who has cs3 but error occurs

    Hi I have illustrator cs5 and I am trying to send a file to someone who has cs3, I saved it in a cs3 format but when they try to open it an error occurs saying, "could not find The linked file, choose repair to locate the missing file, replace to open another file, or ignore to leave file unchanged". Please help thank you.

    This  means that Illustrator cannot find the related files (external resources that you have used for the project, like photos etc...), because the path is changed.
    Do you have to pass to your customers not only the illustrator file but also all the files used in that project. Then they have to choose the "repair" option and relink all the missed resources ( simply they have to go to the folders on their hard drive where these files are located and then relink them).
    I hope this help

  • Trying to send file through blue tooth-says Unable to Connect/Not Supported

    I am trying to send video files from my Motorola phone to my Macbook pro. I set everything up on my Mac and set it up/activated on my phone. However, when I try to send the file I keep getting a message saying "Unable to Connect: Macbook Pro is not supported".
    I also had an issue trying to have a file sent to me via another Macbook Pro/Blue Tooth.
    How can I fix this?
    Thanks.

    Hi,
    I think u need to set up the SMTP  So that u can send the email.
    Regards
    Mustafa.

  • Trying to send file to blackberry via bluetooth

    When I try to send files from my iMac to a blackberry 9000 I get the folowing error message on the iMac:
    "the device does not have the necessary services"
    I don't understand this. The iMac and the blackberry 9000 are sucessfully paired, I just can't send a file to the blackberry from the iMac. When I click on the device name (BlackBerry 9000) in the bluetooth menu on the iMac, the dialog box says that the blackberry is "not connected".
    I sent a contacts list from the blackberry to the imac, so they're talking to each other. While that happened, the dialog box said "connected".
    As soon as I tried to send something the other way (from the iMac to the blackberry), the green light in the dialog box changed to red and it said "not connected".
    Any help appreciated.
    Tom

    Go to the Help menu in the Finder. Select Mac Help and click the Index to the upper right. Go to B/Bluetooth and there are numerous articles. Perhaps an article will help you find somewhere in the configuration of the iMac or the Blackberry that is causing the failure to connect properly.
    Dah•veed

  • Problems trying to reconnect files in PE10 organizer

    I have PE10 on a Windows 7 computer.  I have a library of 11,000 images.  Somehow last weekend, the Catalog converted the drive letter on all the paths of all the image files to the wrong letter.  Otherwise, the paths and filenames are fine.
    So I'm trying to Reconnect files.  Being cautious, I am starting with selecting a few files and doing File-->Reconnect-->Missing File.  However, it doesn't work.  I've done about 10-15 groups at this point. It starts a laborious search thru my directory files.  About 25-30% of the time, PE10 fails.  I get a pop-up error dialog that says "Elements 10 Organizer has stopped working." with only one button that says "Close Program".  When it doesn't fail, it goes to the end of the search (I presume), and then pops up the window to manually search for a file.  So it fails to find the right file(s), but in the manual window I can easily find the right file and it reconnects right away.
    I am reluctant to try File-->Reconnect-->All Missing Files.  Reason: On the third group I did above, I got cocky and tried to do 1000 files at once.  That was the first time it bombed, and it trashed the assigned dates on some of my files.
    So this is a nightmare.  I could manually reconnect, but I have 11,000 files in 100's of folders - it would take a long time.  How can I get Reconnect to work properly?
    I don't have a backup that is recent enough to just do a restore.
    Thank you,
    Bill

    After conversion, things match.  So the drive letters in the catalog database are correct (except the C: drive, but that doesn't matter here.)  Here are the contents of my volume_table:
    id
    description
    serial
    drive_path_if_builtin
    type
    104
    C:
    2765733514
    C:
    builtin_drive
    80453
    P:
    3969101216
    P:
    builtin_drive
    184869
    E:
    680486029
    E:
    builtin_drive
    420438
    database relative
    amoc:database_relative_volume
    database_relative_drive
    And here are the volume_id entries in my media_table:
    volume_id
    count(volume_id)
    80453
    10302
    184869
    1559
    These numbers are about right.  I have about 11,800 images.  When my failure occured, they all had the bogus "P:" in their pathnames.  Since then I've reconnected about 1500 files to the E: drive.
    So at this point I'm thinking I'll try your idea of remapping my E: drive to P: in Windows.  But I'll wait until you respond, in case you have a better idea.
    Thanks again,
    Bill

  • Show files in browser with JSF

    Hi,
    I'm trying to show several kinds of files in browser, but I still haven't been successful in it, it only show the binarys in browser. This my portion of code where I'm working it. In the example I'm trying too show a pdf's file but it could be, jpg, doc, xls, gif as well
         public void ver(ActionEvent e){
               // Prepare.
            FacesContext facesContext = FacesContext.getCurrentInstance();
            ExternalContext externalContext = facesContext.getExternalContext();
            HttpServletResponse response = (HttpServletResponse) externalContext.getResponse();
            String fileName="D:\\documentacion\\tecnica\\hacia una arquitectura.pdf";
            File file = new File(fileName);
            BufferedInputStream input = null;
            BufferedOutputStream output = null;
            try {
                // Open file.
                input = new BufferedInputStream(new FileInputStream(file),10240);
                // Init servlet response.
                response.reset();
              //  response.setHeader("Content-Type", "application/pdf");
                response.setContentType("application/pdf");
                response.setHeader("Content-Length", String.valueOf(file.length()));           
                response.setHeader("Content-Disposition", "inline; filename=\"" + file.getName()+ "\"");
                output = new BufferedOutputStream(response.getOutputStream(), 10240);
                // Write file contents to response.
                byte[] buffer = new byte[1024];
                int length;
                while ((length = input.read(buffer)) > 0) {
                    output.write(buffer, 0, length);
                // Finalize task.
                output.flush();
            }catch(Exception ex){
                 ex.printStackTrace();
            } finally {
                // Gently close streams.
                close(output);
                close(input);
            facesContext.responseComplete();
    }

    Very frustrating, but I found the fix (on another site - can't believe with 360 views, no one here knew). In Firefox, PDFs are automatically set to open with the faulty Adobe plug-in. To change it to open with Adobe Reader, check out the instructions here:
    https://support.mozilla.org/en-US/kb/pdf-files-are-blank-and-cant-be-downloaded-mac#os=mac &browser=fx16
    Super easy!

  • Problems with the par file of Browse Deployment

    Hi,
    I had an error message with the com.sap.portal.support.browse.default in Browse deployment, that this iView is not found.
    Fortunately I had a file with the same name, so I uploaded it, but it was the wrong one (Why do they all have the same file name?). I uploaded the par file of the masthead, so every time i click on the browse deployment link I get the masthead and now I have no chance to download other par files.
    Do I still have the right iView on the Server or in the Portal? If yes, where? Or can anybody send me the right par file?
    e-Mail: Ulli_Arndt(at)gmx.de
    Thanks in advance!
    greetings,
    Ulrike

    Hello Ulrike,
    Most companies use different servers for development and Production. The Browse Deployment Option should be used only with the development server. If you're going to use it with the Production server, there could be problems, as the two servers have a different architecture.
    Once you sign in to the DEVELOPMENT SERVER using your user id, ensure that you have the Systems Administration Role and click on the tab corresponding to the same.
    Then select Support.
    Select Portal Runtime.
    Select Browse Deployment.
    Once you do this, you'll see a filepath on top of the page just below the top level navigation area. Here's where most people commonly make a mistake.
    Ensure that the breadcrumb is EXACTLy as follows:
    ROOT/WEB-INF/deployment/temp
    If this is not the case, clcik on ROOT in the filepath displayed on your screen and navigate along the filepath above so you reach the correct iView.
    You should now see a list of files with the extension .par.bak.
    Upon downloading any of these files, the downloaded .rar file for most of the files with have the same filename. Once you unzip this file once or twice, you'll get a .par.bak file with the same filename as the one you downloaded. Rename the extracted .par.bak file by removing the .bak extension. You'll be left with a .par extension now.
    You can now import this file in NWDS and work on it as required.
    I hope this helps. Let me know if you have anyfurther questions. Screenshots are alsways helpful, especially of the filepath on the top of your screen.
    Regards,
    Farsheed

  • Mail freezes trying to send files

         Everytime I try emailing a full page PDF file, my email won't even get past autofilling an email address before it freezes with rainbow wheel. I always have to force quit. A smaller PDF will sometimes work.
         It only works if I take the time to open a fresh email, fill in address, then attatch or drag pdf into the mail. But this slows down my paperwork process quite a bit. I never had this problem before with Snow Leopard. I could always just hit 'command P' for print, then down where the pdf dropdown menu is, I hit 'email pdf', then fill in name and send. None of that works now. Freezes when I type in the first letter of the address.
         I've tried removing "sandbox" folder and all that. I've tried restarting computer. I've tried reinstaling Mountain Lion. I've tried deleting things off my computer for more space, because it seems to be running a slower with Mountain Lion too. Only getting rainbow wheel in Mail app though. Can't even delete many emails at a time without freezing it up.
    Any suggestions
    Thanks,
             Lee

    sorry, I didn't see that I had to click 'now' in the bottom right corner. Here it is...
    4/19/13 8:28:08.520 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:08.535 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:08.567 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:08.596 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:12.357 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:12.371 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:12.405 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:12.943 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:13.129 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:13.197 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:14.073 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:14.086 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:16.172 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:16.185 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:16.204 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:16.219 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:16.230 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:16.357 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:16.689 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:16.751 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:17.504 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:17.779 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:17.802 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:17.811 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:17.830 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:31.547 PM com.apple.launchd.peruser.501[147]: ([0x0-0x72c72c].com.apple.mail[12591]) Exited: Terminated: 15
    4/19/13 8:28:39.504 PM spindump[12634]: Saved hang report for Mail version 6.3 (1503) to /Library/Logs/DiagnosticReports/Mail_2013-04-19-202839_Lees-mbp.hang
    4/19/13 8:28:39.782 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:39.800 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:39.808 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:39.818 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:44.759 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:44.762 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:44.765 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:44.942 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:48.561 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:48.565 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:48.571 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:48.577 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:48.580 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:48.626 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:48.723 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:48.738 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:49.039 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:49.157 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:49.164 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:49.169 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:49.182 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:28:49.243 PM Mail[12645]: Using V2 Layout
    4/19/13 8:28:49.785 PM com.apple.SecurityServer[15]: Session 100126 created
    4/19/13 8:29:10.671 PM WindowServer[112]: CGXDeferSurfaces : Invalid source window 5986
    4/19/13 8:29:10.697 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:10.707 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:10.719 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:10.735 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:10.743 PM com.apple.launchd.peruser.501[147]: ([0x0-0x740740].com.apple.mail[12645]) Exited: Terminated: 15
    4/19/13 8:29:10.801 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:10.815 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:10.821 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:10.832 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:11.836 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:11.842 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:11.849 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:11.858 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:12.709 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:12.719 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:12.725 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:12.737 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:12.767 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:13.415 PM spindump[12650]: Saved hang report for Mail version 6.3 (1503) to /Library/Logs/DiagnosticReports/Mail_2013-04-19-202913_Lees-mbp.hang
    4/19/13 8:29:18.686 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:18.691 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:18.701 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:18.709 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:21.185 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:21.188 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:21.192 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:21.358 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:23.575 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:23.578 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:23.582 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:23.590 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:23.593 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:23.627 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:23.711 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:23.725 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:24.042 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:24.131 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:24.147 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:24.166 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:24.174 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:24.255 PM Mail[12659]: Using V2 Layout
    4/19/13 8:29:24.761 PM com.apple.SecurityServer[15]: Session 100127 created
    4/19/13 8:29:29.036 PM WindowServer[112]: CGXDisableUpdate: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    4/19/13 8:29:43.037 PM WindowServer[112]: disable_update_likely_unbalanced: UI updates still disabled by application "Mail" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    4/19/13 8:29:44.726 PM SyncServer[12649]: [0x7fec29c0bda0] |Server|Warning| lost connection 0x7fec2a80c4a0 to com.apple.Mail
    4/19/13 8:29:44.729 PM WindowServer[112]: CGXDeferSurfaces : Invalid source window 6006
    4/19/13 8:29:44.752 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:44.763 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:44.777 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:44.794 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:44.802 PM com.apple.launchd.peruser.501[147]: ([0x0-0x744744].com.apple.mail[12659]) Exited: Terminated: 15
    4/19/13 8:29:44.847 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:44.869 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:44.873 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:44.882 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:45.655 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:45.664 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:45.669 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:45.680 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:47.173 PM spindump[12662]: Saved hang report for Mail version 6.3 (1503) to /Library/Logs/DiagnosticReports/Mail_2013-04-19-202947_Lees-mbp.hang
    4/19/13 8:29:51.821 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:53.195 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image
    4/19/13 8:29:53.199 PM Numbers[12618]: Assertion failure: Method: outlineView:willDisplayCell:forTableColumn:item:
    Object: <LSStylesController 0xecb74d0>
    File: /SourceCache/Numbers/Numbers-554/numbers/LSStylesController.m
    Line #: 525
    Found a non typical table style, using low DPI image

Maybe you are looking for

  • Changing from POP to IMAP

    I set up an account that I previously accessed through a web mail application, and Apple's Mail application automatically put in the settings. Unfortunately, it set the account up as a POP account instead of IMAP, so the first thing Mail did was down

  • How to Install SJAS on a Fedora Core 4 box

    I've had my share of headaches making SJAS work well on an FC4 box, and as there was no good "how-to" on the install, I've compiled the following from trial and error. Hope this is of some use: Installing Sun Java App Server on FC4: 1) First, start w

  • How to create an Undefined Code Combination from API? (Urgent)

    Hi All, I used the following API to create the code combinations in a Inventory custom form. SELECT CHART_OF_ACCOUNTS_ID INTO :PARAMETER.CHART_OF_ACCOUNTS_ID FROM ORG_ORGANIZATION_DEFINITIONS WHERE ORGANIZATION_ID = :PARAMETER.ORG_ID; FND_KEY_FLEX.DE

  • RESOURCE MANAGER IN E-BUSINESS SUITE DATABASE

    Hi All, I have little problem with database resource manager in E-Business database. I have set up some resource plan, assigned consumer group and user APPS to this consumer group (of course it is new initial consumer group for that user). At instanc

  • Problem in push button of abap object code

    Hi, I am working on a example ABAP Object taken from www.erpgenie.com . There is a problem code that during exceution the push button when i select the exapnd sroage locations it does not get expanded. plzz provide me guidelines by watching the code