This is just some static backup of the original site, don't expect every link to work!

Changeset 80940ab


Ignore:
Timestamp:
Jan 1, 2010, 4:19:58 PM (13 years ago)
Author:
rene <rene@…>
Branches:
multiEdit, ng_0.6, ng_0.8, ng_0.9
Children:
f4784d
Parents:
add418
Message:

modified comments to get clearer debug info

Location:
chrome/content/v_identity
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chrome/content/v_identity/vI_msgIdentityCloneTools.js

    radd418 r80940ab  
    4444            vI_notificationBar.dump("## vI_msgIdentityCloneTools: signatureSwitch hide/remove signatures\n");
    4545            // code to hide the text signature
    46             try { if (vI.preferences.getBoolPref("hide_signature") && ss_signature.length == 0)
     46            try { if (vI.preferences.getBoolPref("hide_signature") && ss_signature.length == 0) {
     47                vI_notificationBar.dump("## vI_msgIdentityCloneTools: hide text/html signature");
    4748                ss_main.signatureSwitch()
    48             } catch(vErr) { };
     49                vI_notificationBar.dump("\n");
     50            } } catch(vErr) { vI_notificationBar.dump(" -- missing signatureSwitch extension?\n"); };
    4951            // code to hide the sMime signature
    5052            try { if (vI.preferences.getBoolPref("hide_sMime_messageSignature")) {
     
    7173            vI_notificationBar.dump("## vI_msgIdentityCloneTools: signatureSwitch restore signature\n");
    7274            // code to show the text signature
    73             try { if (ss_signature.length > 0) ss_main.signatureSwitch(); }
    74             catch(vErr) { };
     75            try { if (ss_signature.length > 0) {
     76                vI_notificationBar.dump("## vI_msgIdentityCloneTools: show text/html signature");
     77                ss_main.signatureSwitch()
     78                vI_notificationBar.dump("\n");
     79            } } catch(vErr) { vI_notificationBar.dump(" -- missing signatureSwitch extension?\n"); };
    7580            // sMime and openGPG signature will not be re-added automatically
    7681        }
  • chrome/content/v_identity/v_identity.xml

    radd418 r80940ab  
    125125        this.label = this._identityDataStorage.combinedName;
    126126        this.value = this._identityDataStorage.id.key;
    127         vI_notificationBar.dump("** v_identity.xml fromPopupItem_clone constructor id='" + this.value + "'.\n")
     127        // vI_notificationBar.dump("** v_identity.xml fromPopupItem_clone constructor id='" + this.value + "'.\n")
    128128
    129129        this.description = this._identityDataStorage.sideDescription;
    130130        this.smtp = this._identityDataStorage.smtp.value;
    131         vI_notificationBar.dump("** v_identity.xml fromPopupItem_clone constructor smtp='" + this.smtp + "'.\n")
     131        // vI_notificationBar.dump("** v_identity.xml fromPopupItem_clone constructor smtp='" + this.smtp + "'.\n")
    132132        this.smtpStyle = "width:" + document.getElementById("smtp_server_list").clientWidth + "px;";
    133133        this._identityDataStorage.smtp.value;
Note: See TracChangeset for help on using the changeset viewer.