I guess this is my last post on macromedia.dreamweaver...

It was an interesting ride/journey...
Best of luck to everyone.
Thierry | Adobe Community Expert | Articles and Tutorials ::
http://www.TJKDesign.com/go/?0
Spry Widgets |
http://labs.adobe.com/technologies/spry/samples/
[click on
"Widgets"]
Spry Menu Bar samples |
http://labs.adobe.com/technologies/spry/samples/menubar/MenuBarSample.html

"Mike" <[email protected]> wrote in message
news:gr5l3s$e2q$[email protected]..
>I knew they were upgrading their forums, but
discontinuing the news servers
>is news to me.
>
> WTF? I hate message boards. Gah!
>
> Why does Adobe have to ruin everything it touches? Why
do corporations buy
> things that threaten them, and then change everything
about what made them
> a viable threat to begin with?
>
> Macromedia's presence on the news servers is what got me
into their
> products big time. It's what originally made me switch
to Dreamweaver in
> the first place, many moons ago.
>
> I'm guessing I'm not the first to mention this. Nor the
first Adobe is
> going to ignore on the subject.
>
> Damn. :-(
Yeah, me too.
Adobe is just going with the flow, though. Look at how many
posts here are
from "webforumuser". Apple and Microsoft are as much to blame
as Adobe.
Apple does not provide a default news-capable reader and
Microsoft only
provides news-reading capabilities if you are not using
Outlook (as opposed
to Outlook Express or Windows Mail). It's a lot of stupidity
and a lack of
understanding about nntp as it relates to USENET, which is
perceived as a
security threat. While private news servers are not a threat,
the younger
crowd or the stupid crowd (Adobe has quite a few of both)
simply do not
understand the technology.
Even we may heed the siren's call to web forums sooner or
later - though we
will never kill our news server.
Al Sparber - PVII
http://www.projectseven.com
Dreamweaver Menus | Galleries | Widgets
http://www.projectseven.com/go/apm
An Accessible & Elegant Accordion

Similar Messages

  • Can anybody help? (originally posted in macromedia.dreamweaver)

    Hi Guys and Gals,
    I need some help determining a problem with some code I'm
    attempting to use.
    It's probably something obvious that I'm missing... what I'm
    trying to achieve is this
    * - Has the user submitted any previous offers?
    * - If they HAVE, was their most recent offer submitted in
    the last 24 hours?
    * - If their most recent offer was submitted in the last 24
    hours then redirect the user to the page "Error.asp"
    * - If the user HAS NOT submitted an offer in the last 24
    hours OR their most recent offer was submitted MORE than 24 hours
    ago,
    allow the rest of this page to load and a new offer to be
    submitted.
    This is the actual code I'm using:
    <%
    If Rs_ExistingOffers.EOF And Rs_ExistingOffers.BOF Then
    'If There are NO Existing Offers
    'Do nothing and let the page load.
    Else
    If Not Rs_ExistingOffers.EOF Or Not Rs_ExistingOffers.BOF
    Then
    'If there ARE existing offers, now we check to see if any of
    'them are from within the last 24 hours
    HoursSinceLastQuote =
    DateDiff("h",(Rs_ExistingOffers.Fields.Item("DateOfOffer").Value),Now())
    'If the most recent previous offer was within the last 24
    'hours, prevent a further offer from being submitted.
    If (HoursSinceLastQuote) < 24 Then
    Response.Redirect("Error.asp")
    End If
    End if
    End If
    %>
    Unfortunately, whether there is an existing offer in the
    database or not, the page redirects to "Error.asp" regardless.
    FYI, the recordset "Rs_ExistingOffers" is being filtered by
    way of the Customer ID (CusID) (which is a by-product of the
    customer's
    Username and Session("MM_Username") filtering the database of
    users for authentication), and then ordering any records it finds
    in
    Rs_ExistingOffers that
    match the CusID in decending order (I.e. most recent first).
    Please, can anyone see what it is that I'm doing wrong?
    Regards
    DTBK

    Dooza,
    Why on earth didn't I think of that??
    Thanks for that, it helped to indentify what the problem is
    and it appears that it's with my recordset which is supposed to be
    filtering the database of existing offers received.
    The SQL Statement is as follows...
    ("var_CUSID" is bound after filtering the database of
    registered users with Session("MM_Username") and then binding the
    resulting ID
    value to the variable (UserID) and then specifying the value
    of var_CUSID as (UserID))
    SELECT *
    FROM tbl_Offers
    WHERE CusID = var_CUSID AND OfferStatus = 'Status 1' OR
    OfferStatus = 'Status 2' OR OfferStatus = 'Status 3'
    ORDER BY DateOfOffer DESC
    Obviously what I'm trying to achieve is to only pull back the
    offers/records which match the User ID, but then there's actually 4
    possible status' of an offer, I only want to pull back those
    records which match one of 3 status'.
    What appears to be happening is that my OR statements are in
    someway over-riding everything else as it's pulling back records
    which
    do not match the UserID.
    I've tried filtering on just the User ID (E.g. WHERE CusID =
    var_CUSID) and this works fine.
    I've tried filtering on just the user ID and one possible
    Status (E.g. WHERE CusID = var_CUSID AND OfferStatus = 'Status 1')
    and
    this also works fine.
    As soon as I put the OR statement to try to account for a
    different status (but same User ID) it starts to bring records back
    regardless as to whether they match the UserID.
    Any suggestions as to how I might correct this?
    Regards
    DTBK
    "Dooza" <[email protected]> wrote in message
    news:[email protected]...
    > DTB-K wrote:
    >> Hi Guys and Gals,
    >>
    >> I need some help determining a problem with some
    code I'm attempting to use.
    >>
    >> It's probably something obvious that I'm missing...
    what I'm trying to achieve is this
    >>
    >> * - Has the user submitted any previous offers?
    >> * - If they HAVE, was their most recent offer
    submitted in the last 24 hours?
    >> * - If their most recent offer was submitted in the
    last 24 hours then redirect the user to the page "Error.asp"
    >>
    >> * - If the user HAS NOT submitted an offer in the
    last 24 hours OR their most recent offer was submitted MORE than 24
    hours ago,
    >> allow the rest of this page to load and a new offer
    to be submitted.
    >>
    >>
    >> This is the actual code I'm using:
    >>
    >> <%
    >>
    >> If Rs_ExistingOffers.EOF And Rs_ExistingOffers.BOF
    Then
    >> 'If There are NO Existing Offers
    >> 'Do nothing and let the page load.
    >> Else
    >> If Not Rs_ExistingOffers.EOF Or Not
    Rs_ExistingOffers.BOF Then
    >> 'If there ARE existing offers, now we check to see
    if any of
    >> 'them are from within the last 24 hours
    >> HoursSinceLastQuote =
    DateDiff("h",(Rs_ExistingOffers.Fields.Item("DateOfOffer").Value),Now())
    >> 'If the most recent previous offer was within the
    last 24
    >> 'hours, prevent a further offer from being
    submitted.
    >> If (HoursSinceLastQuote) < 24 Then
    >> Response.Redirect("Error.asp")
    >> End If
    >> End if
    >> End If
    >>
    >> %>
    >>
    >> Unfortunately, whether there is an existing offer in
    the database or not, the page redirects to "Error.asp" regardless.
    >>
    >> FYI, the recordset "Rs_ExistingOffers" is being
    filtered by way of the Customer ID (CusID) (which is a by-product
    of the
    >> customer's
    >> Username and Session("MM_Username") filtering the
    database of users for authentication), and then ordering any
    records it finds
    >> in Rs_ExistingOffers that
    >> match the CusID in decending order (I.e. most recent
    first).
    >>
    >> Please, can anyone see what it is that I'm doing
    wrong?
    >
    > First thing you want to do is debug it, so you can see
    what is really going on:
    >
    > If Rs_ExistingOffers.EOF And Rs_ExistingOffers.BOF Then
    > Response.Write("No offers")
    > Else
    > If Not Rs_ExistingOffers.EOF Or Not
    Rs_ExistingOffers.BOF Then
    > Response.Write("Offers")
    > 'them are from within the last 24 hours
    > HoursSinceLastQuote =
    DateDiff("h",(Rs_ExistingOffers.Fields.Item("DateOfOffer").Value),Now())
    > 'Lets see how many hours
    > Response.Write("Hours since last quote: " &
    HoursSinceLastQuote)
    > 'If the most recent previous offer was within the last
    24
    > 'hours, prevent a further offer from being submitted.
    > If (HoursSinceLastQuote) < 24 Then
    > Response.Write("Error")
    > End If
    > End if
    > End If

  • How to get material's last posting date of issuing to production order?

    Hi,
    In my scenario, I need to get material's last posting date of issuing to production order (e.g. mov. typ. 261).
    I tried to select the material documents whose movement type is 261, and restrict the posting date from month to month each time, until the first material document is selected.
    But this method seems quite inefficient.
    What kind of algorithm is more effient to do this?
    Thanks
    Wesley

    Hi,
    select max( budat )
      from mkpf
      into gv_budat
      where mblnr in ( select mblnr
                         from aufm
                        where aufnr = gv_aufnr "(Prod. Order)
                            and  matnr = gv_matnr "(Issued Material)
                            and bwart = '261' ).
    Edited by: Azeem Ahmed Matte on Mar 12, 2010 12:33 PM

  • Last Post Date (and Time?)

    Before the last revision of Discussions format the My Subscriptions page under Last Post the date of the last post in a forum or category was listed along with _the time_ of the post. This was a very helpful feature as one could scan the list and see if there were any new entries in a forum or category. Now we still have the date (Aug 29, 2007), but no time listed. Should we expect the time to be listed before long, or is that a casualty of the new dispensation? And if it has been removed, does anyone have an idea of why?
    Thanks.
    cornelius
    Message was edited by: cornelius

    Hi Cornelius,
    I hope you will forgive my saying so, but sarcasm does not become you.
    As a Level 4, you have the facility to post such a question in the FHB in the Lounge, where it can receive the attention of the Hosts and all the other Lounge Lizards who have that special 'inside' information.
    This particular forum will only attract attention mostly from the fringe dwellers such as myself, who are not likely to have access to or the freedom to publicly disclose the information which you require.
    Nevertheless, have a good day!

  • Document from last posting run in 2007 are not yet updated

    Hi Guru's,
    When I run the AJRW fiscal year change 2009, it was not successful because a system message says" fiscal year change in company code XXX, possible only after year end closing 2007.
    So I execute AJAB-Year End closing in 2007, in Tab " Closed Carried Out - it say "NO", when i double click  it says: "Document from last posting run in 2007 are not yet updated"
    So i check it in SM35 to see when did this error started, i found out it started at around mid 2007, July, status is In background instead of Processed. Out of 15 thousand transaction, 14 of which got an error.
    Please help how we are able to post asset accounting for 2009.
    Thanks
    Mila
    Edited by: Mila Calonge on May 4, 2009 10:02 AM

    check the error log why the transactions are not processed. Recreate the session with transaction code AFBD giving the year and fiscal period and check the error log. It will give the clue why the transactions are not processed.
    Those might not have processed due to GL account assignment or cost center master data issues.

  • Not taken to the last post...

    When I want to report spam, I use a bookmark that takes me to the first message in the Spam forum. If I click on the "Reply" button of this first message, I get the box for writing my report, but the "last" message above it is #49. not the #282 which is the last at the time of wrinting this:
    When posted, my report appears where it should, but this is annoying. I have observed this for some time now -at least for some weeks- but I had not noticed how annoying it is until Sunday, when I had to post many times there.
    This happens in Firefox/Mac, but I have just checked and it also happens in Safari/Win 7. And it also happens in other long threads: trying to reply to their first message takes me below message #49, not below the last.
    Also, if I click on the Latest Reply button instead, I am at least taken to the last page of the thread, but not to the last message.
    Anyone else?

    Noel Carboni wrote:
    To be honest, I don't get there the way you do, and maybe others don't either.  I make the Discussions tab my default and click on the time in the Last Post column to get to the end directly.
    -Noel
    I think I'm not following you. In your previous thread you said
    I followed your instructions exactly and used the Reply button inside the thread on the first post, and yes, I was taken to the bottom of the first page, just as you describe.
    And this is exactly the problem I am reporting. I haven't said that I get the same effect whatever means I use to try to go to the last message. I do get it when I use a way that I have been using for years: to use a bookmark to go directly to the Spam thread (instead of looking for it in the list of threads, as many times it is necessary to scroll down to get at it), and to click on the Reply button of its first message.
    Incidentally, I get the same problem if I go to the Spam thread by using the link provided at the top of the list of topics in this forums. And yes, I also use the Discussions tab by default.

  • Asset accnting - Documents from last posting run in 2007 r not yet updated

    Dear expert,
    I have accidentatlly repeat run the depreciation so I deleted the batch file and re-run the correct one however I received message Documents from last posting run in 2007 are not updated. How to correct this?
    thank you

    I have resolved this issue. Actually the porblem was not as complicated as I thought.
    Since I have accidentally run the reverse depreciation for 2007, I just let it post to 2007 period 12.
    Then I changed the depreciation key back to ZLIN and re-run the depreciation and posted it in 2007 period 12. By doing this I nullified the previous wrong depreciation.
    Next step I carried AJAB and closed the year 2007 without error. After that I went to change back the depreciation key to '0000' no depreciation.
    With this workaround I managed to resolve the problem.
    From this experience I advice user who want to change the depreciation key, before doing that better make sure your previous year has been closed. Else you will have problem closing your previous year after you have changed the depreciation key.
    Dear Paul Annotee,
    Many thanks to the support and suggestions you have given me. Thanks again.
    regards,
    Max

  • Depreciation Run -"Last Posting run terminated Restart in period 03 2010"

    Hello Friends,
    Please help me for this. I am trying to run depreciation for a CoCd 2002 in
    production. When I do AFAB
    for FY 2010 Period 04. It gives a error message "Last Posting run
    terminated, restart in period 2010 003"
    Diagnosis*
    The last posting run in period 003 2010 was terminated by an error.
    Before any more posting runs are performed, you must restart the
    posting run for period 003 2010.
    Procedure
    Start the posting run for period 003 2010 again using the restart
    parameter.
    After this I run AFAB (03 2010) using the Restart radio tab, it runs ok in
    Test and w/o Test (i.e in backgrond),
    when I check SM37 - it shows a program RAPOST2000 is finished. Then I am
    able to run AFAB for (04 2010)
    in test and background also. Again a program is there in SM37.
    But when I try to run for period 05 2010 - it again shows the earlier error
    " "Last Posting run terminated, restart in period 2010 003""
    You see the error message comes again.
    Can someone suggest me a solution. Do I need to go sm35 and process the
    Batch I/P session . Why this error is
    coming up?
    Regards,
    George

    Hi George,
    please look at table-field TABA-XBUKZ.
    If there is a  "1" it means "Restart" necessary.
    If you have the restart sign you have to solve the error and after the restart the TABA-XBUKZ shoudl change to "X".
    regards Bernhard

  • Depreciation Run Error "Not all the documents in the last posting run were

    Hi,
    When I tried to run depreciation, I found the error message as below.
    "Not all the documents in the last posting run were posted"
    How do I solve the problem?
    Please advise me..
    Thank you for your help..
    Jake

    Hi,
    For an Update termination you need to go into the System Log to check the real cause of the termination.
    My guess is that the document number has already been used. It has happened to me and I found no cause for that.
    I did the following then:
    I checked the highest used document number in that number range and corrected the from number of the number range.
    Then I went into the TABA table and corrected the entries there that they corresponded to the number range.
    Then I did a manual reconcilliation between AA and GL. In my case they matched, If they don't you would need to post manually to the GL to get them to match.
    Then I ran recalculation of asset values. and finally an unplanned depreciation run.
    For me it solved the problem.
    Br
    Cricke

  • Last posting run terminated (Restart in period 2010 001)

    HI,
    There is the challenge issue for Depreciation run in AFAB,
    While running the depreciation for the month of jan month system never allowing to post.
    After the upload of assets through BDC, this is the first time we are trying to run  the depreciation
    Also, in the test run, some times documents are created and for the same input parameters, if the test run is executed again, the below error appears.
    Job started
    Step 001 started (program RAPOST2000, variant &0000000000027, user ID TRAINING1)
    Last posting run terminated (Restart in period 2010 001)
    Spool request (number 0000010067) created without immediate output
    Job finished
    Can somebody help on this issue...
    Thanks & Regards
    Rajesh Kumar.S
    09620791110

    Hi Rajesh,
    Please check the depreciation (production run) log in AFBP by inputing Company Code Fiscal Year and period. This will provide you mored details of the error as to why the depreciation run went into error.
    After the errors are rectified, please run AFAB in restrat mode, this will resolve your issue.
    Thanks!!!
    Murlidhar Khatri

  • Last posting run terminated (Restart in period 2008 12)

    One Week ago we upgraded from SAP 4.6 to ECC6 and implemented recommendation in note 890976 (in transaction FBN1 I have set the accounting doc. 03 to internal number range determination). The first period (11) we executed the depreciation run for appeared to run successfully but for the second period (12) we are receiving the message "Last posting run terminated (Restart in period 2008 012)". This message will appear each time we run the depreciation for period 12.
    When I run transaction ARMO, I get the error "Document number 2100 300000001 2008 was already assigned
    Message no. F5152"
    In Transaction FBN1, we can no longer set the number range to external and the current status for company 2100 is 300000000.
    Can any one assist with resolving this issue?
    Thanks,
    Nicholas

    Ran some test in our QA system and found the solution. Changed the status number from 30000000 to 30000050 using transaction FBN1. Everything appears to be working now.
    Edited by: Nicholas Archer on Sep 15, 2008 11:56 AM

  • The Last Post column on forum home page

    Is it my imagination, or does the Last Post column keep appearing and disappearing from the forum home page?
    I've seen it a few times, I think, but then it vanishes.

    what I can see is the difference between those two links :
    http://forums.oracle.com/forums/main.jspa?categoryID=84
    http://forums.oracle.com/forums/category.jspa?categoryID=84
    Hmmm...interesting.
    When I'm reading a forum and want to go to the main Forum Home page, I click on the "Forum Home" link in the upper left corner of the page (just under the Oracle logo).
    The link has this url: http://forums.oracle.com/forums/index.jspa?categoryID=84 which is slightly different than the two you posted.
    When I click on it, I end up at the first link you posted. But sometimes I see the Last Post column and sometimes not.

  • Possible to add time of last post on forum home pa...

    Is it possible to have the time of the last post on the main forum home page as it currently shows what toppic the last post was in but dosent show what time or who by if you made the last post and are waiting for a reply having this info visable would save having to reload the page just to see there has been no update so what do people think about this?

    can you not do that already using settings, subscriptions & bookmarks, options, notify me for my own posts and replies?
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • How long will this MacBook Pro last me?

    I recently have received a mid-2009 macbook pro as a gift. I have upgraded the software to Mountain Lion (and most likely going to upgrade to Mavericks whenever it comes out). I am going to become a high school senior in the upcoming months. I was wondering how long this laptop would last me! I like gaming, but the graphics aren't that good even on low quality, but I'm sure this laptop will be fine for my last year of high school and til the end of college prehaps?
    Thanks,
    Christopher!
    Edit:
    I understand there isn't just a breakdown date or timer, but I am just asking for a guess from the community! Sorry for the confusion if there was any.
    Thank you!

    Your machine is about 4 years old and in it's end of life stage for a laptop.
    It al depends how much abuse the previous owner did to it, how much wear on the keyboard/Superdrive and on the graphics etc.
    I'd say another year or two and it's done.
    The reason gaming is bad it's because they are designed for PC towers and the latest graphics which a laptop you can't upgrade.
    Also the many OS X operating system versions also has a part as later OS X versions slow down older machines.
    If you want to 3D game, then get a PS4 or a Windows 7/8 3D gaming tower and upgrade the video card every couple of years to a better one.
    That's the only way, Mac's can't upgrade the video card anymore and new 3D games need better graphics.
    The only way one can keep a Mac a very long time is to take exceeding great care of it, all the wear and tear on external devices, then there is a limit to upgrading operating systems and Apple will begin denying security updates as well.
    Good luck

  • Ok someone removed my last post

    Can anyone find out why my last post titled MBP took another dump? i looked in my questions and it said posts removed by host. is apple trying to remove all the posts about bad experiences with there MBP's as of recently.
    Btw i cant explain everything that was said in teh last post, but my mbp has been acting crazy lately. fans randomly start running at 3300rpm gets really super hott on ac or battery power. battery life still ***** have a new one replaced by apple and all the pmu stuff etc etc. safari crashed and fails to load pages frequently and now airport express always quits and i have to restart my mbp.

    Mac OS X Version 10.4.10 (Build 8R2218)
    2007-06-25 09:39:25 -0700
    2007-06-25 09:39:27.446 SystemUIServer[177] lang is:en
    Jun 25 10:20:29 adam-daileys-computer mDNSResponder: Repeated transitions for interface en1 (192.168.1.6); delaying packets by 5 seconds
    Barchart.com Ticker Applet [v3.0.5]
    Copyright (C) 2001 - 2006 by Barchart.com, Inc. All Rights Reserved.
    For more information, visit http://www2.barchart.com/ticker.asp
    DataThread#1 started.
    http://java.barchart.com/jv_data.htx?symbols=I$NASX,I$INX,&code=BSTK&ref=http:// actionalertplus.com/trend7.nsf/main_center-bottom!OpenForm&BaseTarget=middle-top
    ScrollThread#1 started.
    DataThread#1 stopped.
    ScrollThread#1 stopped.
    Jun 25 15:31:16 adam-daileys-computer /Applications/Safari.app/Contents/MacOS/Safari: CGContextFlush: invalid context
    Barchart.com Ticker Applet [v3.0.5]
    Copyright (C) 2001 - 2006 by Barchart.com, Inc. All Rights Reserved.
    For more information, visit http://www2.barchart.com/ticker.asp
    DataThread#2 started.
    http://java.barchart.com/jv_data.htx?symbols=I$NASX,I$INX,&code=BSTK&ref=http:// trend7.com/trend7.nsf/main_center-bottom!OpenForm&BaseTarget=middle-top
    DataThread#2 stopped.
    ScrollThread#2 started.
    ScrollThread#2 stopped.
    Jun 25 15:32:10 adam-daileys-computer /Applications/Safari.app/Contents/MacOS/Safari: CGContextFlush: invalid context
    Invalid memory access of location a08000a6 eip=90a594c0
    Jun 26 19:32:36 adam-daileys-computer /Applications/Safari.app/Contents/MacOS/Safari: An unexpected Java error has been detected by HotSpot Virtual Machine.
    Jun 26 19:32:36 adam-daileys-computer /Applications/Safari.app/Contents/MacOS/Safari: If this error is reproducible, please report it with the following information:
    Jun 26 19:32:36 adam-daileys-computer /Applications/Safari.app/Contents/MacOS/Safari: 1. Provide the steps to reproduce, a test case, and any relevant information
    Jun 26 19:32:36 adam-daileys-computer /Applications/Safari.app/Contents/MacOS/Safari: 2. The corresponding JavaNativeCrash_pid<num>.crash.log (Java state)
    Jun 26 19:32:36 adam-daileys-computer /Applications/Safari.app/Contents/MacOS/Safari: 3. The corresponding <name>.crash.log (native state; generated by CrashReporter)
    Jun 26 19:32:36 adam-daileys-computer /Applications/Safari.app/Contents/MacOS/Safari: 4. This data:
    Jun 26 19:32:36 adam-daileys-computer /Applications/Safari.app/Contents/MacOS/Safari: Java VM: Java HotSpot(TM) Client VM (1.5.0_07-87 mixed mode)
    Jun 26 19:32:36 adam-daileys-computer /Applications/Safari.app/Contents/MacOS/Safari: Bus Error (0xa) at pc=0x90a594c0
    Jun 26 19:32:36 adam-daileys-computer /Applications/Safari.app/Contents/MacOS/Safari: Process ID: 221, Current Thread: 26166272
    Jun 26 19:32:36 adam-daileys-computer /Applications/Safari.app/Contents/MacOS/Safari: File report at: http://bugreport.apple.com/
    Jun 26 19:32:36 adam-daileys-computer /Applications/Safari.app/Contents/MacOS/Safari: An error report file has been written to:
    Jun 26 19:32:36 adam-daileys-computer /Applications/Safari.app/Contents/MacOS/Safari: /Users/Adam/Library/Logs/Java/JavaNativeCrash_pid221.crash.log
    Jun 26 19:32:39 adam-daileys-computer crashdump[281]: Safari crashed
    Jun 26 19:32:40 adam-daileys-computer crashdump[281]: crash report written to: /Users/Adam/Library/Logs/CrashReporter/Safari.crash.log
    file://localhost/Applications/Adobe P
    Jun 26 20:36:12 adam-daileys-computer /Applications/Safari.app/Contents/MacOS/Safari: Corrupt JPEG data: 244 extraneous bytes before marker 0xd9\n
    2007-06-26 22:09:49.814 DiskImages UI Agent[332] Could not find image named 'background'.
    ### MRJPlugin: getPluginBundle() here. ###
    ### MRJPlugin: CFBundleGetBundleWithIdentifier() succeeded. ###
    ### MRJPlugin: CFURLGetFSRef() succeeded. ###
    SystemFlippers: didn't consume all data for DLOG ID 5237 (pBase = 0x5344600, p = 0x5344620, pEnd = 0x53448c6)
    SystemFlippers: didn't consume all data for DLOG ID 5237 (pBase = 0x54cf200, p = 0x54cf220, pEnd = 0x54cf4c6)
    SystemFlippers: didn't consume all data for DLOG ID 5245 (pBase = 0x54dfa00, p = 0x54dfa20, pEnd = 0x54dfcc6)
    Jun 26 23:03:06 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:03:06 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:03:09 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:03:09 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:03:09 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:03:09 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:03:10 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:03:10 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:03:10 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:03:10 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:03:10 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:03:10 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:03:10 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:03:10 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:03:10 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:03:10 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:03:13 adam-daileys-computer crashdump[372]: firefox-bin crashed
    Jun 26 23:03:14 adam-daileys-computer crashdump[372]: crash report written to: /Users/Adam/Library/Logs/CrashReporter/firefox-bin.crash.log
    Jun 26 23:03:33 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:03:33 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:03:33 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:03:33 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:03:33 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:03:33 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:03:33 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:03:33 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:03:33 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:03:33 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:03:47 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:03:47 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:04:38 adam-daileys-computer crashdump[383]: ??? crashed
    Jun 26 23:04:38 adam-daileys-computer crashdump[383]: crash report written to: /Library/Logs/CrashReporter/???.crash.log
    SystemFlippers: didn't consume all data for DLOG ID 5237 (pBase = 0x531d200, p = 0x531d220, pEnd = 0x531d4c6)
    SystemFlippers: didn't consume all data for DLOG ID 5237 (pBase = 0x54d3800, p = 0x54d3820, pEnd = 0x54d3ac6)
    SystemFlippers: didn't consume all data for DLOG ID 5245 (pBase = 0x54d1a00, p = 0x54d1a20, pEnd = 0x54d1cc6)
    file://localhost/Applications/Adobe P
    Jun 26 23:06:50 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:06:50 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:07:05 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:07:05 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:07:05 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:07:05 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:07:05 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:07:05 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:07:05 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:07:05 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:07:06 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:07:06 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:07:06 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:07:06 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:07:06 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:07:06 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:07:59 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:07:59 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:07:59 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:07:59 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:07:59 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:07:59 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:07:59 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:07:59 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:08:00 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:08:00 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:09:05 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:09:05 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:09:05 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:09:05 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:09:05 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:09:05 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:09:05 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:09:05 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:09:06 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:09:06 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:09:06 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:09:06 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:10:02 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:10:02 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:10:32 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:10:32 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:11:09 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:11:09 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:11:12 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:11:12 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:11:12 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:11:12 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:11:12 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:11:12 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:11:12 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:11:12 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:15:54 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:15:54 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:16:01 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:16:01 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:16:01 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:16:01 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    file://localhost/Applications/Adobe P
    Jun 26 23:29:55 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:29:55 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:32:07 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:32:07 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:32:07 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:32:07 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:32:08 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:32:08 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:32:08 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:32:08 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:32:08 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:32:08 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:32:19 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:32:19 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:32:35 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:32:35 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:32:50 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:32:50 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:35:59 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:35:59 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:36:17 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:36:17 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    Jun 26 23:36:33 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: FOExceptionMainHandler caught a fatal exception at 0x000ddb9f\n
    Jun 26 23:36:33 adam-daileys-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer: ATSServer got a fatal exception! Please check /var/log/ats.log, also viewable in Console.app
    SystemFlippers: didn't consume all data for DLOG ID 5237 (pBase = 0x533dc00, p = 0x533dc20, pEnd = 0x533dec6)
    SystemFlippers: didn't consume all data for DLOG ID 5237 (pBase = 0x54c8600, p = 0x54c8620, pEnd = 0x54c88c6)
    SystemFlippers: didn't consume all data for DLOG ID 5245 (pBase = 0x54e6400, p = 0x54e6420, pEnd = 0x54e66c6)
    file://localhost/Applications/Adobe P
    SystemFlippers: didn't consume all data for DLOG ID 5237 (pBase = 0x54c6800, p = 0x54c6820, pEnd = 0x54c6ac6)
    SystemFlippers: didn't consume all data for DLOG ID 5237 (pBase = 0x54b6800, p = 0x54b6820, pEnd = 0x54b6ac6)
    SystemFlippers: didn't consume all data for DLOG ID 5245 (pBase = 0x54d4c00, p = 0x54d4c20, pEnd = 0x54d4ec6)
    SystemFlippers: didn't consume all data for DLOG ID 5237 (pBase = 0x549c000, p = 0x549c020, pEnd = 0x549c2c6)
    SystemFlippers: didn't consume all data for DLOG ID 5237 (pBase = 0x54aea00, p = 0x54aea20, pEnd = 0x54aecc6)
    SystemFlippers: didn't consume all data for DLOG ID 5245 (pBase = 0x54d7000, p = 0x54d7020, pEnd = 0x54d72c6)
    2007-06-28 22:44:22.169 SuperDrive Update 2.1[601] Loading firmware update [AE39] (MSHWFirmwareLoader) against device...
    2007-06-28 22:44:22.175 SuperDrive Update 2.1[601] Loading firmware update [BE39] (MSHWFirmwareLoader) against device...
    2007-06-28 22:44:22.180 SuperDrive Update 2.1[601] Loading firmware update [GHAEA] (MSHWFirmwareLoader) against device...
    2007-06-28 22:44:22.184 SuperDrive Update 2.1[601] Loading firmware update [GHGBA] (MSHWFirmwareLoader) against device...
    2007-06-28 22:44:22.187 SuperDrive Update 2.1[601] Loading firmware update [GKBVB] (MSHWFirmwareLoader) against device...
    2007-06-28 22:44:22.190 SuperDrive Update 2.1[601] Loading firmware update [GKCVB] (MSHWFirmwareLoader) against device...

