SelectOneChoice and selectItem foreach row  - Not selecting current value

Hi -
I am having a problem whereby the list that is rendered in the UI is not selecting my current ID...It is just showing the "blank" selection, which is another problem - it must be mandatory.
The UI shows the list (from my iterator) but nothing is selected on the list, even thow the ROWs do have a ClasscategorytypeId assigned to them.
My Iterator that feeds the list is defined in the PageDef as follows:
<iterator id="ClasscategorytypeView1Iterator" Binds="ClasscategorytypeView1"
RangeSize="-1" DataControl="AppModuleDataControl"/>
</executables>
Here is the column definition.
<af:column sortable="false" headerText="ClassCategory"
binding="#{backing_svrclass_edit_list.column3}"
id="column3">
<af:selectOneChoice value="#{row.ClasscategorytypeId}"
required="true">
<af:forEach var="item" items="#{bindings.ClasscategorytypeView1.rangeSet}">
<af:selectItem
value="#{item.ClasscategorytypeId}"
label="#{item.Name}"/>
</af:forEach>
</af:selectOneChoice>
</af:column>

Hi Frank - thanks for the feedback.
for #1 - setting the defaults on the entity and view object didn't help. It still shows up with a "BLANK" field (don't want the blank field, since "required"), and it is not selecting the correct option that cooresponds to the ID from the ROW.
re #2 - I don't understand solution #1 that he mentions? Here is the quote:
"Create a second binding to the same attribute that the list binding is for. But make this a plain attribute binding. This binding will map direct to the real value of the column so you can use this second binding as a proxy to the list in your expressions. Note the binding just has to be created in the PageDef file, it does not need to be displayed on the page itself." These parts are confusing to me:
"Create a second binding...", "use this second binding as a proxy"...I thought that you can have only one binding per control, and second, re: the proxy item - is this implying that I have to setup an onload and onclick event, and somehow map the option items (zero based index) to the real value both when showing the list (and selecting the right one) and processing the currently "selected" item? This sounds like a very combursome thing to do...? Can you clarify that for me?
(if you had a simple example that would be great!)
Thanks again!
I really appreciate it.
ps. I found the #1 scenario (foreach solution) from the Steve Muench blog here, and if I am to understand this correctly - even his sample is misleading, since the list values returned from the query are zero based, and NOT value based.. so he must have aligned these values in the database to be ZERO based and coorespond to the behaviour of rendering the list... This is very misleading.
Here's the URL:
http://www.oracle.com/technology/products/jdev/tips/muench/screencasts/editabletabledropdown/dropdownlistineditabletable.html?_template=/ocom/technology/content/print

