Changeset 828364
- Timestamp:
- Jul 17, 2009, 8:03:40 PM (12 years ago)
- Branches:
- lite_0.1, multiEdit, ng_0.6, ng_0.6_help, ng_0.8, ng_0.9
- Children:
- 760e16
- Parents:
- ec2633
- Location:
- chrome/content/v_identity
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
chrome/content/v_identity/vI_getHeader.js
rec2633 r828364 127 127 hdr.setStringProperty(vI_getHeader.headerToSearch[index].headerNameToStore,vI_getHeader.unicodeConverter.ConvertFromUnicode(value) + vI_getHeader.unicodeConverter.Finish()); 128 128 129 storedValue = hdr.getProperty(vI_getHeader.headerToSearch[index].headerNameToStore)130 storedConvValue = vI_getHeader.unicodeConverter.ConvertToUnicode(storedValue)129 var storedValue = hdr.getProperty(vI_getHeader.headerToSearch[index].headerNameToStore) 130 var storedConvValue = vI_getHeader.unicodeConverter.ConvertToUnicode(storedValue) 131 131 vI_notificationBar.dump("## vI_getHeader: found header: " + headerName + 132 132 "[:" + currentHeadersCounter[headerName] + "] - stored as '" + -
chrome/content/v_identity/vI_notificationBar.js
rec2633 r828364 104 104 clear_dump : function() { 105 105 if (!vI_notificationBar.Obj_DebugBox) return; 106 new_DebugBox = vI_notificationBar.Obj_DebugBox.cloneNode(false);106 var new_DebugBox = vI_notificationBar.Obj_DebugBox.cloneNode(false); 107 107 vI_notificationBar.Obj_DebugBox.parentNode.replaceChild( 108 108 new_DebugBox, vI_notificationBar.Obj_DebugBox); -
chrome/content/v_identity/vI_rdfDatasource.js
rec2633 r828364 109 109 110 110 rdfUpgradeRequired: function() { 111 oldRdfVersion = vI_rdfDatasource.getCurrentRDFFileVersion();111 var oldRdfVersion = vI_rdfDatasource.getCurrentRDFFileVersion(); 112 112 var versionChecker = Components.classes["@mozilla.org/xpcom/version-comparator;1"] 113 113 .getService(Components.interfaces.nsIVersionComparator); … … 116 116 117 117 extUpgradeRequired: function() { 118 oldExtVersion = vI_rdfDatasource.getCurrentExtFileVersion()118 var oldExtVersion = vI_rdfDatasource.getCurrentExtFileVersion() 119 119 var versionChecker = Components.classes["@mozilla.org/xpcom/version-comparator;1"] 120 120 .getService(Components.interfaces.nsIVersionComparator); -
chrome/content/v_identity/vI_smartIdentity.js
rec2633 r828364 298 298 // merge SmartReply-Identities and Storage-Identites 299 299 if (vI.preferences.getBoolPref("idSelection_storage_prefer_smart_reply")) 300 { smartIdentities.mergeWithoutDuplicates(storageIdentities); allIdentities = smartIdentities; }300 { smartIdentities.mergeWithoutDuplicates(storageIdentities); var allIdentities = smartIdentities; } 301 301 else 302 { storageIdentities.mergeWithoutDuplicates(smartIdentities); allIdentities = storageIdentities; }302 { storageIdentities.mergeWithoutDuplicates(smartIdentities); var allIdentities = storageIdentities; } 303 303 304 304 vI_notificationBar.dump("## vI_smartIdentity: merged SmartReply & Storage, " + allIdentities.number + " address(es) left\n") -
chrome/content/v_identity/vI_storage.js
rec2633 r828364 368 368 if (recipientType == "addr_reply" || recipientType == "addr_followup" || vI_storage.__isDoBcc(row)) continue; 369 369 vI_storage.lastCheckedEmail[row] = awGetInputElement(row).value; 370 recipient = vI_storage.__getDescriptionAndType(awGetInputElement(row).value, recipientType);370 var recipient = vI_storage.__getDescriptionAndType(awGetInputElement(row).value, recipientType); 371 371 var storageData = vI_rdfDatasource.readVIdentityFromRDF(recipient.recDesc, recipient.recType); 372 372 if (storageData) allIdentities.addWithoutDuplicates(storageData); -
chrome/content/v_identity/vI_upgrade.js
rec2633 r828364 157 157 rdfContainerUtils.MakeSeq(vI_rdfDatasource.rdfDataSource, filterRes); 158 158 159 container = Components.classes["@mozilla.org/rdf/container;1"].159 var container = Components.classes["@mozilla.org/rdf/container;1"]. 160 160 createInstance(Components.interfaces.nsIRDFContainer); 161 161
Note: See TracChangeset
for help on using the changeset viewer.