Maybe you are looking for

  • Passing range table in a Subroutine

    I got 3 select options like this: Tables : VBRK. *SELECTION SCREEN GUI SELECT-OPTIONS: so_fkdat   FOR vbrk-fkdat OBLIGATORY, so_fkart   FOR vbrk-fkart, so_vbeln   FOR vbrk-vbeln. Now In the title of my alv I want to show what user hav input in these

  • Procure to Asset  Complete Cycle

    Does anybody know all setups required to complete cycle from creating an item for asset ,creating PO, transfering asset to FA(rather than inventory) and paying this invoice etc .does any body have this test cycle-

  • Error 26 in IDOC

    Hi ABAP Gurus, I added a new segment Z1TPTWF into an extension ZMATMA02, which is based on a  basic type  MATMAS02. My newly-added segment should be the last segment before the standard and mandatory segment of MATMAS02: E1MAKTM. The condition before

  • My iPhone 5 just stopped working now not visible with iTunes

    I have had the iPhone 5 for a few weeks, tonight I was recieving a call, as I went to answer it the slide bar locked half way accross and the phone locked up. It then turned its self off and now won't start up again, I have connected it to my iMac to

  • Is it possible to upgrade my Mac Pro OSX 10.7.5 to OSX 10.8?

    Is it possible to upgrade my Mac Pro OSX 10.7.5 to OSX 10.8? Processor  2 x 3 GHz Quad-Core Intel Xeon Memory  8 GB 667 MHz DDR2 FB-DIMM Graphics  NVIDIA Quadro FX 4500 512 MB Software  Mac OS X Lion 10.7.5 (11G63b)