Issue with xfce4-dict-plugin from current

pacman -S xfce4-goodies
error: unresolvable dependencies:
xfce4-dict-plugin: requires xfce4-panel>=4.40 but it is not in the sync db
Now, the .PKGINFO contains depend = xfce4-panel>=4.4.0 and the entire xfce4 group is installed from the archlinux.org mirror.. I'm in the dark here.
Cheers.

It's fixed in xfce4-dict-plugin 0.2.1-2

Similar Messages

  • Issue with Executing OS commands from Stored Procedure

    I am trying to execute the scripts provided at :
    http://github.com/xtender/XT_SHELL
    provided by xtender user.
    As required, I have asked my DBAs to grant privileges by executing the following scripts:
    Begin
      --change to needed permissions and execute
      dbms_java.grant_permission( 'ODS', 'SYS:java.io.FilePermission', '/var/factiva/ODS/bin/CVIM_Rpt_ExportCSVFile’, 'read,write,execute' );
    end;
    /where CVIM_Rpt_ExportCSVFile is my script residing in the Unix server where my Oracle is installed.
    The error I am facing when I try to execute the following command is:
    select * from table(xt_shell.shell_exec('/var/scripts/CVIM_Rpt_ExportCSVFile',100))
    Exception:the Permission (java.io.FilePermission /var/scripts/CVIM_Rpt_ExportCSVFile execute) has not been granted to ODS. The PL/SQL to grant this is dbms_java.grant_permission( 'ODS', 'SYS:java.io.FilePermission', '/var/scripts/CVIM_Rpt_ExportCSVFile', 'execute' )I have asked my DBA to also execute the following scripts: - But I still see the same error as above. I am not able to figure out whats going on. Can anyone pls help me out??
    EXEC Dbms_Java.Grant_Permission('ODS', 'SYS:java.lang.RuntimePermission', 'writeFileDescriptor', '');
    EXEC Dbms_Java.Grant_Permission(ODS', 'SYS:java.lang.RuntimePermission', 'readFileDescriptor', '');
    dbms_java.grant_permission( 'ODS', 'SYS:java.io.FilePermission', '/var/scripts/CVIM_Rpt_ExportCSVFile', 'execute' )

    DUPLICATE
    ===============================================================
    Issue with Executing OS commands from Stored Procedure
    ==============================================================

  • Is there an issue with streaming videos direct from itunes? I

    Is there an issue with streaming videos direct from itunes? I have good wifi but films just buffer , doesn't happen on flixster on netflix , wonder if there is any tweak to watch a film uninterrupted , because it is very frustrating? Thanks

    Apple appears to be having trouble with the iTunes Store servers right now.
    (81070)

  • [bug?] playback issues with QT browser plugin, any workarounds?

    I've noticed a playback issue with media files using the quicktime plugin (currently v7.1.3) with Firefox 1.5.0.x and now Firefox 2.0 on Windows XP (SP2):
    Description:
    When I open a media file in a separate tab or window, audio playback cuts out when I switch focus away from the tab or window (i.e. when it runs in the background). When I put the tab/window in the foreground again, playing resumes.
    Reproducible: Always
    Steps to Reproduce:
    1. Open an mp3 file with quicktime plugin in a new tab
    2. Switch focus to some other tab or firefox window
    Expected Results:
    Audio playback should continue in the background.
    Actual Results:
    Audio playback cuts out and resumes once you click on the tab containing the plugin or if you hover over it with the cursor. The cutting and resuming out doesn't happen right away but after a short delay, suggesting that it might have something to do with thread prioritization.
    The file is completely buffered by quicktime, this is not about connection speed or bandwidth issues.
    Opening the link to the same file with right-click->Open Link in External Application works well.
    Someone else has filed a bug report against Firefox about this issue here:
    https://bugzilla.mozilla.org/show_bug.cgi?id=339449
    I wouldn't be surprised if this turns out not to be an issue with Gecko but with QuickTime.
    Can other users confirm this on XP? Is this a known QuickTime bug? Are there fixes or workarounds?
    Windows XP

    Yeah I had that thought as well but no joy. It works for the player but it doesn't solve my plugin problem. It really seems to be something about prioritizing, the way the audio cuts in and out - notice how it takes a few fractions of a second before a process loses its CPU cycles when you click away from it? You can observe this with System Monitor on the Mac or Linux or process explorer on XP. That's how the audio is cutting out and back in. I still think it's probably a bug/'feature' either with Gecko, the Firefox browser engine, or with the QT plugin..

  • Issues with Synchronize to and from DB (version 3.3.0.747)

    Having an issue with syncing the model and the data dictionary is a very specific case:
    1. Reverse engineer an existing table (T1)
    2. Copy the table (in data modeler) - T2
    3. Rename the table, make changes (add columns and keys)
    4. Forward engineer the new table (i.e., export and run DD for T2L)
    5. Make additional changes to new table (T2) in data model.
    6. Run sync db with model - the sync routine compares my new table (t2) to the original table (T1) in the database! It cannot "find" my new table (T2) in the database to compare to.
    7. Alternatively try to sync the model with the db - this time it wants to sync the original table (T1) to itself (which has no change) and DROP my new table (T2) from the model.
    It appears that sync is looking at meta data one my new table (T2) that contains the original copied table's name (T1). And in fact if I look at the table Summary properties - the source db object property does list the original table name (T1).
    I also tried to reverse engineer the new table (T2) to the merge with the model, that has the same behavior as the sync.
    Is there a way to fix this short of dropping T1 from the schema?
    Edited by: Kent Graziano on May 20, 2013 2:37 PM

    Hi Kent,
    thanks for reporting the problem. I logged a bug and ER for that.
    Is there a way to fix this short of dropping T1 from the schema?Unnecessary information about source need to be cleared. Here is a script that will help on that:
    //array with 2 elements to illustrate different use cases - the first is used to have exact match on table name
    // the second one ("REGIO") can be used with following check in inList function
    //if(table.getName().startsWith(list)){
    var list = ["Regionsv1","REGIO"];
    function isInList(table){
         for(var i=0;i<list.length;i++){
              // different approaches to match table name can be used
              // be aware of letter case
              //if(table.getName().startsWith(list[i])){
              if(table.getName().equalsIgnoreCase(list[i])){
                   return true;
         return false;
    function clearSourceStampforTable(table){
         clearSourceStamp(table);
         cols = table.getElements();
         for(var i=0;i<cols.length;i++){
              clearSourceStamp(cols[i]);
         keys = table.getKeySet().toArray();
         for(var i=0;i<keys.length;i++){
              clearSourceStamp(keys[i]);
              if(keys[i].isFK()){
                   clearSourceStamp(keys[i].getFKIndexAssociation());
    function clearSourceStamp(object){
         object.setSourceConnName("");
         object.setSourceObjSchema("");
         object.setSourceObjName("");
         object.setSourceDDLFile("");
         object.setDirty(true);
    tables = model.getTableSet().toArray();
    for(var i=0;i<tables.length;i++){
         table = tables[i];
         if(isInList(table)){
              clearSourceStampforTable(table);

  • PHP email form - issue with who it's from

    Hi,
    I've got a referral page on my site where the user puts in their details and a friends details and the form fires off a email to the friend. The form is in HTML and posts it to a PHP file. The problem is I get in the email for who it's from:
    from
    "Scott Bradshaw"@server74.ukservers.net
    I don't want the
    @server74.ukservers.net
    in their.
    Is this an issue with PHP files and forms or is their a way round it? I know I could do a mailto: form but don't want to. What are my options?
    Thanks, Scott

    I'm making the website for someone and they had the hosting set up already but thanks for telling me. I think this is right what I've done:
    function detectSuspect($val, &$ok) {
      if (preg_match('/Content-Type:|Cc:|Bcc:/i', $val)) {
        $ok = false;
    $YourName = Trim(stripslashes($_POST['YourName']));
    $YourEmail = Trim(stripslashes($_POST['YourEmail']));
    $RefName = Trim(stripslashes($_POST['RefName']));
    $RefEmail = Trim(stripslashes($_POST['RefEmail']));
    $EmailFrom = $YourEmail;
    $Subject = $RefName;
    $EmailTo = $RefEmail;
    // validation
    $validationOK=true;
    detectSuspect($YourName, $validationOK);
    detectSuspect($YourEmail, $validationOK);
    detectSuspect($RefName, $validationOK);
    detectSuspect($RefEmail, $validationOK);
    if (!$validationOK) {
      print "<meta http-equiv=\"refresh\" content=\"0;URL=error.html\">";
      exit;
    // prepare email body text
    $Body = "Hi $RefName,
    $YourName thought you would be interested in viewing this online video called A
    tale of 2 customers (< 3 mins).
    www.easybench.org/ataleof2customers3";
    $Body2 = "";
    $Body2 .= "User Name: ";
    $Body2 .= $YourName;
    $Body2 .= "\n";
    $Body2 .= "User Email: ";
    $Body2 .= $YourEmail;
    $Body2 .= "\n";
    $Body2 .= "Referral Name: ";
    $Body2 .= $RefName;
    $Body2 .= "\n";
    $Body2 .= "Referral Email: ";
    $Body2 .= $RefEmail;
    $Body2 .= "\n";
    // send email
    $success = mail($EmailTo, $Subject, $Body, "From: $EmailFrom<$EmailFrom>");
    mail("[email protected]", "Referral details", $Body2, "From: [email protected]");
    // redirect to success page
    if ($success){
      print "<meta http-equiv=\"refresh\" content=\"0;URL=thankyou2.html\">";
    else{
      print "<meta http-equiv=\"refresh\" content=\"0;URL=error.html\">";
    ?>
    I've also got a feedback form thing too, the script above wouldn't work for it I guess as it's protecting against different thing but what's the best way to protect the feedback form? I've heard of a honeypot thing where create hidden form field.
    Thanks, Scott

  • Issue with opening pdf file from web browser

    I have Acrobat Pro ver 6 and Adobe Reader 9.1 on a computer.  when my user tries to open up a pdf from the web he is getting the following error message:
    "The Adobe Acrobat/Reader that is running can not be used to view PDF files in a WEb Browser.  Adbe Acrobat/Reader version 8 or 9 is required.  Please exit and try again."
    What also happens is that Acrobat Pro ver 6 opens up and nothing is there.
    I am not sure why he is getting that message since Reader 9.1 is installed.
    Can any one shed some light on this for me.
    This user needs to have Acrobat and Reader on his system.  I understand that there are issues with having both.
    Also he has it set up so that any PDF is opening using the Reader 9.1.
    Thanks,

    Your PC's default reader configuration for embedded PDFs has become confused, due to multiple Adobe PDF document solutions installed on one PC.
    Solution 1:
    Go to Start > Run
    Type regedit and click OK.
    Browse to the following key: HKEY_CLASSES_ROOT\Software\Adobe\Acrobat\Exe
    Make sure that the correct Default data value is set for the path where Adobe Reader or Acrobat are installed.
    The default installation values are:
    "C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe"
    or
    "C:\Program Files\adobe\acrobat 6.0\acrobat\Acrobat.exe" (not sure about this path.  Check on your PC to be sure)
    depending on whether Adobe Reader or Adobe Acrobat is installed.
    Solution 2:
    Configure the browser to use Acrobat or Adobe Reader as a helper application.
    If you are using Firefox to browse the web, you can change this setting in Firefox by going to:
    Tools > Options
    Click on the "Applications" Tab.
    The first item in the list should be "Adobe Acrobat Document".  Under the Action list, click the drop down arrow and select the application you want to read PDFs within the web browser.  Click OK, and you should be done.
    If you're using Internet Explorer to view PDFs, try the below steps.
    After you configure Acrobat or Adobe Reader as a helper application, the browser starts the helper application in a separate window and displays PDF files within that window. Acrobat and Adobe Reader both include a preference that lets you specify Acrobat or Adobe Reader as the helper application.
    To configure Acrobat or Adobe Reader as a helper application:
    Start Acrobat or Adobe Reader.
    Choose Edit > Preferences.
    Select Internet on the left.
    Deselect Display PDF In Browser Using [Acrobat application], and then click OK.
    Quit Acrobat or Adobe Reader.
    The next time you select a link to a PDF file in the browser, a dialog box asks what you would like to do with the file. If you select Open It, the browser opens the PDF file in Acrobat or Adobe Reader (the helper application); if you select Save It To Disk, the browser saves the PDF file to your hard drive.

  • Issue with opening PDF files from the web Acrobat 8.1.4

    Hello everyone
    I just found out about this problem today, and it manifests in such a manner that when you try to open a PDF document on the web, it hangs for a while, and then the standard message about Adobe Acrobat not being able to open the document comes up, and after you OK away that you get the message that the program shuts down.
    If I download the PDF itself and open it locally it works. Is there any known issue with updates recently that creates this problem?
    The system is running on Windows 7 32-bits, and Adobe Acrobat is a part of the CS3 Master Collection.
    Greetings from Alexander

    Not supported file type can (but not always) mean the PDF was created with an old enough version of Acrobat, that it isn't comaptible with reader X or XI.
    Might have been damaged is pretty cut and dried in its meaning and interpretation.
    There's a known issue with Mac OS and Safari Browser "breaking" PDFs as they download, but it's not so common for Windows. Since these are files you already had, it would be even less applicable.
    You can try downloading an older version of Reader to check if it's a compatibility issue, but you'd have to uninstall the latest to do it and it'd be a lot of bother if they still don't open. It would also mean they are "broken" and cannot be repaired, that I know of.

  • Issue with sent items disappearing from Outlook

    We are having an issue with many of our users who have had their sent items disappear from Outlook. We are running Exchange 2010 SP2 with Rollup 8. All users on Windows 7 appear to be working fine, it is just users on XP that are having the issue. All
    PCs are SP3 with updates applied. The messages were there previously, but the Sent folder shows empty as of Monday. They show correctly in OWA, it is just in Outlook itself that is the problem. If we enable cached mode the items populate, but our standard
    policy is to run online with no local PST. We have tried running Outlook with /clearviews and in Safe Mode, but this does not resolve the issue.

    Hi,
    From your description, all the sent items are correct in OWA. So the Exchange Server is ok.
    About this issue, I recommend you install all the latest Windows updates and check the result.
    Hope it helps.
    If there are any problems, please feel free to let me know.
    Best regards,
    Amy
    Amy Wang
    TechNet Community Support

  • Issues with Syncing to icloud from my iPhone

    I am having trouble with my icloud sync to my iphone. I can enter a contact into iCloud and it shows up on my iPhone. It doesn't work the other way around however, and doesn't sync to my Macbookpro either. Also Is there a preference somwhere (like the good old days), if there is a conflict, that I can make one source overrides the other?
    David

    I hit delete in icloud at step 3 and got the following error and could not delete my contacts in icloud :
    ERROR
    Not found
    FILE
    https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js
    LINE
    483
    EXCEPTION INFO
       __sc_super__:  SC.Error:sc21710: (-1)
       (null)
       _bindings: 
       _observers: 
       _properties:  errorObject
       outlets: 
       SproutCore16001796852657571435:  sc479
       _observableInited:  true
       bindings: 
       _kvo_cacheable:  true
       code:  -1
       (null)
       errorObject:  function () {return this;}
       (null)
       isError:  true
       _kvo_enabled:  true
       _object_init:  function (e) {var t,n=e?e.length:0;for(t=0;t<n;t++)SC._object_extend(this,e[t],this.__sc_super__) ;SC.generateGuid(this,"sc"),this.init();var r=this.initMixin;n=r?r.length:0;for(t=0;t<n;t++)r[t].call(this);return this;}
       mixin:  function () {var e,t=arguments.length,n;for(e=0;e<t;e++)SC.mixin(this,arguments[e]);for(e=0;e<t; e++)n=arguments[e].initMixin,n&&n.call(this);return this;}
       init:  function () {return this.initObservable(),this;}
       isDestroyed:  false
       destroy:  function () {if(this.get("isDestroyed"))return this;this.set("isDestroyed",YES);var e,t=this.destroyMixin,n=t?t.length:0;for(e=0;e<n;e++)t[e].call(this);return this.bindings.invoke("disconnect"),this.bindings=null,this;}
       isObject:  true
       respondsTo:  function (e) {return this[e]instanceof Function;}
       tryToPerform:  function (e, t, n) {return this.respondsTo(e)&&this[e](t,n)!==NO;}
       superclass:  function (e) {var t=arguments.callee.caller;if(!t)throw"superclass cannot determine the caller method";return t.superclass?t.superclass.apply(this,arguments):null;}
       instanceOf:  function (e) {return this.constructor===e;}
       kindOf:  function (e) {return this.constructor.kindOf(e);}
       awake:  function () {var e=this.outlets,t,n,r;for(t=0,n=e.length;t<n;++t)r=e[t],this.get(r);this.binding s.invoke("sync");}
       invokeOnce:  function (e) {return SC.RunLoop.currentRunLoop.invokeOnce(this,e),this;}
       invokeLast:  function (e) {return SC.RunLoop.currentRunLoop.invokeLast(this,e),this;}
       concatenatedProperties:  concatenatedProperties,initMixin,destroyMixin
       isObservable:  true
       automaticallyNotifiesObserversFor:  function (e) {return YES;}
       get:  function (e) {var t=this[e],n;return t===undefined?this.unknownProperty(e):t&&t.isProperty?t.isCacheable?(n=this._kv o_cache,n||(n=this._kvo_cache={}),n[t.cacheKey]!==undefined?n[t.cacheKey]:n[t.ca cheKey]=t.call(this,e)):t.call(this,e):t;}
       set:  function (e, t) {var n=this[e],r=this.automaticallyNotifiesObserversFor(e),i=t,s,o,u,a;if(t===undefi ned&&SC.typeOf(e)===SC.T_HASH){var f=e;for(e in f){if(!f.hasOwnProperty(e))continue;this.set(e,f[e])}return this}if(!r&&this._kvo_cacheable&&(o=this._kvo_cache)){s=this._kvo_cachedep;if(! s||(s=s[e])===undefined)s=this._kvo_computeCachedDependentsFor(e);if(s){u=s.leng th;while(--u>=0)a=s[u],o[a.cacheKey]=o[a.lastSetValueKey]=undefined}}if(n&&n.isP roperty){o=this._kvo_cache;if(n.isVolatile||!o||o[n.lastSetValueKey]!==t)o||(o=t his._kvo_cache={}),o[n.lastSetValueKey]=t,r&&this.propertyWillChange(e),i=n.call (this,e,t),n.isCacheable&&(o[n.cacheKey]=i),r&&this.propertyDidChange(e,i,YES)}e lse n===undefined?(r&&this.propertyWillChange(e),this.unknownProperty(e,t),r&&this. propertyDidChange(e,i)):this[e]!==t&&(r&&this.propertyWillChange(e),i=this[e]=t, r&&this.propertyDidChange(e,i));return this;}
       unknownProperty:  function (e, t) {return t!==undefined&&(this[e]=t),t;}
       beginPropertyChanges:  function () {return this._kvo_changeLevel=(this._kvo_changeLevel||0)+1,this;}
       endPropertyChanges:  function () {this._kvo_changeLevel=(this._kvo_changeLevel||1)-1;var e=this._kvo_changeLevel,t=this._kvo_changes;return e<=0&&t&&t.length>0&&!SC.Observers.isObservingSuspended&&this._notifyPropertyOb servers(),this;}
       propertyWillChange:  function (e) {return this;}
       propertyDidChange:  function (e, t, n) {this._kvo_revision=(this._kvo_revision||0)+1;var r=this._kvo_changeLevel||0,i,s,o,u,a=SC.LOG_OBSERVERS&&this.LOG_OBSERVING!==NO, f=this._kvo_property_chains;if(f){var l=f[e];l&&(this.beginPropertyChanges(),l=SC.clone(l),l.forEach(function(e){e.no tifyPropertyDidChange()}),this.endPropertyChanges())}var c=this._kvo_cache;if(c){n||(u=this[e],u&&u.isProperty&&(c[u.cacheKey]=c[u.lastS etValueKey]=undefined));if(this._kvo_cacheable){i=this._kvo_cachedep;if(!i||(i=i [e])===undefined)i=this._kvo_computeCachedDependentsFor(e);if(i){s=i.length;whil e(--s>=0)o=i[s],c[o.cacheKey]=c[o.lastSetValueKey]=undefined}}}var h=SC.Observers.isObservingSuspended;if(r>0||h){var p=this._kvo_changes;p||(p=this._kvo_changes=SC.CoreSet.create()),p.add(e),h&&(a &&SC.Logger.log("%@%@: will not notify observers because observing is suspended".fmt(SC.KVO_SPACES,this)),SC.Observers.objectHasPendingChanges(this)) }else this._notifyPropertyObservers(e);return this;}
       registerDependentKey:  function (e, t) {var n=this._kvo_dependents,r=this._kvo_chain_dependents,i=this[e],s,o,u,a,f;typeof t=="object"&&t instanceof Array?(s=t,u=0):(s=arguments,u=1),o=s.length,n||(this._kvo_dependents=n={});whi le(--o>=u)a=s[o],a.indexOf(".")>=0?SC._PropertyChain.createChain
    (a,this,e).activate():(f=n[a],f||(f=n[a]=[]),f.push(e));}
       registerDependentKeyWithChain:  function (e, t) {var n=this._chainsFor(e),r;n.add(t);}
       removeDependentKeyWithChain:  function (e, t) {var n=this._chainsFor(e),r;n.remove(t),n.get("length")===0&&delete this._kvo_property_chains[e];}
       _chainsFor:  function (e) {this._kvo_property_chains=this._kvo_property_chains||{};var t=this._kvo_property_chains[e]||SC.CoreSet.create();return this._kvo_property_chains[e]=t,t;}
       _kvo_addCachedDependents:  function (e, t, n, r) {var i=t.length,s,o,u;while(--i>=0)o=t[i],r.add(o),s=this[o],s&&s instanceof Function&&s.isProperty&&(s.isCacheable&&e.push(s),(u=n[o])&&u.length>0&&this._k vo_addCachedDependents(e,u,n,r));}
       _kvo_computeCachedDependentsFor:  function (e) {var t=this._kvo_cachedep,n=this._kvo_dependents,r=n?n[e]:null,i,s;return t||(t=this._kvo_cachedep={}),!r||r.length===0?t[e]=null:(i=t[e]=[],s=SC._TMP_SE EN_SET=SC._TMP_SEEN_SET||SC.CoreSet.create(),s.add(e),this._kvo_addCachedDepende nts(i,r,n,s),s.clear(),i.length===0&&(i=t[e]=null),i);}
       _kvo_for:  function (e, t) {var n=this[e];return this._kvo_cloned||(this._kvo_cloned={}),n?this._kvo_cloned[e]||(n=this[e]=n.cop y(),this._kvo_cloned[e]=YES):(n=this[e]=t===undefined?[]:t.create(),this._kvo_cl oned[e]=YES),n;}
       addObserver:  function (e, t, n, r) {var i,s,o,u;n===undefined&&(n=t,t=this),t||(t=this),typeof n=="string"&&(n=t[n]);if(!n)throw"You must pass a method to addObserver()";return e=e.toString(),e.indexOf(".")>=0?(s=SC._ChainObserver.createChain(this,e,t,n,r) ,s.masterTarget=t,s.masterMethod=n,this._kvo_for(SC.keyFor("_kvo_chains",e)).pus h(s)):(this[e]===undefined&&e.indexOf
    ("@")===0&&this.get(e),t===this&&(t=null),i=SC.keyFor("_kvo_observers",e),this._ kvo_for(i,SC.ObserverSet).add(t,n,r),this._kvo_for("_kvo_observed_keys",SC.CoreS et).add(e)),this.didAddObserver&&this.didAddObserver(e,t,n),this;}
       removeObserver:  function (e, t, n) {var r,i,s,o,u;n===undefined&&(n=t,t=this),t||(t=this),typeof n=="string"&&(n=t[n]);if(!n)throw"You must pass a method to removeObserver()";e=e.toString();if(e.indexOf(".")>=0){r=SC.keyFor("_kvo_chains ",e);if(i=this[r]){i=this._kvo_for(r),u=i.length;while(--u>=0)s=i[u],s&&s.master Target===t&&s.masterMethod===n&&(i[u]=s.destroyChain())}}else{t===this&&(t=null) ,r=SC.keyFor("_kvo_observers",e);if(o=this[r])o=this._kvo_for(r),o.remove(t,n),o .getMembers().length===0&&this._kvo_for("_kvo_observed_keys",SC.CoreSet).remove( e)}return this.didRemoveObserver&&this.didRemoveObserver(e,t,n),this;}
       hasObserverFor:  function (e) {SC.Observers.flush(this);var t=this[SC.keyFor("_kvo_observers",e)],n=this[SC.keyFor("_kvo_local",e)],r;retur n n&&n.length>0?YES:t&&t.getMembers().length>0?YES:NO;}
       initObservable:  function () {if(this._observableInited)return;this._observableInited=YES;var e,t,n,r,i,s,o,u,a,f,l,c,h,p;if(t=this._observers){u=t.length;for(e=0;e<u;e++){n =t[e],i=this[n],s=i.propertyPaths,o=s?s.length:0;for(a=0;a<o;a++)f=s[a],this.add ObservesHandler(i,f)}}this.bindings=[];if(t=this._bindings)for(e=0,p=t.length;e< p;e++)n=t[e],r=this[n],h=n.slice(0,-7),this[n]=this.bind(h,r);if(t=this._propert ies)for(e=0,p=t.length;e<p;e++){n=t[e];if(r=this[n])r.isCacheable&&(this._kvo_ca cheable=YES),r.dependentKeys&&r.dependentKeys.length>0&&this.registerDependentKe y
    (n,r.dependentKeys)}}
       addObservesHandler:  function (e, t) {return this._configureObservesHandler(SC.OBSERVES_HANDLER_ADD,e,t),this;}
       removeObservesHandler:  function (e, t) {return this._configureObservesHandler(SC.OBSERVES_HANDLER_REMOVE,e,t),this;}
       _configureObservesHandler:  function (e, t, n) {var r,i;switch(e){case SC.OBSERVES_HANDLER_ADD:e="addObserver";break;case SC.OBSERVES_HANDLER_REMOVE:e="removeObserver";break;default:throw"invalid action provided: "+e}r=n.indexOf("."),r<0?this[e](n,this,t):n.indexOf("*")===0?this[e](n.slice(1 ),this,t):(i=null,r===0?(i=this,n=n.slice(1)):r===4&&n.slice(0,5)==="this."?(i=t his,n=n.slice(5)):r<0&&n.length===4&&n==="this"?(i=this,n=""):r>0&&n[0]===n.char At(0).toLowerCase()&&(i=this),SC.Observers[e](n,this,t,i));}
       observersForKey:  function (e) {SC.Observers.flush(this);var t=this[SC.keyFor("_kvo_observers",e)];return t?t.getMembers():[];}
       _notifyPropertyObservers:  function (e) {this._observableInited||this.initObservable(),SC.Observers.flush(this);var t=SC.LOG_OBSERVERS&&this.LOG_OBSERVING!==NO,n,r,i,s,o,u,a,f,l,c,h,p,d,v,m,g,y,b ;t&&(y=SC.KVO_SPACES=(SC.KVO_SPACES||"")+"  ",SC.Logger.log('%@%@: notifying observers after change to key "%@"'.fmt(y,this,e))),s=this["_kvo_observers_*"],this._kvo_changeLevel=(this._k vo_changeLevel||0)+1;while((r=this._kvo_changes)&&r.length>0||e){a=++this.proper tyRevision,r||(r=SC.CoreSet.create()),this._kvo_changes=null,e==="*"?(r.add("*") ,r.addEach(this._kvo_for("_kvo_observed_keys",SC.CoreSet))):e&&r.add(e);if(i=thi s._kvo_dependents)for(o=0;o<r.length;o++){e=r[o],u=i[e];if(u&&(v=u.length)){t&&S C.Logger.log("%@...including dependent keys for %@: %@"
    .fmt(y,e,u)),b=this._kvo_cache,b||(b=this._kvo_cache={});while(--v>=0){r.add(e=u [v]);if(m=this[e])this[m.cacheKey]=undefined,b[m.cacheKey]=b[m.lastSetValueKey]= undefined}}}while(r.length>0){e=r.pop(),n=this[SC.keyFor("_kvo_observers",e)];if (n){f=SC.clone(n.getMembers()),l=f.length;for(h=0;h<l;h++){c=f[h];if(c[3]===a)co ntinue;c[1]||SC.Logger.log(c),p=c[0]||this,d=c[1],g=c[2],c[3]=a,t&&SC.Logger.log ('%@...firing observer on %@ for key "%@"'.fmt(y,p,e)),g!==undefined?d.call(p,this,e,null,g,a):d.call(p,this,e,null, a)}}f=this[SC.keyFor("_kvo_local",e)];if(f){l=f.length;for(h=0;h<l;h++)c=f[h],d= this[c],d&&(t&&SC.Logger.log('%@...firing local observer %@.%@ for key "%@"'.fmt(y,this,c,e)),d.call(this,this,e,null,a))}if(s&&e!=="*"){f=SC.clone(s. getMembers()),l=f.length;for(h=0;h<l;h++)c=f[h],p=c[0]||this,d=c[1],g=c[2],t&&SC .Logger.log('%@...firing * observer on %@ for key "%@"'.fmt(y,p,e)),g!==undefined?d.call(p,this,e,null,g,a):d.call(p,this,e,null, a)}this.propertyObserver&&(t&&SC.Logger.log('%@...firing %@.propertyObserver for key "%@"'.fmt(y,this,e)),this.propertyObserver(this,e,null,a))}r&&r.destroy(),e=nul l}return this._kvo_changeLevel=(this._kvo_changeLevel||1)-1,t&&(SC.KVO_SPACES=y.slice(0, -2)),YES;}
       bind:  function (e, t, n) {var r,i;return n!==undefined&&(t=[t,n]),i=typeof t,i==="string"||i==="object"&&t instanceof Array?(r=this[e+"BindingDefault"]||SC.Binding,r=r.beget().from(t)):r=t.beget(), r=r.to(e,this).connect(),this.bindings.push(r),r;}
       didChangeFor:  function (e) {var t,n,r,i,s,o,u,a,f;e=SC.hashFor(e),t=this._kvo_didChange_valueCache,t||(t=this._ kvo_didChange_valueCache={}),n=this
    ._kvo_didChange_revisionCache,n||(n=this._kvo_didChange_revisionCache={}),r=t[e] ||{},i=n[e]||{},s=!1,o=this._kvo_revision||0,u=arguments.length;while(--u>=1)a=a rguments[u],i[a]!=o&&(f=this.get(a),r[a]!==f&&(s=!0,r[a]=f)),i[a]=o;return t[e]=r,n[e]=i,s;}
       setIfChanged:  function (e, t) {if(t===undefined&&SC.typeOf(e)===SC.T_HASH){var n=e;for(e in n){if(!n.hasOwnProperty(e))continue;this.setIfChanged(e,n[e])}return this}return this.get(e)!==t?this.set(e,t):this;}
       getPath:  function (e) {var t=SC.tupleForPropertyPath(e,this);return t===null||t[0]===null?undefined:SC.get(t[0],t[1]);}
       setPath:  function (e, t) {if(e.indexOf(".")>=0){var n=SC.tupleForPropertyPath(e,this);if(!n||!n[0])return null;n[0].set(n[1],t)}else this.set(e,t);return this;}
       setPathIfChanged:  function (e, t) {if(e.indexOf(".")>=0){var n=SC.tupleForPropertyPath(e,this);if(!n||!n[0])return null;n[0].get(n[1])!==t&&n[0].set(n[1],t)}else this.setIfChanged(e,t);return this;}
       getEach:  function () {var e=SC.A(arguments),t=[],n,r;for(n=0,r=e.length;n<r;n++)t[t.length]=this.getPath( e[n]);return t;}
       incrementProperty:  function (e, t) {return t||(t=1),this.set(e,(this.get(e)||0)+t),this.get(e);}
       decrementProperty:  function (e, t) {return t||(t=1),this.set(e,(this.get(e)||0)-t),this.get(e);}
       toggleProperty:  function (e, t, n) {return t===undefined&&(t=!0),n===undefined&&(n=!1),t=this.get(e)==t?n:t,this.set(e,t), this.get(e);}
       notifyPropertyChange:  function (e, t) {return this.propertyWillChange(e),this.propertyDidChange(e,t),this;}
       allPropertiesDidChange:  function () {return this._kvo_cache=null,this._notifyPropertyObservers("*"),this;}
       addProbe:  function (e) {this.addObserver(e,
    SC.logChange);}
       removeProbe:  function (e) {this.removeObserver(e,SC.logChange);}
       logProperty:  function () {var e=SC.$A(arguments),t,n,r;for(r=0,n=e.length;r<n;r++)t=e[r],SC.Logger.log("%@:%@ : ".fmt(SC.guidFor(this),t),this.get(t));}
       propertyRevision:  1
       invokeLater:  function (e, t) {t===undefined&&(t=1);var n=e,r,i;return arguments.length>2&&(r=SC.$A(arguments).slice(2),SC.typeOf(n)===SC.T_STRING&&(n =this[e]),i=n,n=function(){return i.apply(this,r)}),SC.Timer.schedule({target:this,action:n,interval:t});}
       invokeOnceLater:  function (e, t) {t===undefined&&(t=1);var n=this._sc_invokeOnceLaterTimers,r,i,s,o;return SC.typeOf(e)===SC.T_STRING&&(e=this[e]),r=SC.guidFor(e),n||(this._sc_invokeOnce LaterTimers=n={}),i=n[r],i&&i.invalidate()
    ,s=function(){return delete n[r],e.apply(this,arguments)},o=SC.Timer.schedule({target:this,action:s,interva l:t}),n[r]=o,o;}
       invokeWith:  function (e, t, n) {n===undefined&&(n=t,t=this),t||(t=this),SC.typeOf(n)===SC.T_STRING&&(n=t[n]);v ar r=this.getPath(e);return n.call(t,r,this),this;}
    STACK
    destroyRecord@https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:483
    destroyRecords@https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:484
    deleteContacts@https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:896
    confirmDelete@https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:953
    tryToHandleEvent@https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:508
    sendEvent@https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:516
    action@https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:953
    _runAction@https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:323
    _action@https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:323
    mouseUp@https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:322
    tryToPerform@https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:113
    sendEvent@https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:189
    @https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:200
    run@https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:134
    sendEvent@https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:200
    mouseup@https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:208
    handle@https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:154
    @https://www.icloud.com/applications/contacts/1O51/en-us/javascript-packed.js:155
    [native code]
    MOST RECENT STACK
    SC.run
      >  args:  function () {n?r=n.get("pane"):r=this.get("menuPane")||this.get("keyPane")||this.get("mainP ane"),i=r?r.sendEvent(e,t,n):null;},  SC.RootResponder:sc1661,  undefined,  undefined,  undefined
    SC.RootResponder#sendEvent
      >  args:  mouseUp,  [object Object],  SC.ButtonView:sc17666,  undefined,  undefined
    SC.RootResponder#mouseup
      >  args:  [object Object],  undefined,  undefined,  undefined,  undefined
    function (e) {if(typeof SC=="undefined"||SC.Event.triggered)return YES;var t,n,r,i,s,o,u,a,f,l;o=SC.A(arguments),o[0]=e=SC.Event.normalizeEvent(e||win
      >  args:  [object Object],  undefined,  undefined,  undefined,  undefined
    function () {return SC.Event.handle.apply(SC.Event._elements[s],arguments);}
      >  args:  [object MouseEvent],  undefined,  undefined,  undefined,  undefined
    IS FATAL
    true
    ORIGIN
    client
    TYPE
    exception
    APPLICATION NAME
    contacts
    APP STATECHART
    SC.Statechart:sc1273
      initialized: true
      name: contacts-statechart
      current-states: [
        loadedState.preferencesMode.preferencesPanelNotLoaded
        loadedState.searchState
        loadedState.contactsGroupsState.groupsMode.groupsViewDisplayMode
      state-transition:
        active: false
        suspended: false
      handling-event:
        state: loadedState.contactsGroupsState
        event: confirmDelete
        handler: confirmDelete
    APPLICATION BUILD NUMBER
    1O51
    LOG
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN initialize statechart
    Thu, 14 Mar 2013 04:22:59 GMT:  WARN:  WARN SC.Statechart<contacts-statechart, sc1273>: state loadedState.contactsGroupsState.contactsMode.singleContactMode.photoPicker.phot oPickerLoadedState.errorStates has no initial substate defined. Will default to using an empty state as initial substate
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN gotoState: __ROOT_STATE__
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: starting from current state: ---
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: current states before: ---
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: __ROOT_STATE__
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadingMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: current states after: loadingMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END gotoState: __ROOT_STATE__
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END initialize statechart
    Thu, 14 Mar 2013 04:22:59 GMT:  WARN:  Cannot bind 'labelIsActive' to property 'isActive' on non-observable 'Contacts.LabelView'
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN sendEvent: 'noSelection'
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: No state was able handle event noSelection
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END sendEvent: 'noSelection'
    Thu, 14 Mar 2013 04:22:59 GMT:  DEBUG: Creating local CK.User object
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN sendEvent: 'startupHasLoaded'
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: loadingMode: will handle event 'startupHasLoaded'
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN gotoState: loadedState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: starting from current state: loadingMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: current states before: loadingMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: pivot state = __ROOT_STATE__
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadingMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.contactsMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.contactsMode.contactsSelectionState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.preferencesMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.preferencesMode.preferencesPanelNotLoaded
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.searchState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: current states after: loadedState.contactsGroupsState.contactsMode.contactsSelectionState,loadedState .preferencesMode.preferencesPanelNotLoaded,loadedState.searchState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END gotoState: loadedState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN gotoState: loadedState.contactsGroupsState.contactsMode.noSelection
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: starting from current state: loadedState.contactsGroupsState.contactsMode.contactsSelectionState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: current states before: loadedState.contactsGroupsState.contactsMode.contactsSelectionState,loadedState .preferencesMode.preferencesPanelNotLoaded,loadedState.searchState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: pivot state = loadedState.contactsGroupsState.contactsMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadedState.contactsGroupsState.contactsMode.contactsSelectionState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.contactsMode.noSelection
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: current states after: loadedState.preferencesMode.preferencesPanelNotLoaded,loadedState.searchState,l oadedState.contactsGroupsState.contactsMode.noSelection
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END gotoState: loadedState.contactsGroupsState.contactsMode.noSelection
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END sendEvent: 'startupHasLoaded'
    Thu, 14 Mar 2013 04:22:59 GMT:  DEBUG: ** Beginning idle cycle (CW.IdleCycle:sc9253)  (no pending cycles)…
    Thu, 14 Mar 2013 04:22:59 GMT:  DEBUG:     -->  Request 1:   POST to https://p04-contactsws.icloud.com:443/co/changeset?clientBuildNumber=1O51&client Id=8E50AD98-637D-4CCC-A651-2669669252D4&clientVersion=2.1&dsid=80961051&id=58F22 F4DF132A7CF24C2445D154A7D6F137F9728&prefToken=2d661828-cd0d-48a8-8903-cc232b67e9 f6&syncToken=DAVST-V1-p04-FT%3D-%40RU%3D3a555d26-3e29-41da-81df-4b77164e607d%40S %3D16854,  headers: Content-Type=text/plain,  body: (omitted)
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: BEGIN sendEvent: 'singleSelection'
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: loadedState.contactsGroupsState.contactsMode.noSelection: will handle event 'singleSelection'
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: BEGIN gotoState: loadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMod e.contactDisplayMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: starting from current state: loadedState.contactsGroupsState.contactsMode.noSelection
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: current states before: loadedState.preferencesMode.preferencesPanelNotLoaded,loadedState.searchState,l oadedState.contactsGroupsState.contactsMode.noSelection
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: pivot state = loadedState.contactsGroupsState.contactsMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadedState.contactsGroupsState.contactsMode.noSelection
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.contactsMode.singleContactMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMod e
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMod e.contactDisplayMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.contactsMode.singleContactMode.photoPicker
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.contactsMode.singleContactMode.photoPicker.phot oPickerUnloadedState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: current states after: loadedState.preferencesMode.preferencesPanelNotLoaded,loadedState.searchState,l oadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMode. contactDisplayMode,loadedState.contactsGroupsState.contactsMode.singleContactMod e.photoPicker.photoPickerUnloadedState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: END gotoState: loadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMod e.contactDisplayMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: END sendEvent: 'singleSelection'
    Thu, 14 Mar 2013 04:22:59 GMT:  DEBUG:     <--  Response 1:  200  (273ms),  headers: Cache-Control=no-cache, no-store, private, Content-Type=application/json; charset=UTF-8  body: (omitted)
    Thu, 14 Mar 2013 04:22:59 GMT:  DEBUG:     idle cycle (CW.IdleCycle:sc9253):  There are no more pending/outstanding requests
    Thu, 14 Mar 2013 04:22:59 GMT:  DEBUG:     idle cycle (CW.IdleCycle:sc9253):  There are no more pending/outstanding requests
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN sendEvent: 'toggleVisibility'
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: loadedState.contactsGroupsState.contactsMode: will handle event 'toggleVisibility'
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN gotoState: loadedState.contactsGroupsState.groupsMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: starting from current state: loadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMod e.contactDisplayMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: current states before: loadedState.preferencesMode.preferencesPanelNotLoaded,loadedState.searchState,l oadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMode. contactDisplayMode,loadedState.contactsGroupsState.contactsMode.singleContactMod e.photoPicker.photoPickerUnloadedState
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: pivot state = loadedState.contactsGroupsState
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMod e.contactDisplayMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMod e
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadedState.contactsGroupsState.contactsMode.singleContactMode.photoPicker.phot oPickerUnloadedState
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadedState.contactsGroupsState.contactsMode.singleContactMode.photoPicker
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadedState.contactsGroupsState.contactsMode.singleContactMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadedState.contactsGroupsState.contactsMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.groupsMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.groupsMode.groupsViewDisplayMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: current states after: loadedState.preferencesMode.preferencesPanelNotLoaded,loadedState.searchState,l oadedState.contactsGroupsState.groupsMode.groupsViewDisplayMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END gotoState: loadedState.contactsGroupsState.groupsMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END sendEvent: 'toggleVisibility'
    Thu, 14 Mar 2013 04:23:06 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN sendEvent: 'singleSelection'
    Thu, 14 Mar 2013 04:23:06 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: No state was able handle event singleSelection
    Thu, 14 Mar 2013 04:23:06 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END sendEvent: 'singleSelection'
    Thu, 14 Mar 2013 04:23:11 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN sendEvent: 'selectAllContacts'
    Thu, 14 Mar 2013 04:23:11 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: loadedState.contactsGroupsState: will handle event 'selectAllContacts'
    Thu, 14 Mar 2013 04:23:11 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END sendEvent: 'selectAllContacts'
    Thu, 14 Mar 2013 04:23:12 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN sendEvent: 'multipleSelection'
    Thu, 14 Mar 2013 04:23:12 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: No state was able handle event multipleSelection
    Thu, 14 Mar 2013 04:23:12 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END sendEvent: 'multipleSelection'
    Thu, 14 Mar 2013 04:23:12 GMT:  DEBUG: requesting 5200+200
    Thu, 14 Mar 2013 04:23:12 GMT:  DEBUG: -->  Request 2:   GET to https://p04-contactsws.icloud.com:443/co/contacts/?clientBuildNumber=1O51&client Id=8E50AD98-637D-4CCC-A651-2669669252D4&clientVersion=2.1&dsid=80961051&id=58F22 F4DF132A7CF24C2445D154A7D6F137F9728&limit=200&offset=5200&prefToken=2d661828-cd0 d-48a8-8903-cc232b67e9f6&syncToken=DAVST-V1-p04-FT%3D-%40RU%3D3a555d26-3e29-41da -81df-4b77164e607d%40S%3D16854,  headers: Accept=application/json, Content-Type=text/plain,  body: (omitted)
    Thu, 14 Mar 2013 04:23:12 GMT:  DEBUG: <--  Response 2:  200  (195ms),  headers: Cache-Control=no-cache, no-store, private, Content-Type=application/json; charset=UTF-8  body: (omitted)
    Thu, 14 Mar 2013 04:23:12 GMT:  DEBUG: received 5200+126
    Thu, 14 Mar 2013 04:23:13 GMT:  DEBUG: requesting 5000+200
    Thu, 14 Mar 2013 04:23:13 GMT:  DEBUG: -->  Request 3:   GET to https://p04-contactsws.icloud.com:443/co/contacts/?clientBuildNumber=1O51&client Id=8E50AD98-637D-4CCC-A651-2669669252D4&clientVersion=2.1&dsid=80961051&id=58F22 F4DF132A7CF24C2445D154A7D6F137F9728&limit=200&offset=5000&prefToken=2d661828-cd0 d-48a8-8903-cc232b67e9f6&syncToken=DAVST-V1-p04-FT%3D-%40RU%3D3a555d26-3e29-41da -81df-4b77164e607d%40S%3D16854,  headers: Accept=application/json, Content-Type=text/plain,  body: (omitted)
    Thu, 14 Mar 2013 04:23:13 GMT:  DEBUG: <--  Response 3:  200  (178ms),  headers: Cache-Control=no-cache, no-store, private, Content-Type=application/json; charset=UTF-8  body: (omitted)
    Thu, 14 Mar 2013 04:23:13 GMT:  DEBUG: received 5000+200
    Thu, 14 Mar 2013 04:23:14 GMT:  DEBUG: requesting 4800+200
    Thu, 14 Mar 2013 04:23:14 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN sendEvent: 'deleteSelection'
    Thu, 14 Mar 2013 04:23:14 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: loadedState.contactsGroupsState: will handle event 'deleteSelection'
    Thu, 14 Mar 2013 04:23:14 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END sendEvent: 'deleteSelection'
    Thu, 14 Mar 2013 04:23:14 GMT:  DEBUG: -->  Request 4:   GET to https://p04-contactsws.icloud.com:443/co/contacts/?clientBuildNumber=1O51&client Id=8E50AD98-637D-4CCC-A651-2669669252D4&clientVersion=2.1&dsid=80961051&id=58F22 F4DF132A7CF24C2445D154A7D6F137F9728&limit=200&offset=4800&prefToken=2d661828-cd0 d-48a8-8903-cc232b67e9f6&syncToken=DAVST-V1-p04-FT%3D-%40RU%3D3a555d26-3e29-41da -81df-4b77164e607d%40S%3D16854,  headers: Accept=application/json, Content-Type=text/plain,  body: (omitted)
    Thu, 14 Mar 2013 04:23:14 GMT:  DEBUG: <--  Response 4:  200  (265ms),  headers: Cache-Control=no-cache, no-store, private, Content-Type=application/json; charset=UTF-8  body: (omitted)
    Thu, 14 Mar 2013 04:23:14 GMT:  DEBUG: received 4800+200
    Thu, 14 Mar 2013 04:23:15 GMT:  DEBUG: requesting 4600+200
    Thu, 14 Mar 2013 04:23:15 GMT:  DEBUG: -->  Request 5:   GET to https://p04-contactsws.icloud.com:443/co/contacts/?clientBuildNumber=1O51&client Id=8E50AD98-637D-4CCC-A651-2669669252D4&clientVersion=2.1&dsid=80961051&id=58F22 F4DF132A7CF24C2445D154A7D6F137F9728&limit=200&offset=4600&prefToken=2d661828-cd0 d-48a8-8903-cc232b67e9f6&syncToken=DAVST-V1-p04-FT%3D-%40RU%3D3a555d26-3e29-41da -81df-4b77164e607d%40S%3D16854,  headers: Accept=application/json, Content-Type=text/plain,  body: (omitted)
    Thu, 14 Mar 2013 04:23:16 GMT:  DEBUG: <--  Response 5:  200  (336ms),  headers: Cache-Control=no-cache, no-store, private, Content-Type=application/json; charset=UTF-8  body: (omitted)
    Thu, 14 Mar 2013 04:23:16 GMT:  DEBUG: received 4600+200
    Thu, 14 Mar 2013 04:23:16 GMT:  DEBUG: requesting 4400+200
    Thu, 14 Mar 2013 04:23:16 GMT:  DEBUG: -->  Request 6:   GET to https://p04-contactsws.icloud.com:443/co/contacts/?clientBuildNumber=1O51&client Id=8E50AD98-637D-4CCC-A651-2669669252D4&clientVersion=2.1&dsid=80961051&id=58F22 F4DF132A7CF24C2445D154A7D6F137F9728&limit=200&offset=4400&prefToken=2d661828-cd0 d-48a8-8903-cc232b67e9f6&syncToken=DAVST-V1-p04-FT%3D-%40RU%3D3a555d26-3e29-41da -81df-4b77164e607d%40S%3D16854,  headers: Accept=application/json, Content-Type=text/plain,  body: (omitted)
    Thu, 14 Mar 2013 04:23:16 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN sendEvent: 'confirmDelete'
    Thu, 14 Mar 2013 04:23:16 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: loadedState.contactsGroupsState: will handle event 'confirmDelete'
    Thu, 14 Mar 2013 04:23:16 GMT:  DEBUG: CloudKit: ErrorCatcher dialog invoked.
    BUILD NUMBER
    1O51
    TIME
    Wed Mar 13 2013 21:23:16 GMT-0700 (PDT)        (1363234996989)
    HOST
    www.icloud.com
    USER AGENT
    Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/536.26.17 (KHTML, like Gecko) Version/6.0.2 Safari/536.26.17
    DSID
    80961051
    ENVIRONMENT
    PROD
    RECENT LOG MESSAGES
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN initialize statechart
    Thu, 14 Mar 2013 04:22:59 GMT:  WARN:  WARN SC.Statechart<contacts-statechart, sc1273>: state loadedState.contactsGroupsState.contactsMode.singleContactMode.photoPicker.phot oPickerLoadedState.errorStates has no initial substate defined. Will default to using an empty state as initial substate
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN gotoState: __ROOT_STATE__
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: starting from current state: ---
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: current states before: ---
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: __ROOT_STATE__
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadingMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: current states after: loadingMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END gotoState: __ROOT_STATE__
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END initialize statechart
    Thu, 14 Mar 2013 04:22:59 GMT:  WARN:  Cannot bind 'labelIsActive' to property 'isActive' on non-observable 'Contacts.LabelView'
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN sendEvent: 'noSelection'
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: No state was able handle event noSelection
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END sendEvent: 'noSelection'
    Thu, 14 Mar 2013 04:22:59 GMT:  DEBUG: Creating local CK.User object
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN sendEvent: 'startupHasLoaded'
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: loadingMode: will handle event 'startupHasLoaded'
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN gotoState: loadedState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: starting from current state: loadingMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: current states before: loadingMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: pivot state = __ROOT_STATE__
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadingMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.contactsMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.contactsMode.contactsSelectionState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.preferencesMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.preferencesMode.preferencesPanelNotLoaded
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.searchState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: current states after: loadedState.contactsGroupsState.contactsMode.contactsSelectionState,loadedState .preferencesMode.preferencesPanelNotLoaded,loadedState.searchState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END gotoState: loadedState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN gotoState: loadedState.contactsGroupsState.contactsMode.noSelection
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: starting from current state: loadedState.contactsGroupsState.contactsMode.contactsSelectionState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: current states before: loadedState.contactsGroupsState.contactsMode.contactsSelectionState,loadedState .preferencesMode.preferencesPanelNotLoaded,loadedState.searchState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: pivot state = loadedState.contactsGroupsState.contactsMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadedState.contactsGroupsState.contactsMode.contactsSelectionState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.contactsMode.noSelection
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: current states after: loadedState.preferencesMode.preferencesPanelNotLoaded,loadedState.searchState,l oadedState.contactsGroupsState.contactsMode.noSelection
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END gotoState: loadedState.contactsGroupsState.contactsMode.noSelection
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END sendEvent: 'startupHasLoaded'
    Thu, 14 Mar 2013 04:22:59 GMT:  DEBUG: ** Beginning idle cycle (CW.IdleCycle:sc9253)  (no pending cycles)…
    Thu, 14 Mar 2013 04:22:59 GMT:  DEBUG:     -->  Request 1:   POST to https://p04-contactsws.icloud.com:443/co/changeset?clientBuildNumber=1O51&client Id=8E50AD98-637D-4CCC-A651-2669669252D4&clientVersion=2.1&dsid=80961051&id=58F22 F4DF132A7CF24C2445D154A7D6F137F9728&prefToken=2d661828-cd0d-48a8-8903-cc232b67e9 f6&syncToken=DAVST-V1-p04-FT%3D-%40RU%3D3a555d26-3e29-41da-81df-4b77164e607d%40S %3D16854,  headers: Content-Type=text/plain,  body: (omitted)
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: BEGIN sendEvent: 'singleSelection'
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: loadedState.contactsGroupsState.contactsMode.noSelection: will handle event 'singleSelection'
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: BEGIN gotoState: loadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMod e.contactDisplayMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: starting from current state: loadedState.contactsGroupsState.contactsMode.noSelection
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: current states before: loadedState.preferencesMode.preferencesPanelNotLoaded,loadedState.searchState,l oadedState.contactsGroupsState.contactsMode.noSelection
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: pivot state = loadedState.contactsGroupsState.contactsMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadedState.contactsGroupsState.contactsMode.noSelection
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.contactsMode.singleContactMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMod e
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMod e.contactDisplayMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.contactsMode.singleContactMode.photoPicker
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.contactsMode.singleContactMode.photoPicker.phot oPickerUnloadedState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: current states after: loadedState.preferencesMode.preferencesPanelNotLoaded,loadedState.searchState,l oadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMode. contactDisplayMode,loadedState.contactsGroupsState.contactsMode.singleContactMod e.photoPicker.photoPickerUnloadedState
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: END gotoState: loadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMod e.contactDisplayMode
    Thu, 14 Mar 2013 04:22:59 GMT:  INFO:      SC.Statechart<contacts-statechart, sc1273>: END sendEvent: 'singleSelection'
    Thu, 14 Mar 2013 04:22:59 GMT:  DEBUG:     <--  Response 1:  200  (273ms),  headers: Cache-Control=no-cache, no-store, private, Content-Type=application/json; charset=UTF-8  body: (omitted)
    Thu, 14 Mar 2013 04:22:59 GMT:  DEBUG:     idle cycle (CW.IdleCycle:sc9253):  There are no more pending/outstanding requests
    Thu, 14 Mar 2013 04:22:59 GMT:  DEBUG:     idle cycle (CW.IdleCycle:sc9253):  There are no more pending/outstanding requests
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN sendEvent: 'toggleVisibility'
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: loadedState.contactsGroupsState.contactsMode: will handle event 'toggleVisibility'
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN gotoState: loadedState.contactsGroupsState.groupsMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: starting from current state: loadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMod e.contactDisplayMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: current states before: loadedState.preferencesMode.preferencesPanelNotLoaded,loadedState.searchState,l oadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMode. contactDisplayMode,loadedState.contactsGroupsState.contactsMode.singleContactMod e.photoPicker.photoPickerUnloadedState
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: pivot state = loadedState.contactsGroupsState
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMod e.contactDisplayMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadedState.contactsGroupsState.contactsMode.singleContactMode.displayOrEditMod e
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadedState.contactsGroupsState.contactsMode.singleContactMode.photoPicker.phot oPickerUnloadedState
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadedState.contactsGroupsState.contactsMode.singleContactMode.photoPicker
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadedState.contactsGroupsState.contactsMode.singleContactMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: <-- exiting state: loadedState.contactsGroupsState.contactsMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.groupsMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: --> entering state: loadedState.contactsGroupsState.groupsMode.groupsViewDisplayMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: current states after: loadedState.preferencesMode.preferencesPanelNotLoaded,loadedState.searchState,l oadedState.contactsGroupsState.groupsMode.groupsViewDisplayMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END gotoState: loadedState.contactsGroupsState.groupsMode
    Thu, 14 Mar 2013 04:23:02 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END sendEvent: 'toggleVisibility'
    Thu, 14 Mar 2013 04:23:06 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN sendEvent: 'singleSelection'
    Thu, 14 Mar 2013 04:23:06 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: No state was able handle event singleSelection
    Thu, 14 Mar 2013 04:23:06 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END sendEvent: 'singleSelection'
    Thu, 14 Mar 2013 04:23:11 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN sendEvent: 'selectAllContacts'
    Thu, 14 Mar 2013 04:23:11 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: loadedState.contactsGroupsState: will handle event 'selectAllContacts'
    Thu, 14 Mar 2013 04:23:11 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END sendEvent: 'selectAllContacts'
    Thu, 14 Mar 2013 04:23:12 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: BEGIN sendEvent: 'multipleSelection'
    Thu, 14 Mar 2013 04:23:12 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: No state was able handle event multipleSelection
    Thu, 14 Mar 2013 04:23:12 GMT:  INFO:  SC.Statechart<contacts-statechart, sc1273>: END sendEvent: 'multipleSelection'
    Thu, 14 Mar 2013 04:23:12 GMT:  DEBUG: requesting 5200+200
    Thu, 14 Mar 2013 04:23:12 GMT:  DEBUG: -->  Request 2:   GET to https://p04-contactsws.icloud.com:443/co/contacts/?clientBuildNumber=1O51&client Id=8E50AD98-637D-4CCC-A651-2669669252D4&clientVersion=2.1&dsid=80961051&id=58F22 F4DF132A7CF24C2445D154A7D6F137F9728&limit=200&offset=5200&prefToken=2d661828-cd0 d-48a8-8903-cc232b67e9f6&syncToken=DAVST-V1-p04-FT%3D-%40RU%3D3a555d26-3e29-41da -81df-4b77164e607d%40S%3D16854,  headers: Accept=application/json, Content-Type=text/plain,  body: (omitted)
    Thu, 14 Mar 2013 04:23:12 GMT:  DEBUG: <--  Response 2:  200  (195ms),  headers: Cache-Control=no-cache, no-store, private, Content-Type=application/json; charset=UTF-8  body: (omitted)
    Thu, 14 Mar 2013 04:23:12 GMT:  DEBUG: received 5200+126
    Thu, 14 Mar 2013 04:23:13 GMT:  DEBUG: requesting 5000+200

  • Issue with building an array from a cfhttp request result.

    Here is what I am trying to do. Retrieve a bunch of results from a  REST request. Run a query to see if I should be excluding any of the xmltext entries coming back from the rest request. Build an array of the REST xmltext entries except the entries in the cfquery.
    I have it all workign except building the array minus the entries that came back in the cfquery. Here is my code so far.
    <cfquery name="getqueue" datasource="#application.settings.dsn#">
    select * from friends
    where Deactivatedate < #DATEADD('d', 1, CreateODBCDateTime(now()))#
    </cfquery>
    <cfoutput query = "getqueue">
    <cfhttp  blah blah>
    <cfset nodes_parse = XmlParse(CFHTTP.FileContent)>
    <cfset Nodes = xmlSearch(nodes_parse,'friends/friend/date/activedate/')>
    <cfset roleArray = ArrayNew(1)>
    <cfloop from="1" to="#arraylen(Nodes)#" index="i">
       <cfset NodeXML = xmlparse(Nodes[i])>
    <cfset ArrayAppend(roleArray, '[sel_members][]=#NodeXML.activedate.xmlText#&')>
    </cfloop>
    </cfoutput>
    My issue is down in the loop where I do the arrayappend. How would I build an array of values coming back from the cfhttp request but not include any of them if they match up with anything coming back from the getqueue query?

    What about the obvious? Namely,
    <cfif value_from_getqueue IS NOT value_from_cfhttp_request>
    <cfset arrayAppend()>
    </cfif>

  • Issues with upgrading Hyperion HFM from 11.1.2 to 11.1.2.1

    Hi,
    After the recent release of Hyperion 11.1.2.1, we upgraded our development environment to 11.1.2.1 from 11.1.2.
    Installation and configuration was smooth straight forward [ We used the Maintenance upgrade while installing 11.1.2.1 ].
    We migrated the application created from 11.1.2 to 11.1.2.1 using copy App. We saw following issues.
    1. We are unable to run consolidation and we get following Error: “An unknown error has occurred in the HsvData2 object”
    2. Every time when we login to HFM workspace and run reports we see database authentication window, we have to enter admin credentials for first time.
    3. We are unable to load a Rule File in 11.1.2.1, which was loaded successfully in 11.1.2.
    Any details on the above issues or on the upgrade from 11.1.2 to 11.1.2.1 would be of great help.
    Thanks and Regards,
    Bhargav

    I am going to throw out the most unexciting reply ever, but .... the answer probably lies in the 11.1.2.1 readme.
    V25453-01 From : https://edelivery.oracle.com/EPD/Download/get_form?egroup_aru_number=13638318
    Consolidation
    When running a consolidation, the following error may occur: “An unknown error has occurred in the HsvData2 object” with a description of: “Value violated the integrity constraints for a column or table” and the following problem: “Cannot insert duplicate key in object”. To resolve this error, delete invalid records.
    I didn't look at the other issues; however, once again, I think the answers are most likely contained in the readmes.
    Charles

  • Issue with executing Business Rules from Planning web

    Hi,
    We are using Hyperion Planning 9.3.0.1 and we keep getting an issue with the Business Rules. We get an error if we try to run the rules from Planning web. The same rules validates and executes fine if we run it from AAS. This issue gets resolved if we restart the Planning and RMI service. But this issue keeps happening randomly. Is there a permanent resolution to it? Is it a bug or I am missing something here?
    Thanks and Regards,
    Amol
    Edited by: user638718 on Apr 7, 2009 5:20 PM

    Hi,
    Have you installed any of the patches for 9.3.0.1, I think it goes up to 9.3.0.1.09
    One of the fixes was :-
    8-665086601 (6588823) – When the Business Rules connection to the relational database is lost, Business Rules does not reconnect to it. To solve this problem, an optional property, HBR_CONNECTION_VALIDATE_TIME, was added to HBRServer.properties. This property specifies a time interval for checking the connection between Business Rules and the relational database. If the connection is not valid, a new connection is established. The time interval is specified in milliseconds and defaults to 300,000 (five minutes).
    Though I know there has been more attention to fixing known issues on 9.3.1 than 9.3.0.1
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Dynamic Link (Adobe Premiere Pro to Encore) issues with burning a DVD from the project file

    Hello,
    I am running Adobe Suite CS 5.1 on my Mac:
    2.8 GHz Quad Core
    6GB Memory
    I've been having issues with a few projects; using Dynamic Link, directly from my project in Premier, to send them to Encore:
    When attempting to burn a DVD, Encore will 'hang up' and not burn; I rarely burn to DVD, usually I'm always encoding for web, and just always use the 'default settings' in Encore.
    A few things to note:
    *In my project I'm using MOV files, from a Canon 7D, and MP4 files, from a Sony EX-1. 
    *I am working off of 3 separate hard drives; very large projects with over 5TBs of media files.
    *I noticed that after inserting a DVD, it caused one of my hard drives to eject; this happened once, as far as I know.
    *This only happens when I use Dynamic Link to send to Encore, via my Premiere Pro project file.
    *My Project settings are always: XDCam HD-1080p/24p
    Please help.
    Thanks

    So you must downrez at some point in the workflow. Some users have problems and/or think they get better quality out of direct PR/AME exports than using DL for this purpose.
    I would test the workflow by creating three short test sequences - one with a clip from one camera, a second from the other, and a third with both in a sequence using the same settings you are using in your edit. I would use the "drag a clip" to the new item method for making each of the first two sequences. By short I mean 30 seconds to 2 minutes with a mixture of still and action.
    Export using whatever method you pick of those recommended, but use CBR 8 instead of VBR etc. Bring the resulting files into Encore. Yes, look at the files exported on the computer, and look at Encore preview, etc, but also burn to a disk and watch on multiple TVs. There are lots of issues in best quality.

  • Issues with Video Lightbox Gallery from Muse Exchange...

    I've been trying to customize the Video Lightbox Gallery from the exchange, Video Gallery Lightbox | Exchange | Adobe Muse CC
    I'm using embed codes from Vimeo. My first issue was that when I replace the placeholder embed code with my Vimeo code, the frame size is considerably smaller. From Vimeo it is 500x281 and in the widget it is 700x396. So I changed the frame size in my Vimeo embed and that seemed to work. Now, though, when a preview the page it plays fine in the window, but when I enter full screen and then escape from that while the video is playing to go back the smaller window, it jumps up so far up the screen it is off the page... It doesn't happen with the placeholder video and the only difference I can see is that it's from YouTube and mine is from Vimeo. I haven't change any of the settings except for the embed code. Can anyone help me with this?

    I wanted to add that I am using on one page design and I have multiple video galleries further down the page. What I've noticed is that no matter which thumbnail I play and enter into full screen, when I hit escape, that window jumps all the way to the top instead of staying locked to where is originated. Again, it doesn't do it with the placeholder video, only when I replace it with my embed codes from Vimeo. This is very frustrating because I am so close to finishing and this issue is holding me up. I've searched and searched and cannot find the answer... is there anyone who can help, please?

Maybe you are looking for

  • Error while opening the application help

    Hello, We are trying to open the application help from the R/3. It is giving us the follwoing error. This is linked to the knowledge warehouse server 6.20. Error: SAP Internet Knowledge Server The IKS cannot display the page you asked for. Please con

  • HTML5 audio widget for iBooks Author

    Hello! I'm creating a HTML widget for iBooks Author and I want to add a audio tag of HTML5 in my HTML file. When I do this, I test in Safari Browser and the audio sounds good, so I add my widget with the HTML file, sounds, Default.png and Info.plist

  • Read byteArray(binary) from backend and display as pdf in flex titleWindow

    i have requirement where the pdf come as byteArray from backend, which i need to read from flex app and diaplay as pdf in the flex titleWindow or any flex popup. any ideas on this....,

  • Header is displayed more than once

    I have several records that I can display as a table just for checking out. It has several types of records. I can delete this from the template in the future. Now, I´d like to create a section for record type X. I do have a logic like: for-each reco

  • Help with sorting a query

    Hi, I have one table (ctry) with a two columns as below ctry - varchar2(2) zone - varchar2(6) SE SE1:1 SE SE1:2 SE SE1:3 SE SE1:4 SE SE1:10 SE SE1:11 SE SE1:5 If I sort as below select ctry, zone from ctry order by ctry, zone I got result as below ct