Similar Messages

  • ADF selectOneChoice and af:forEach

    Hi,
    I'm atempting to create a data-bound selectOneChoice that displays DepartmentName and selects the corresponding DepartmentId as its value. I've tried using an af:forEach on an f:selectItem with the selectOneChoice, but I'm getting an error with the EL refernces that the the row refernces aren't valid.
    Could anyone provide some insight?
    Thanks,
    Debojit

    Thanks for the prompt reponses.
    Hi Suresh, Rodrigues and Vinod,
    I'm attempting to build my selectOneChoice from the Department table table directly, without code in between AND get back real values for the selections I make, so I'm afraid I can't use any beans, at least not for pouplating the drop-down list.
    Hi Navaneetha,
    I tried your approach, but I'm still getting a "Refrence not Found" error for the EL refernce "#{row.DepartmentName}" , and the drop down is coming up as empty when i run the page.
    Here's the code for the page and the corresponding page def.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1">
    <af:messages id="m1"/>
    <af:form id="f1">
    <af:selectOneChoice label="Departments" id="soc1">
    <af:forEach items="#{bindings.DepartmentsView.items}" var="row">
    <af:selectItem label="#{row.DepartmentName}" id="si1"
    value="#{row.DepartmentId}"/>
    </af:forEach>
    </af:selectOneChoice>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    <?xml version="1.0" encoding="UTF-8" ?>
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
    version="11.1.1.60.13" id="DepartmentsViewPageDef"
    Package="view.pageDefs">
    <parameters/>
    <executables>
    <variableIterator id="variables"/>
    <iterator Binds="DepartmentsView" RangeSize="10"
    DataControl="HrAppModuleDataControl"
    id="DepartmentsViewIterator"/>
    </executables>
    <bindings>
    <tree IterBinding="DepartmentsViewIterator" id="DepartmentsView">
    <nodeDefinition DefName="model.views.DepartmentsView"
    Name="DepartmentsView0">
    <AttrNames>
    <Item Value="DepartmentId"/>
    <Item Value="DepartmentName"/>
    </AttrNames>
    </nodeDefinition>
    </tree>
    </bindings>
    </pageDefinition>

  • How to make some rows not selectable in AdvancedDataGrid

    Hi there,
    I have an advanced data grid which allows to select multiple rows. I need to make certain rows not selectable dependent on the row data. How can this be done?
    Help is greatly appreciated. Thanks in advance.
    --Charmaine

    Hi, You can view same demo here
    Thanks and Best regards,
    Pallavi Joshi | [email protected] | www.infocepts.com

  • Af:table and selectOneChoice, creating a new row resets selected value

    Hello,
    I have a table containing 4 columns, first two are read-only (outputtext) and next 2 contains selectOneChoice , table model is baed on java.util.List
    adding a new row, works fine but it resets the selectOneChoice(dropbox) selected value to First Index For All Rows
    so everytime you add a new row, it resets the value to the very First Value in the dropbox for all rows,
    it seems after PPR it loses the selected value in SelectOneChoice for each row...
    any ideas?
    Thanks,

    Hi,
    What is the EL expression given for value property of selectOneChoice list?
    I guess it is the bean variable and it is same for each row, due to which selection in any selectOneChoice list in table modifies the same bean variable and sets the same value for lists in all other rows too(same happens in case of new insertion also, when you insert new record selectonechoice list points to the first value if no selection item is not added), in case of selectonechoice list you need to handle the selected values differently for each row. If you can share sample code, I can tell you what could be the problem.
    Sireesha

  • ALV Table row not selected, on_lead_select not fired

    Hi all,
    I build a ALV grid with a dynamic node:
    IF lv_check_child_node NE 'X'.
         CALL METHOD lo_nd_root->add_new_child_node
            EXPORTING
    *          supply_method                =
    *          supply_object                =
    *          dispose_method               =
    *          dispose_object               =
    *          static_element_type          =
              name                         = 'ALV_RESULT'
              is_mandatory                 = abap_true
              is_mandatory_selection       = abap_false
              is_multiple                  = abap_true
              is_multiple_selection        = abap_false
              is_singleton                 = abap_true
              is_initialize_lead_selection = abap_false
              static_element_rtti          = lr_strucdescr
              is_static                    = abap_true
    *          attributes                   =
            RECEIVING
              child_node_info              = lo_nd_alv_result.
        ENDIF.
        lo_nd_result = wd_context->get_child_node( name = lv_tab_name ).
        lo_nd_result->bind_table( new_items = <lt_alv_tab> ).
    * Instantiate ALV component
        l_ref_cmp_usage =   wd_this->wd_cpuse_alv( ).
        IF l_ref_cmp_usage->has_active_component( ) IS INITIAL.
          l_ref_cmp_usage->create_component( ).
        ENDIF.
        lo_nd_result = wd_context->get_child_node( name = lv_tab_name ).
        l_ref_interfacecontroller = wd_this->wd_cpifc_alv( ).
        l_ref_interfacecontroller->set_data(
          r_node_data = lo_nd_result ).
        l_ref_interfacecontroller->get_model( RECEIVING value = lr_cmdl ).
        lr_cmdl->if_salv_wd_std_functions~set_export_allowed( abap_false ).
        lr_cmdl->if_salv_wd_std_functions~set_pdf_allowed( abap_false ).
        lr_cmdl->if_salv_wd_table_settings~set_fixed_table_layout( abap_true ).
    *  lr_cmdl->if_salv_wd_table_settings~set_design( cl_wd_table=>e_design-alternating ).
        lr_cmdl->if_salv_wd_table_settings~set_selection_mode( cl_wd_table=>e_selection_mode-single ).
        lr_cmdl->if_salv_wd_table_settings~set_cell_action_event_enabled( value = abap_true ).
        lr_cmdl->if_salv_wd_table_settings~set_data_check( if_salv_wd_c_table_settings=>data_check_on_cell_event ).
    *    lr_cmdl->if_salv_wd_table_settings~set_read_only( value = abap_false ).
    *    lr_cmdl->if_salv_wd_table_settings~set_enabled( value = abap_true ).
        lr_cmdl->if_salv_wd_table_settings~set_row_selectable( value = abap_true ).
        IF lt_fieldcat IS NOT INITIAL.
          lt_col = lr_cmdl->if_salv_wd_column_settings~get_columns( ).
          LOOP AT lt_fieldcat INTO ls_fieldcat.
            READ TABLE lt_col INTO ls_col WITH KEY id = ls_fieldcat-fieldname.
            IF sy-subrc = 0.
              ls_col-r_column->set_position( ls_fieldcat-col_pos ).
              CALL METHOD ls_col-r_column->get_header
                RECEIVING
                  value = lr_header.
              lr_header->set_ddic_binding_field( if_salv_wd_c_ddic_binding=>ddic_bind_none ).
              lv_headertx = ls_fieldcat-seltext_l.
              lr_header->set_text( lv_headertx ).
            ELSE.
              ls_col-r_column->set_visible( cl_wd_uielement=>e_visible-none ).
            ENDIF.
          ENDLOOP.
        ENDIF.
    But when I execute the dynpro, I get all the data I want. But I cannot select any row and the ON_LEAD_SELECT is not executed (an eventhandler is made in the method tab, and the event is bind to this handler).
    When I change from selection_mode single to single_no_lead, I can select the row but the event is still not executed (not strange).
    Is there anybody who can help me. We have support package SAPKB70020.
    Regards,
    Michael

    Have you set the Initialization Lead Selection of the node as abap_true?
    Also Check the below thread:
    Unable to selelct a Row in ABAP Webdynpro ALV table

  • Manage Table / Modify column does not display current values

    Hi,
    when I choose "Modify column" from the menu "Manage table", the current properties of the column, i.e. type, size and so on, are not shown, but are defaulted to whatever value has been defined inside that page, so the column type is always set to "Number" for instance.
    It would be definitely better to retain the current values, in my humble opinion.
    Bye,
    Flavio

    I have also run into this problem. I am running IQ 16.0 sp1. I wanted to increase the number of characters in one of the columns so I have to create a new column, copy the data, delete the old column then rename the new column.
    Is there any reason the MODIFY function is not implemented in IQ?

  • ADF Popup issue with table row not selected

    OK, imagine this scenario. There is a page displaying a table of employees, and when you click on the employee_id (which is shown as URL), which is one of the columns of the table, a popup displays, showing the details of that particular employee.
    Now in the properties of the employee table, we unchecked the row selection property. Now how will I be able to achieve the same thing?
    I dragged the setCurrentRowWithKeyValue operation on employee_id column, changed the bindings of the TEXT property, added a popup behaviour, but still the popup displays the first row which is fetched in the table.
    Where am I missing, or is there any other way to achieve the same thing?
    JDev version: 11.1.2.2.0
    Edited by: Sonal on Oct 11, 2012 3:11 AM

    I did an exercise where I created one page which was displaying all the employees, and once you click on employee_id (which is shown as URL), a 2nd page opens displaying the details of the employees.
    Now in the above exercise, ROW SELECTION was disabled, for which I had to use this setCurrentRowWithKeyValue operation and then set the NDValue with the binding of the employee ID. So whenever I used to click on the employee_id, the page was taking to me the form, which was displaying exactly the same employee details.
    Now this thing should work with the popup thing too, right? So I disabled the ROW SELECTION

  • About this Mac software update and more info does not work, current ver 10.7.4

    Update software and About this Mac selections do not work, this seemed to start after firmware update. How can I get these functions to work?

    7/10/12 12:01:00.698 PM [0x0-0x1a01a0].com.apple.Safari: objc[5325]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 12:02:00.726 PM [0x0-0x1a01a0].com.apple.Safari: objc[5325]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 12:03:00.754 PM [0x0-0x1a01a0].com.apple.Safari: objc[5325]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 12:04:00.783 PM [0x0-0x1a01a0].com.apple.Safari: objc[5325]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 12:05:00.811 PM [0x0-0x1a01a0].com.apple.Safari: objc[5325]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 12:06:00.843 PM [0x0-0x1a01a0].com.apple.Safari: objc[5325]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 12:07:00.871 PM [0x0-0x1a01a0].com.apple.Safari: objc[5325]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 12:08:00.900 PM [0x0-0x1a01a0].com.apple.Safari: objc[5325]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 12:09:00.931 PM [0x0-0x1a01a0].com.apple.Safari: objc[5325]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 12:12:20.635 PM Safari: IPCClient: Server port 0 is invalid; looking it up again...
    7/10/12 12:12:38.000 PM kernel: IOSurface: buffer allocation size is zero
    7/10/12 12:16:18.012 PM powerd: PMScheduleWakeEventChooseBest: m=0.00 s=0.00 a=0.00
    7/10/12 12:16:19.000 PM kernel: hibernate image path: /var/vm/sleepimage
    7/10/12 12:16:19.000 PM kernel: sizeof(IOHibernateImageHeader) == 512
    7/10/12 12:16:19.000 PM kernel: Opened file /var/vm/sleepimage, size 4294967296, partition base 0x0, maxio 400000 ssd 0
    7/10/12 12:16:19.000 PM kernel: hibernate image major 14, minor 0, blocksize 512, pollers 4
    7/10/12 12:16:19.000 PM kernel: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    7/10/12 12:16:19.000 PM kernel: hibernate_setup(0) took 0 ms
    7/10/12 12:16:21.000 PM kernel: AppleThunderboltNHI::enablePower - turn power on, status = 0x0, result_value = 0x0
    7/10/12 12:16:30.000 PM kernel: hibernate_page_list_setall start 0xffffff806b460000, 0xffffff806b480000
    7/10/12 12:16:30.000 PM kernel: hibernate_page_list_setall time: 238 ms
    7/10/12 12:16:30.000 PM kernel: pages 1004003, wire 184721, act 184470, inact 2787, spec 149, zf 3516, throt 0, could discard act 125920 inact 244126 purgeable 12235 spec 246079
    7/10/12 12:16:30.000 PM kernel: hibernate_page_list_setall found pageCount 375643
    7/10/12 12:16:30.000 PM kernel: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    7/10/12 12:16:30.000 PM kernel: IOHibernatePollerOpen(0)
    7/10/12 12:16:30.000 PM kernel: writing 375348 pages
    7/10/12 12:16:30.000 PM kernel: encryptStart 2f7f0
    7/10/12 12:16:30.000 PM kernel: encryptEnd d1d4a00
    7/10/12 12:16:30.000 PM kernel: image1Size 0x11a6f000, encryptStart1 0x2f7f0, End1 0xd1d4a00
    7/10/12 12:16:30.000 PM kernel: encryptStart 11a6f000
    7/10/12 12:16:30.000 PM kernel: encryptEnd 25798600
    7/10/12 12:16:30.000 PM kernel: PMStats: Hibernate write took 7885 ms
    7/10/12 12:16:30.000 PM kernel: all time: 7885 ms, comp bytes: 1537839104 time: 1426 ms 1027 Mb/s, crypt bytes: 552396816 time: 1011 ms 520 Mb/s,
    7/10/12 12:16:30.000 PM kernel: image 628721152, uncompressed 1537839104 (375449), compressed 625426208 (40%), sum1 8acfb7a0, sum2 50892423
    7/10/12 12:16:30.000 PM kernel: wired_pages_encrypted 133086, wired_pages_clear 51441, dirty_pages_encrypted 190922
    7/10/12 12:16:30.000 PM kernel: hibernate_write_image done(0)
    7/10/12 12:16:30.000 PM kernel: sleep
    7/10/12 12:16:31.000 PM kernel: Wake reason: EHC1
    7/10/12 12:42:35.000 PM kernel: SMC::smcHandleInterruptEvent WARNING status=0x0 (0x40 not set) notif=0x0
    7/10/12 12:42:35.000 PM kernel: HID tickle 68 ms
    7/10/12 12:42:35.000 PM kernel: Previous Sleep Cause: 5
    7/10/12 12:42:35.000 PM kernel: The USB device HubDevice (Port 1 of Hub at 0xfd000000) may have caused a wake by issuing a remote wakeup (2)
    7/10/12 12:42:35.000 PM kernel: wlEvent: en1 en1 Link DOWN virtIf = 0
    7/10/12 12:42:35.000 PM kernel: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    7/10/12 12:42:35.000 PM kernel: en1: 802.11d country code set to 'X0'.
    7/10/12 12:42:35.000 PM kernel: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    7/10/12 12:42:36.000 PM kernel: CoreStorageGroup::translateUnmapExtent(10179334656, 628720640): non-block-aligned request! (blockSize is 4096)
    7/10/12 12:42:38.061 PM UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - PreProbe
    7/10/12 12:42:38.067 PM configd: network configuration changed.
    7/10/12 12:42:38.070 PM applepushserviced: <APSCourier: 0x7fe77c8089d0>: Stream error occurred for <APSTCPStream: 0x10c91eea0>: The operation couldn’t be completed. Socket is not connected
    7/10/12 12:42:38.075 PM configd: network configuration changed.
    7/10/12 12:42:38.079 PM applepushserviced: <APSCourier: 0x7fe77c8089d0>: Stream error occurred for <APSTCPStream: 0x7fe77cb174e0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    7/10/12 12:42:38.083 PM applepushserviced: <APSCourier: 0x7fe77c8089d0>: Stream error occurred for <APSTCPStream: 0x10c91eea0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    7/10/12 12:42:40.593 PM applepushserviced: <APSCourier: 0x7fe77c8089d0>: Stream error occurred for <APSTCPStream: 0x10c91eea0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    7/10/12 12:42:40.000 PM kernel: USBF:          113029.601          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction past the completion deadline on bus 0xfd, timing out! (Addr: 4, EP: 1)
    7/10/12 12:42:44.000 PM kernel: MacAuthEvent en1   Auth result for: 10:bf:48:54:58:20  MAC AUTH succeeded
    7/10/12 12:42:44.000 PM kernel: wlEvent: en1 en1 Link UP virtIf = 0
    7/10/12 12:42:44.000 PM kernel: AirPort: Link Up on en1
    7/10/12 12:42:44.000 PM kernel: en1: BSSID changed to 10:bf:48:54:58:20
    7/10/12 12:42:44.594 PM configd: network configuration changed.
    7/10/12 12:42:44.600 PM applepushserviced: <APSCourier: 0x7fe77c8089d0>: Stream error occurred for <APSTCPStream: 0x7fe77c9016c0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    7/10/12 12:42:44.000 PM kernel: AirPort: RSN handshake complete on en1
    7/10/12 12:42:46.123 PM configd: network configuration changed.
    7/10/12 12:42:46.141 PM UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - Probe
    7/10/12 12:42:46.141 PM UserEventAgent: CaptiveNetworkSupport:CaptiveStartDetect:2343 Bypassing probe on inhouse because it is protected and not on the exception list
    7/10/12 12:42:46.142 PM UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - Unknown
    7/10/12 12:42:46.143 PM configd: network configuration changed.
    7/10/12 12:42:46.000 PM kernel: AppleThunderboltNHI::enablePower - turn power off, status = 0x0, result_value = 0x0
    7/10/12 12:42:48.372 PM mDNSResponder: DeregisterInterface: Frequent transitions for interface en1 (192.168.1.226)
    7/10/12 12:42:49.235 PM warmd: [_bootcachectl_playlist_dir_for_user:1887] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/689E52A8-08D6-42ED-BDB8-A7C7AFE2B9B4 failed: 13 Permission denied
    7/10/12 12:43:04.274 PM com.apple.XType.FontHelper: FontHelper:  message received. (<dictionary: 0x7fd3e5100540> { count = 2, contents =
              "restricted" => <bool: 0x7fff72e699e0>: true
              "query" => <string: 0x7fd3e51007d0> { length = 113, contents = "com_apple_ats_name_postscript == "TimesNewRoman,Bold" && kMDItemContentTypeTree != com.adobe.postscript-lwfn-font" }
    7/10/12 12:43:04.274 PM com.apple.XType.FontHelper: AutoActivation:  scopes (
        "/Library/Application Support/Apple/Fonts"
    7/10/12 12:43:04.284 PM com.apple.XType.FontHelper: FontHelper:  message received. (<dictionary: 0x7fd3e3502460> { count = 2, contents =
              "restricted" => <bool: 0x7fff72e699e0>: true
              "query" => <string: 0x7fd3e3500890> { length = 108, contents = "com_apple_ats_name_postscript == "TimesNewRoman" && kMDItemContentTypeTree != com.adobe.postscript-lwfn-font" }
    7/10/12 12:43:04.284 PM com.apple.XType.FontHelper: AutoActivation:  scopes (
        "/Library/Application Support/Apple/Fonts"
    7/10/12 12:43:04.297 PM com.apple.XType.FontHelper: FontHelper:  message received. (<dictionary: 0x7fd3e51019c0> { count = 2, contents =
              "restricted" => <bool: 0x7fff72e699e0>: true
              "query" => <string: 0x7fd3e5101f80> { length = 105, contents = "com_apple_ats_name_postscript == "Arial,Bold" && kMDItemContentTypeTree != com.adobe.postscript-lwfn-font" }
    7/10/12 12:43:04.297 PM com.apple.XType.FontHelper: AutoActivation:  scopes (
        "/Library/Application Support/Apple/Fonts"
    7/10/12 12:43:04.398 PM com.apple.XType.FontHelper: FontHelper:  message received. (<dictionary: 0x7fd3e36012b0> { count = 2, contents =
              "restricted" => <bool: 0x7fff72e699e0>: true
              "query" => <string: 0x7fd3e3600620> { length = 115, contents = "com_apple_ats_name_postscript == "TimesNewRoman,Italic" && kMDItemContentTypeTree != com.adobe.postscript-lwfn-font" }
    7/10/12 12:43:04.398 PM com.apple.XType.FontHelper: AutoActivation:  scopes (
        "/Library/Application Support/Apple/Fonts"
    7/10/12 12:43:04.415 PM com.apple.XType.FontHelper: FontHelper:  message received. (<dictionary: 0x7fd3e3601170> { count = 2, contents =
              "restricted" => <bool: 0x7fff72e699e0>: true
              "query" => <string: 0x7fd3e3600320> { length = 119, contents = "com_apple_ats_name_postscript == "TimesNewRoman,BoldItalic" && kMDItemContentTypeTree != com.adobe.postscript-lwfn-font" }
    7/10/12 12:43:04.415 PM com.apple.XType.FontHelper: AutoActivation:  scopes (
        "/Library/Application Support/Apple/Fonts"
    7/10/12 12:43:04.513 PM com.apple.XType.FontHelper: FontHelper:  message received. (<dictionary: 0x7fd3e35030a0> { count = 2, contents =
              "restricted" => <bool: 0x7fff72e699e0>: true
              "query" => <string: 0x7fd3e3502720> { length = 107, contents = "com_apple_ats_name_postscript == "ZapfDingbats" && kMDItemContentTypeTree != com.adobe.postscript-lwfn-font" }
    7/10/12 12:43:04.513 PM com.apple.XType.FontHelper: AutoActivation:  scopes (
        "/Library/Application Support/Apple/Fonts"
    7/10/12 12:43:04.518 PM Preview: Unsupported: Unsupported Annotation Type
    7/10/12 12:43:04.518 PM Preview: Unsupported: Unsupported Annotation Type
    7/10/12 12:43:04.519 PM Preview: Unsupported: Unsupported Annotation Type
    7/10/12 12:43:04.723 PM com.apple.XType.FontHelper: FontHelper:  message received. (<dictionary: 0x109a30b10> { count = 2, contents =
              "restricted" => <bool: 0x7fff72e699e0>: true
              "query" => <string: 0x109a30d70> { length = 107, contents = "com_apple_ats_name_postscript == "Arial,Italic" && kMDItemContentTypeTree != com.adobe.postscript-lwfn-font" }
    7/10/12 12:43:04.723 PM com.apple.XType.FontHelper: AutoActivation:  scopes (
        "/Library/Application Support/Apple/Fonts"
    7/10/12 12:43:08.601 PM warmd: [_bootcachectl_playlist_dir_for_user:1887] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/689E52A8-08D6-42ED-BDB8-A7C7AFE2B9B4 failed: 13 Permission denied
    7/10/12 12:43:08.601 PM warmd: [_bootcachectl_playlist_exists:446] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/689E52A8-08D6-42ED-BDB8-A7C7AFE2B9B4/app.com.apple.Preview.p laylist failed: 13 Permission denied
    7/10/12 12:43:10.903 PM com.apple.backupd: Starting standard backup
    7/10/12 12:43:10.981 PM com.apple.backupd: Error -35 while resolving alias to backup target
    7/10/12 12:43:11.000 PM kernel: nspace-handler-set-snapshot-time: 1341949392
    7/10/12 12:43:20.998 PM com.apple.backupd: Backup failed with error: 19
    7/10/12 12:43:41.000 PM kernel: en1: 802.11d country code set to 'US'.
    7/10/12 12:43:41.000 PM kernel: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    7/10/12 12:44:07.171 PM warmd: [_bootcachectl_playlist_dir_for_user:1887] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/689E52A8-08D6-42ED-BDB8-A7C7AFE2B9B4 failed: 13 Permission denied
    7/10/12 12:44:07.171 PM warmd: [_bootcachectl_playlist_exists:446] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/689E52A8-08D6-42ED-BDB8-A7C7AFE2B9B4/app.com.apple.print.Pri nterProxy.playlist failed: 13 Permission denied
    7/10/12 12:44:48.000 PM kernel: USBF:          113156.687          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:45:34.000 PM kernel: USBF:          113202.725          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:46:20.000 PM kernel: USBF:          113248.763          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:47:06.000 PM kernel: USBF:          113294.789          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:47:52.000 PM kernel: USBF:          113340.825          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:48:38.000 PM kernel: USBF:          113386.857          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:49:24.000 PM kernel: USBF:          113432.891          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:50:10.000 PM kernel: USBF:          113478.929          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:50:56.000 PM kernel: USBF:          113524.966          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:51:42.000 PM kernel: USBF:          113571.  4          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:52:28.000 PM kernel: USBF:          113617. 41          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:53:14.000 PM kernel: USBF:          113663. 79          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:54:00.000 PM kernel: USBF:          113709.115          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:54:46.000 PM kernel: USBF:          113755.154          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:55:32.000 PM kernel: USBF:          113801.192          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:56:18.000 PM kernel: USBF:          113847.231          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:57:04.000 PM kernel: USBF:          113893.269          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:57:50.000 PM kernel: USBF:          113939.307          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:58:36.000 PM kernel: USBF:          113985.346          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 12:59:22.000 PM kernel: USBF:          114031.371          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 1:00:08.000 PM kernel: USBF:          114077.395          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 1:00:54.000 PM kernel: USBF:          114123.432          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 1:01:02.814 PM warmd: [_bootcachectl_playlist_dir_for_user:1887] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/689E52A8-08D6-42ED-BDB8-A7C7AFE2B9B4 failed: 13 Permission denied
    7/10/12 1:01:40.000 PM kernel: USBF:          114169.460          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 1:02:26.000 PM kernel: USBF:          114215.489          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 1:03:12.000 PM kernel: USBF:          114261.517          AppleUSBEHCI[0xffffff800ad74000]::Found a transaction which hasn't moved in 5 seconds on bus 0xfd, timing out! (Addr: 4, EP: 3)
    7/10/12 1:06:30.238 PM warmd: [_bootcachectl_playlist_dir_for_user:1887] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/689E52A8-08D6-42ED-BDB8-A7C7AFE2B9B4 failed: 13 Permission denied
    7/10/12 1:06:37.028 PM powerd: PMScheduleWakeEventChooseBest: m=0.00 s=0.00 a=0.00
    7/10/12 1:06:37.000 PM kernel: hibernate image path: /var/vm/sleepimage
    7/10/12 1:06:37.000 PM kernel: sizeof(IOHibernateImageHeader) == 512
    7/10/12 1:06:37.000 PM kernel: Opened file /var/vm/sleepimage, size 4294967296, partition base 0x0, maxio 400000 ssd 0
    7/10/12 1:06:37.000 PM kernel: hibernate image major 14, minor 0, blocksize 512, pollers 4
    7/10/12 1:06:37.000 PM kernel: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    7/10/12 1:06:37.000 PM kernel: hibernate_setup(0) took 0 ms
    7/10/12 1:06:39.000 PM kernel: AppleThunderboltNHI::enablePower - turn power on, status = 0x0, result_value = 0x0
    7/10/12 1:06:39.000 PM kernel: en1: BSSID changed to 10:bf:48:54:58:20
    7/10/12 1:06:39.000 PM kernel: wlEvent: en1 en1 Link DOWN virtIf = 0
    7/10/12 1:06:39.000 PM kernel: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    7/10/12 1:06:47.000 PM kernel: hibernate_page_list_setall start 0xffffff806b478000, 0xffffff806b606000
    7/10/12 1:06:47.000 PM kernel: hibernate_page_list_setall time: 218 ms
    7/10/12 1:06:47.000 PM kernel: pages 902937, wire 174482, act 140851, inact 2053, spec 103, zf 16, throt 0, could discard act 117841 inact 242393 purgeable 4346 spec 220852
    7/10/12 1:06:47.000 PM kernel: hibernate_page_list_setall found pageCount 317505
    7/10/12 1:06:47.000 PM kernel: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    7/10/12 1:06:47.000 PM kernel: IOHibernatePollerOpen(0)
    7/10/12 1:06:47.000 PM kernel: writing 317210 pages
    7/10/12 1:06:47.000 PM kernel: encryptStart 2f7f0
    7/10/12 1:06:47.000 PM kernel: encryptEnd d751000
    7/10/12 1:06:47.000 PM kernel: image1Size 0x11ebb400, encryptStart1 0x2f7f0, End1 0xd751000
    7/10/12 1:06:47.000 PM kernel: encryptStart 11ebb400
    7/10/12 1:06:47.000 PM kernel: encryptEnd 1fe5d400
    7/10/12 1:06:47.000 PM kernel: PMStats: Hibernate write took 6952 ms
    7/10/12 1:06:47.000 PM kernel: all time: 6952 ms, comp bytes: 1299705856 time: 1178 ms 1051 Mb/s, crypt bytes: 460077072 time: 842 ms 520 Mb/s,
    7/10/12 1:06:47.000 PM kernel: image 535155712, uncompressed 1299705856 (317311), compressed 532371088 (40%), sum1 7ecfeac0, sum2 75dbf475
    7/10/12 1:06:47.000 PM kernel: wired_pages_encrypted 122836, wired_pages_clear 51452, dirty_pages_encrypted 143023
    7/10/12 1:06:47.000 PM kernel: hibernate_write_image done(0)
    7/10/12 1:06:47.000 PM kernel: sleep
    7/10/12 1:06:47.000 PM kernel: SMC::smcHandleInterruptEvent WARNING status=0x0 (0x40 not set) notif=0x0
    7/10/12 1:06:48.000 PM kernel: Wake reason: EC.LidOpen EHC1 (User)
    7/10/12 5:43:42.000 PM kernel: SMC::smcHandleInterruptEvent WARNING status=0x0 (0x40 not set) notif=0x0
    7/10/12 5:43:42.000 PM kernel: Previous Sleep Cause: 5
    7/10/12 5:43:42.000 PM kernel: The USB device HubDevice (Port 1 of Hub at 0xfd000000) may have caused a wake by issuing a remote wakeup (2)
    7/10/12 5:43:42.000 PM kernel: en1: 802.11d country code set to 'X0'.
    7/10/12 5:43:42.000 PM kernel: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    7/10/12 5:43:42.000 PM kernel: The USB device Lexmark X264dn (Port 2 of Hub at 0xfd100000) may have caused a wake by being disconnected
    7/10/12 5:43:44.000 PM kernel: CoreStorageGroup::translateUnmapExtent(10179334656, 535155200): non-block-aligned request! (blockSize is 4096)
    7/10/12 5:43:45.000 PM kernel: en1: 802.11d country code set to 'US'.
    7/10/12 5:43:45.000 PM kernel: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    7/10/12 5:43:45.738 PM UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - PreProbe
    7/10/12 5:43:45.778 PM configd: network configuration changed.
    7/10/12 5:43:45.781 PM applepushserviced: <APSCourier: 0x7fe77c8089d0>: Stream error occurred for <APSTCPStream: 0x10c91cd60>: The operation couldn’t be completed. Socket is not connected
    7/10/12 5:43:45.786 PM applepushserviced: <APSCourier: 0x7fe77c8089d0>: Stream error occurred for <APSTCPStream: 0x7fe77c9018f0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    7/10/12 5:43:45.787 PM applepushserviced: <APSCourier: 0x7fe77c8089d0>: Stream error occurred for <APSTCPStream: 0x7fe77ad41f00>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    7/10/12 5:43:45.000 PM kernel: MacAuthEvent en1   Auth result for: 00:23:df:f7:bc:e5  MAC AUTH succeeded
    7/10/12 5:43:45.000 PM kernel: wlEvent: en1 en1 Link UP virtIf = 0
    7/10/12 5:43:45.000 PM kernel: AirPort: Link Up on en1
    7/10/12 5:43:45.000 PM kernel: en1: BSSID changed to 00:23:df:f7:bc:e5
    7/10/12 5:43:45.000 PM kernel: AirPort: RSN handshake complete on en1
    7/10/12 5:43:45.929 PM configd: network configuration changed.
    7/10/12 5:43:48.446 PM applepushserviced: <APSCourier: 0x7fe77c8089d0>: Stream error occurred for <APSTCPStream: 0x7fe77cb174e0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    7/10/12 5:43:53.000 PM kernel: AppleThunderboltNHI::enablePower - turn power off, status = 0x0, result_value = 0x0
    7/10/12 5:43:57.501 PM configd: network configuration changed.
    7/10/12 5:43:57.520 PM UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - Probe
    7/10/12 5:43:57.520 PM UserEventAgent: CaptiveNetworkSupport:CaptiveStartDetect:2343 Bypassing probe on Marie's Airport because it is protected and not on the exception list
    7/10/12 5:43:57.521 PM UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - Unknown
    7/10/12 5:43:57.522 PM configd: network configuration changed.
    7/10/12 5:44:04.378 PM warmd: [_bootcachectl_playlist_dir_for_user:1887] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/689E52A8-08D6-42ED-BDB8-A7C7AFE2B9B4 failed: 13 Permission denied
    7/10/12 5:44:04.378 PM warmd: [_bootcachectl_playlist_exists:446] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/689E52A8-08D6-42ED-BDB8-A7C7AFE2B9B4/app.com.apple.Safari.pl aylist failed: 13 Permission denied
    7/10/12 5:44:09.005 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0x1169f0 of class __NSCFDictionary autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:44:10.406 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:44:13.366 PM PluginProcess: REQUIRE_NO_ERR failure: 0xe00002d7 - file: /SourceCache/IOBluetoothFamily/IOBluetoothFamily-4050.4.11/Core/Framework/Core/ Device/IOBluetoothDeviceConfigUserLib.m:446
    7/10/12 5:44:13.366 PM [0x0-0x1c11c1].com.apple.Safari: 2012-07-10 17:44:13.365 PluginProcess[5487:9703] REQUIRE_NO_ERR failure: 0xe00002d7 - file: /SourceCache/IOBluetoothFamily/IOBluetoothFamily-4050.4.11/Core/Framework/Core/ Device/IOBluetoothDeviceConfigUserLib.m:446
    7/10/12 5:44:14.905 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:44:14.949 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:44:25.127 PM com.apple.backupd: Starting standard backup
    7/10/12 5:44:25.000 PM kernel: nspace-handler-set-snapshot-time: 1341967467
    7/10/12 5:44:26.655 PM com.apple.backupd: Error -35 while resolving alias to backup target
    7/10/12 5:44:36.668 PM com.apple.backupd: Backup failed with error: 19
    7/10/12 5:45:14.993 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:46:15.040 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:47:15.067 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:48:15.096 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:49:15.122 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:50:15.151 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:51:15.179 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:52:15.205 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:53:15.234 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:54:15.263 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:55:15.292 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:56:04.094 PM diskmanagementd: DM ->T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: inHostDiskUDS=0x10ea08c20=disk1=Macintosh HD inWhatStr=RecoveryInfoBaseSystemVersion
    7/10/12 5:56:04.206 PM diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: did get booterRecoveryUDS=0x10ea08ae0=disk0s3=Recovery HD
    7/10/12 5:56:04.496 PM diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: did mount nobrowse; MP=/Volumes/Recovery HD OMS=0x7ffc3e3002b0
    7/10/12 5:56:04.496 PM diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: getting dict from file=/Volumes/Recovery HD/com.apple.recovery.boot/SystemVersion.plist
    7/10/12 5:56:04.512 PM diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: got dict (or NULL=will return err): oooInfoDict=0x7ffc3d107260
    7/10/12 5:56:04.544 PM fseventsd: Logging disabled completely for device:1: /Volumes/Recovery HD
    7/10/12 5:56:04.721 PM diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: did if-needed-best-effort unmount
    7/10/12 5:56:04.721 PM diskmanagementd: DM <-T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: retErr=0 outInfoDict={
        ProductBuildVersion = 11C74;
        ProductCopyright = "1983-2011 Apple Inc.";
        ProductName = "Mac OS X";
        ProductUserVisibleVersion = "10.7.2";
        ProductVersion = "10.7.2";
    7/10/12 5:56:15.319 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:56:22.822 PM com.apple.backupd: Starting standard backup
    7/10/12 5:56:22.840 PM com.apple.backupd: Error -35 while resolving alias to backup target
    7/10/12 5:56:23.000 PM kernel: nspace-handler-set-snapshot-time: 1341968184
    7/10/12 5:56:32.850 PM com.apple.backupd: Backup failed with error: 19
    7/10/12 5:56:34.506 PM com.apple.backupd: Starting standard backup
    7/10/12 5:56:34.567 PM com.apple.backupd: Error -35 while resolving alias to backup target
    7/10/12 5:56:35.000 PM kernel: nspace-handler-set-snapshot-time: 1341968196
    7/10/12 5:56:36.799 PM AddressBookSourceSync: [CardDAVPlugin-ERROR] -getPrincipalInfo:[_controller principalPropertiesAtURL:https://m4sawdust%[email protected]/principals/users////m4sawdust%[email protected]/principals/users//] Error Domain=CoreDAVHTTPStatusErrorDomain Code=401 "The operation couldn’t be completed. (CoreDAVHTTPStatusErrorDomain error 401.)" UserInfo=0x7fa30c8a3640 {CoreDAVHTTPHeaders=<CFBasicHash 0x7fa30c8a35d0 [0x7fff73888fa0]>{type = immutable dict, count = 10,
    entries =>
              0 : Case Insensitive Key: Connection = <CFString 0x7fa30c8a0120 [0x7fff73888fa0]>{contents = "keep-alive"}
              1 : Case Insensitive Key: Content-Type = <CFString 0x7fa30c8a00c0 [0x7fff73888fa0]>{contents = "text/html; charset=utf-8"}
              2 : Case Insensitive Key: Server = <CFString 0x7fa30c8a3620 [0x7fff73888fa0]>{contents = "YTS/1.19.11"}
              3 : Case Insensitive Key: Transfer-Encoding = <CFString 0x7fff729c13b8 [0x7fff73888fa0]>{contents = "Identity"}
              4 : Case Insensitive Key: Age = <CFString 0x7fff7386fac0 [0x7fff73888fa0]>{contents = "0"}
              5 : Case Insensitive Key: P3P = <CFString 0x7fa30c889930 [0x7fff73888fa0]>{contents = "policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV""}
              6 : Case Insensitive Key: Date = <CFString 0x7fa30c888c10 [0x7fff73888fa0]>{contents = "Wed, 11 Jul 2012 00:56:31 GMT"}
              9 : Case Insensitive Key: Www-Authenticate = <CFString 0x7fa30c8a0040 [0x7fff73888fa0]>{contents = "Basic realm="Zimbra""}
              11 : Case Insensitive Key: Cache-Control = <CFString 0x7fa30c8a0070 [0x7fff73888fa0]>{contents = "private"}
              12 : Case Insensitive Key: Vary = <CFString 0x7fa30c8a0090 [0x7fff73888fa0]>{contents = "Accept-Encoding"}
    7/10/12 5:56:44.579 PM com.apple.backupd: Backup failed with error: 19
    7/10/12 5:57:15.346 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:58:15.393 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 5:58:29.000 PM kernel: (default pager): [KERNEL]: ps_allocate_cluster - send HI_WAT_ALERT
    7/10/12 5:58:29.000 PM kernel: macx_swapon SUCCESS
    7/10/12 5:59:15.421 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:00:15.506 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:01:15.536 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:02:15.565 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:03:15.921 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:04:15.952 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:05:15.984 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:06:16.016 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:07:16.044 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:08:16.074 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:09:16.105 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:10:16.131 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:11:16.161 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:12:16.191 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:13:16.221 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:14:16.253 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:15:16.281 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:16:16.311 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:17:16.338 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:18:16.368 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:19:16.395 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:20:16.425 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:21:16.456 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:22:16.481 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:23:16.512 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:24:16.544 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:25:16.577 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:26:16.606 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:27:16.635 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:28:16.668 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:29:16.698 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:30:16.725 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:31:16.756 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:32:16.782 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:33:16.810 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:34:16.842 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:35:16.873 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:36:16.904 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:37:16.935 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:38:16.966 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:39:16.996 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:40:17.025 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:41:17.055 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:42:17.087 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:43:17.119 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:44:17.153 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:45:17.180 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:46:17.211 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:47:17.241 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:48:17.272 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:49:17.298 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:50:17.329 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:51:17.358 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:52:17.387 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:53:17.417 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:53:43.631 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:54:17.448 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:55:17.480 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:56:17.512 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:56:22.854 PM com.apple.backupd: Starting standard backup
    7/10/12 6:56:22.887 PM com.apple.backupd: Error -35 while resolving alias to backup target
    7/10/12 6:56:23.000 PM kernel: nspace-handler-set-snapshot-time: 1341971784
    7/10/12 6:56:32.923 PM com.apple.backupd: Backup failed with error: 19
    7/10/12 6:56:37.268 PM AddressBookSourceSync: [CardDAVPlugin-ERROR] -getPrincipalInfo:[_controller principalPropertiesAtURL:https://m4sawdust%[email protected]/principals/users/st% 40sbcglobal.net///m4sawdust%[email protected]/principals/users/st%40sbcglobal.net/] Error Domain=CoreDAVHTTPStatusErrorDomain Code=401 "The operation couldn’t be completed. (CoreDAVHTTPStatusErrorDomain error 401.)" UserInfo=0x1061c9960 {CoreDAVHTTPHeaders=<CFBasicHash 0x1061d94b0 [0x7fff73888fa0]>{type = immutable dict, count = 10,
    entries =>
              0 : Case Insensitive Key: Connection = <CFString 0x7ff2e760d3b0 [0x7fff73888fa0]>{contents = "keep-alive"}
              1 : Case Insensitive Key: Content-Type = <CFString 0x1061ad390 [0x7fff73888fa0]>{contents = "text/html; charset=utf-8"}
              2 : Case Insensitive Key: Server = <CFString 0x1061cb500 [0x7fff73888fa0]>{contents = "YTS/1.19.11"}
              3 : Case Insensitive Key: Transfer-Encoding = <CFString 0x7fff729c13b8 [0x7fff73888fa0]>{contents = "Identity"}
              4 : Case Insensitive Key: Age = <CFString 0x7fff7386fac0 [0x7fff73888fa0]>{contents = "0"}
              5 : Case Insensitive Key: P3P = <CFString 0x1061cf270 [0x7fff73888fa0]>{contents = "policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV""}
              6 : Case Insensitive Key: Date = <CFString 0x7ff2e760e9d0 [0x7fff73888fa0]>{contents = "Wed, 11 Jul 2012 01:56:31 GMT"}
              9 : Case Insensitive Key: Www-Authenticate = <CFString 0x7ff2e7610300 [0x7fff73888fa0]>{contents = "Basic realm="Zimbra""}
              11 : Case Insensitive Key: Cache-Control = <CFString 0x7ff2e760cf60 [0x7fff73888fa0]>{contents = "private"}
              12 : Case Insensitive Key: Vary = <CFString 0x1061d6460 [0x7fff73888fa0]>{contents = "Accept-Encoding"}
    7/10/12 6:57:17.538 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:58:17.586 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 6:59:17.614 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:00:17.643 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:01:17.674 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:02:17.705 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:03:17.733 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:04:17.757 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:05:17.782 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:06:17.810 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:07:17.836 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:08:17.860 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:09:17.888 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:10:17.913 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:11:17.937 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:12:17.963 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:13:17.989 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:14:18.015 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:15:18.040 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:16:18.069 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:17:18.092 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:18:18.116 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:19:06.483 PM PluginProcess: kCGErrorIllegalArgument: _CGSFindSharedWindow: WID 2046
    7/10/12 7:19:06.483 PM PluginProcess: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    7/10/12 7:19:06.483 PM PluginProcess: kCGErrorIllegalArgument: CGSRemoveSurface: Invalid window 0x7fe
    7/10/12 7:19:16.064 PM powerd: PMScheduleWakeEventChooseBest: m=0.00 s=0.00 a=0.00
    7/10/12 7:19:16.000 PM kernel: hibernate image path: /var/vm/sleepimage
    7/10/12 7:19:16.000 PM kernel: sizeof(IOHibernateImageHeader) == 512
    7/10/12 7:19:17.000 PM kernel: Opened file /var/vm/sleepimage, size 4294967296, partition base 0x0, maxio 400000 ssd 0
    7/10/12 7:19:17.000 PM kernel: hibernate image major 14, minor 0, blocksize 512, pollers 4
    7/10/12 7:19:17.000 PM kernel: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    7/10/12 7:19:17.000 PM kernel: hibernate_setup(0) took 0 ms
    7/10/12 7:19:18.141 PM [0x0-0x1c11c1].com.apple.Safari: objc[5487]: Object 0xac178a30 of class __NSCFBoolean autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    7/10/12 7:19:19.000 PM kernel: AppleThunderboltNHI::enablePower - turn power on, status = 0x0, result_value = 0x0
    7/10/12 7:19:19.000 PM kernel: en1: BSSID changed to 00:23:df:f7:bc:e5
    7/10/12 7:19:19.000 PM kernel: wlEvent: en1 en1 Link DOWN virtIf = 0
    7/10/12 7:19:19.000 PM kernel: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    7/10/12 7:19:29.000 PM kernel: hibernate_page_list_setall start 0xffffff806b478000, 0xffffff806b5fe000
    7/10/12 7:19:29.000 PM kernel: hibernate_page_list_setall time: 222 ms
    7/10/12 7:19:29.000 PM kernel: pages 980155, wire 178553, act 213177, inact 2462, spec 81, zf 2438, throt 0, could discard act 134025 inact 243681 purgeable 7140 spec 198598
    7/10/12 7:19:29.000 PM kernel: hibernate_page_list_setall found pageCount 396711
    7/10/12 7:19:29.000 PM kernel: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    7/10/12 7:19:29.000 PM kernel: IOHibernatePollerOpen(0)
    7/10/12 7:19:29.000 PM kernel: writing 396416 pages
    7/10/12 7:19:29.000 PM kernel: encryptStart 2f7f0
    7/10/12 7:19:29.000 PM kernel: encryptEnd daf6400
    7/10/12 7:19:29.000 PM kernel: image1Size 0x123d1c00, encryptStart1 0x2f7f0, End1 0xdaf6400
    7/10/12 7:19:29.000 PM kernel: encryptStart 123d1c00
    7/10/12 7:19:29.000 PM kernel: encryptEnd 2b33a000
    7/10/12 7:19:29.000 PM kernel: PMStats: Hibernate write took 9475 ms
    7/10/12 7:19:29.000 PM kernel: all time: 9475 ms, comp bytes: 1624133632 time: 1469 ms 1053 Mb/s, crypt bytes: 648212496 time: 1186 ms 520 Mb/s,
    7/10/12 7:19:29.000 PM kernel: image 724803584, uncompressed 1624133632 (396517), compressed 721346656 (44%), sum1 eb16c6e0, sum2 73408d7e
    7/10/12 7:19:29.000 PM kernel: wired_pages_encrypted 126945, wired_pages_clear 51414, dirty_pages_encrypted 218158
    7/10/12 7:19:29.000 PM kernel: hibernate_write_image done(0)
    7/10/12 7:19:29.000 PM kernel: sleep
    7/10/12 7:19:29.000 PM kernel: SMC::smcHandleInterruptEvent WARNING status=0x0 (0x40 not set) notif=0x0
    7/10/12 7:19:30.000 PM kernel: Wake reason: EC.LidOpen (User)
    7/10/12 7:45:01.000 PM kernel: SMC::smcHandleInterruptEvent WARNING status=0x0 (0x40 not set) notif=0x0
    7/10/12 7:45:01.000 PM kernel: Previous Sleep Cause: 5
    7/10/12 7:45:01.000 PM kernel: en1: 802.11d country code set to 'X0'.
    7/10/12 7:45:01.000 PM kernel: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    7/10/12 7:45:02.000 PM kernel: CoreStorageGroup::translateUnmapExtent(10179334656, 724803072): non-block-aligned request! (blockSize is 4096)
    7/10/12 7:45:03.000 PM kernel: en1: 802.11d country code set to 'US'.
    7/10/12 7:45:03.000 PM kernel: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    7/10/12 7:45:03.996 PM UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - PreProbe
    7/10/12 7:45:04.022 PM configd: network configuration changed.
    7/10/12 7:45:04.025 PM applepushserviced: <APSCourier: 0x7fe77c8089d0>: Stream error occurred for <APSTCPStream: 0x7fe77cb174e0>: The operation couldn’t be completed. Socket is not connected
    7/10/12 7:45:04.030 PM configd: network configuration changed.
    7/10/12 7:45:04.034 PM applepushserviced: <APSCourier: 0x7fe77c8089d0>: Stream error occurred for <APSTCPStream: 0x7fe77c9018f0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    7/10/12 7:45:04.038 PM applepushserviced: <APSCourier: 0x7fe77c8089d0>: Stream error occurred for <APSTCPStream: 0x7fe77cb2c3a0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    7/10/12 7:45:04.039 PM applepushserviced: <APSCourier: 0x7fe77c8089d0>: Stream error occurred for <APSTCPStream: 0x7fe77cb0a1f0>: The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.)
    7/10/12 7:45:04.000 PM kernel: MacAuthEvent en1   Auth result for: 00:23:df:f7:bc:e5  MAC AUTH succeeded
    7/10/12 7:45:04.000 PM kernel: wlEvent: en1 en1 Link UP virtIf = 0
    7/10/12 7:45:04.000 PM kernel: AirPort: Link Up on en1
    7/10/12 7:45:04.000 PM kernel: en1: BSSID changed to 00:23:df:f7:bc:e5
    7/10/12 7:45:04.062 PM configd: network configuration changed.
    7/10/12 7:45:04.000 PM kernel: AirPort: RSN handshake complete on en1
    7/10/12 7:45:04.096 PM configd: network configuration changed.
    7/10/12 7:45:04.111 PM UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - Probe
    7/10/12 7:45:04.111 PM UserEventAgent: CaptiveNetworkSupport:CaptiveStartDetect:2343 Bypassing probe on Marie's Airport because it is protected and not on the exception list
    7/10/12 7:45:04.112 PM UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - Unknown
    7/10/12 7:45:04.113 PM configd: network configuration changed.
    7/10/12 7:45:04.754 PM airportd: _doAutoJoin: Already associated to “Marie's Airport”. Bailing on auto-join.
    7/10/12 7:45:07.571 PM mDNSResponder: DeregisterInterface: Frequent transitions for interface en1 (10.0.1.5)
    7/10/12 7:45:12.000 PM kernel: AppleThunderboltNHI::enablePower - turn power off, status = 0x0, result_value = 0x0
    7/10/12 7:45:23.390 PM powerd: PMScheduleWakeEventChooseBest: m=0.00 s=0.00 a=0.00
    7/10/12 7:45:23.000 PM kernel: hibernate image path: /var/vm/sleepimage
    7/10/12 7:45:23.000 PM kernel: sizeof(IOHibernateImageHeader) == 512
    7/10/12 7:45:23.000 PM kernel: Opened file /var/vm/sleepimage, size 4294967296, partition base 0x0, maxio 400000 ssd 0
    7/10/12 7:45:23.000 PM kernel: hibernate image major 14, minor 0, blocksize 512, pollers 4
    7/10/12 7:45:23.000 PM kernel: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    7/10/12 7:45:23.000 PM kernel: hibernate_setup(0) took 0 ms
    7/10/12 7:45:25.000 PM kernel: AppleThunderboltNHI::enablePower - turn power on, status = 0x0, result_value = 0x0
    7/10/12 7:45:25.000 PM kernel: en1: BSSID changed to 00:23:df:f7:bc:e5
    7/10/12 7:45:26.000 PM kernel: wlEvent: en1 en1 Link DOWN virtIf = 0
    7/10/12 7:45:26.000 PM kernel: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    7/10/12 7:45:36.000 PM kernel: hibernate_page_list_setall start 0xffffff806b478000, 0xffffff806b5fe000
    7/10/12 7:45:36.000 PM kernel: hibernate_page_list_setall time: 220 ms
    7/10/12 7:45:36.000 PM kernel: pages 982016, wire 175846, act 217387, inact 2452, spec 82, zf 2438, throt 0, could discard act 134011 inact 243705 purgeable 7510 spec 198585
    7/10/12 7:45:36.000 PM kernel: hibernate_page_list_setall found pageCount 398205
    7/10/12 7:45:36.000 PM kernel: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    7/10/12 7:45:36.000 PM kernel: IOHibernatePollerOpen(0)
    7/10/12 7:45:36.000 PM kernel: writing 396728 pages
    7/10/12 7:45:36.000 PM kernel: encryptStart 4cfce0
    7/10/12 7:45:36.000 PM kernel: encryptEnd d5a4c00
    7/10/12 7:45:36.000 PM kernel: image1Size 0x11e8fc00, encryptStart1 0x4cfce0, End1 0xd5a4c00
    7/10/12 7:45:36.000 PM kernel: encryptStart 11e8fc00
    7/10/12 7:45:36.000 PM kernel: encryptEnd 2b5cb200
    7/10/12 7:45:36.000 PM kernel: PMStats: Hibernate write took 9540 m

  • In iCloud control panel the mail, calender and contact fields are not selectable.

    Hi,
    I have a Windows7 pro 64bit with outlook 2010, latest version of iTunes and iCloud control panel.
    My mobilMe account is working in Outlook, notes from my iPone and iPad are shared, but there 's no entry for contacs or agenda.
    When I open iCloud control panel the checkbox for mail, contact and agenda are grayed out.
    To be honnest I had the same problem with the mobileMe contol pannel, and never had it working. (I logged out mobilme contol panel)
    What do I need to do to share my iCloud agenda in outlook and copy my outlook contacts in iCloud?
    so... Help please!
    Mario

    Appreciate the response.  I am familiar with the server settings.  I used them to manually make things work for a short amount of time.  Then problem re-started.
    My PW is correct.  I can log into iCloud from the web and it works on my other Apple devices.
    Not sure what else to try.  SOme posts suggest others having a similar problem.

  • IF WE DOES NOT SELECT ANY VALUE IN SELECTION SCREEN WHAT WILL BE THE OUTPUT

    hi
    plz give me the answer for this

    Hi bhuthapalli,
    1. Normally, all reports are designed so that
      if we do not enter any thing on screen, it will show all records.
    2. Normally reports use SELECT OPTION  and use IN for the query.
       This would take care if nothing is entered in select option.
      Nothing entered in select option means all records.
    3. If there is a parameter on the screen,
       it is usually made obligatory.
       Bcos if we do not enter anything in parameter,
        it may not give records.
       (Bcos for parameter = is used in query)
    regards,
    amit m.

  • SelectOneChoice Existing Value Not Selected

    Hi,
    I have created an ADF Form for a single table. The table contains a foreign key to another table. I created a selectOneChoice so that a user can update the foreign key value form the selectOneChoice object. I have set this to "selection required". When the form opens the selectOneChoice object displays an empty field, the current value for the foreign key is not displayed. I have 8 pages doing the same thing, one of them displays the current value when it opens but I can see no difference between this page, backing page and backing bean. Maybe its a refresh order or some property but I can't find it.
    Kind regards,
    Richie.

    1. If licenesId is Integer you can have NullPointerException on hashCode().
    2. Your equal() isn't reflexive. If x.licesnseId == null, then o.equals(o) == false. Add at the end or begin of return || (o==this). (It can be x != x)!
    3. You don't check o class. This will cause ClassCastExc if you call equal on other object
    Proper beginning is for example
    return (o != null && o.getClass() == this.getClass() &&
       ( ((License) o).getLicenseId() != null &&
       ((License) o).getLicenseId() == this.getLicenseId()))  || (o==this)Other things are good. equal() & hashCode() fulfils requirements for those methods (with exception of #2). Just your objects are equal if they have same id. In similar way NetBeans generated equals for entities :( Your way to decide what is equal to what.

  • How to display the current value selected in DDLB of another screen

    hi Experts
    I need some info regarding the dropdownlist in BSP.
    I have two screens . One screen contains the table view which contains a set of records.Each record has two columns.
    Second screen contains 2 drop down list.
    When i select one record and then press the submit button in the first screen .Then i want that the selected value of the selected record will display in the DDLB of the second screen. And then i can again select the value from the drop down list.
    For example:
    1st screen:
    record 1.
    col 1     col 2
    record 2
    col 1     col 2
    2nd screen
    ddlb1...........
    ddlb2...........
    So when i select the record1, then the current value of col1 and col2 should visible on the ddlbs of second screen first time. Then i choose other value from the ddlbs.....
    My Question is how to do the following
    "when i select the record1, then the current value of col1 and col2 should visible on the ddlbs of second screen".
    please provide some suggestions...
    Thanks.

    Hi,
    You can use form with post method
    like
    <htmlb:form method = "post"
                      action = "page2.htm"
                      target = "coding" >
    <htmlb:dropdownListBox id             = "labelAlignment"
                                               selection      = "<%= me->labelAlignment %>"
                                               onClientSelect = "document.forms[0].submit();" >
                          <htmlb:listBoxItem key   = "LEFT"
                                             value = "LEFT" />
                          <htmlb:listBoxItem key   = "RIGHT"
                                             value = "RIGHT" />
                        </htmlb:dropdownListBox>
    So once you select col1 and col2 in your case its value is in page attribute say hold, this attributes needs to be defined in page2.htm also with auto checked. You can get the val selected in page1.htm
    If helpful rewards point.
    Regards,
    Albert

  • LOV in a Table - "Not a valid Value" - Urgent

    Hi All,
    I have an LOV inside a Table region. The table has the Add another row button. considering the table has currently 3 rows created and the user enters a dummy value not present in the LOV in the first row and tabs out. The LOV automatically pops up without any values. The issue is when the user closes the pop-up window or clicks on its cancel button. The LOV doesn't validate the data present in the text box. If the Submit button is clicked or the save button is clicked , The framework automatically validates the data present in the text box and throws an error "Not a valid value" .
    Now im not sure why but the dummy data entered in the first text box is copied to the second and third text box , and the error is displayed for all the three rows. If there is valid data present in the remaining rows it just over-writes the data with the dummy value.
    I have written SOP's in the controller's Process request as well as the process form request but none of them seem to display anything.
    So the framework is basically validating this before the controller is called.
    Im working on a 11.5.10 instance.
    Need help to know if anyone has come across such a situation before.
    Thanks ,
    Dean

    Dean,
    Seems to be a looping issue. Also you need to get the exact error row.
    Thanks
    --Anil                                                                                                                                                                                                   

  • LOV not returning a value

    I'm pretty new to Oracle Forms and have a problem where a LOV is not returning a value unless a bad/invalid value is entered in the form. If the field is null and I choose help/list the LOV appears but the selected value does not then populate the field. If I enter invalid data, when I try to leave the field the LOV appears and I can then successfully select a value and the field is populated correctly. I have the field set to "Validate from list". Any suggestions?
    Bob

    Yes. I did populate return value. What is odd is that the LOV works if I enter an invalid value. Because of the validate from list the LOV reappears and then when a value is selected it populates the field. I just will not work when the field is empty.

  • Random selection of rows from a 2D array then subset both the rows that were selected and those that were not. Please see message below.

    For example, I have a 2D array with 46 rows and 400 columns. I would like to randomly select 46 data rows from the 2D array. By doing the random selection it means that not all individual 46 rows will be selected some rows may appear more than once as there may be some duplicates or triplicates in the random selection. The importan thing is that we will have randomly selected 46 rows of data (no matter that some rows appear more than once). Then I would like to subset these randomly selected 46 data rows (some which will be duplicated, or triplicated, etc.) and then also find and subset the rows that were not selected. Does this make sense? Then i would like to do this say 10 times for this data set. So that then I will have 2 by 10 data sets: the first 10 each with 46 rows and the other 10 with n rows depending on how many WERE NOT randomly selected. i hope that my explanation is clear. I am relatively new to Labview. It is really great so I am getting better! If anyone can help me with this problems it will be great. RVR

    Start by generating randon #s between 0 and 45. Run a for loop X times and in it use the random function, multiply the result by X and round down (-infinity). You can make this into a subVI, which you can reuse later. In the same loop, or in a different one, use Index Array to extract the rows which were selected (wiring the result out of the loop with auto indexing causes it to be rebuilt into a 2D array).
    One possible solution for the second part would be to go over the array of randomly generated numbers in a for loop and use Search 1D Array to find each of the numbers (i). If you get -1, it means the row wasn't selected and you can extract it.
    I hope this puts you on the right path. If not, don't be afraid to ask more.
    To learn more about LV, I suggest you read the LabVIEW user manual. Also, try searching this site and google for LabVIEW tutorials. Here and here are a couple you can start with. You can also contact your local NI office and join one of their courses.
    In addition, I suggest you read the LabVIEW style guide.
    Try to take over the world!

Maybe you are looking for

  • Import image sequence in QT doesnt import all images

    I am trying to import 252 images in a sequence, but QT only imports the first 42.  I try importing from 43 on, but it only imports 43.  Then I try from 44 on and it works.  The only change is that the date taken changes from one day to the next at #4

  • How to make relationship block mandatory?

    Hi, Please let me know how to make relationship block mandatory to create a business partner? Vinay

  • Visual Admin: Log Viewer not opening

    Hello all, I have logged in to Visual Admin with J2ee_admin user, the Log viewer service is not working properly. As I am clicking Log viewer, the Visual admin getting hang. Regrads, Shanker C Edited by: shanker c on Jul 29, 2009 8:25 AM

  • About to Purchase Macbook Pro, with reservations

    I am about to purchase a Macbook Pro, but I have some reservations I wanted to level about, and get the communities opinion. I really want leopard when it is released in October, but I'm going to school, so I cant wait till then to purchase it. I've

  • Unable to instal VOX USB 2.0 drivers in WINDOWS XP Prof. SP2

    Hi, I am unable to instal drivers in Windows XP Prof. SP2 for VOX USB 2.0. When I instal drivers from manufacturer's CD, instalation tells me, that it cannot instal some update for XP SP1. But I have SP2, so it should be OK. Then, after computer rest