openerp-dev-web team mailing list archive
-
openerp-dev-web team
-
Mailing list archive
-
Message #02709
[Merge] lp:~openerp-dev/openobject-addons/jam-dev-addons1 into lp:~openerp-dev/openobject-addons/trunk-dev-addons1
Jigar Amin - OpenERP has proposed merging lp:~openerp-dev/openobject-addons/jam-dev-addons1 into lp:~openerp-dev/openobject-addons/trunk-dev-addons1.
Requested reviews:
OpenERP Core Team (openerp)
Related bugs:
#707906 Creating partner from the thunderbird with non-english characters fail
https://bugs.launchpad.net/bugs/707906
For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/jam-dev-addons1/+merge/47776
Hello,
Changes with this merge proposal:
+ Bug #707906 :Creating partner from the thunderbird with non-english characters fail
Kindly Review Them
Thank You
--
https://code.launchpad.net/~openerp-dev/openobject-addons/jam-dev-addons1/+merge/47776
Your team OpenERP R&D Team is subscribed to branch lp:~openerp-dev/openobject-addons/jam-dev-addons1.
=== modified file 'thunderbird/plugin/openerp_plugin.xpi'
Binary files thunderbird/plugin/openerp_plugin.xpi 2011-01-24 16:02:08 +0000 and thunderbird/plugin/openerp_plugin.xpi 2011-01-28 08:55:09 +0000 differ
=== modified file 'thunderbird/plugin/openerp_plugin/chrome/openerp_plugin.jar'
Binary files thunderbird/plugin/openerp_plugin/chrome/openerp_plugin.jar 2011-01-24 16:02:08 +0000 and thunderbird/plugin/openerp_plugin/chrome/openerp_plugin.jar 2011-01-28 08:55:09 +0000 differ
=== modified file 'thunderbird/plugin/openerp_plugin/chrome/openerp_plugin/content/exportTools.js'
--- thunderbird/plugin/openerp_plugin/chrome/openerp_plugin/content/exportTools.js 2011-01-14 00:11:01 +0000
+++ thunderbird/plugin/openerp_plugin/chrome/openerp_plugin/content/exportTools.js 2011-01-28 08:55:09 +0000
@@ -196,12 +196,15 @@
var fname = msgDate8601string+"-"+subj+"-"+hdr.messageKey;
}
+ var rand1=Math.floor(Math.random()*100000)
+ var rand2=Math.floor(Math.random()*100000)
+ fname = rand1+'openerp-eml'+rand2
setFileName(fname)
fname = fname.replace(/[\x00-\x19]/g,"_");
- if (mustcorrectname)
- fname = nametoascii(fname);
- else
- fname = fname.replace(/[\/\\:,<>*\?\"\|]/g,"_");
+// if (mustcorrectname)
+// fname = nametoascii(fname);
+// else
+// fname = fname.replace(/[\/\\:,<>*\?\"\|]/g,"_");
return fname;
}
=== modified file 'thunderbird/plugin/openerp_plugin/chrome/openerp_plugin/content/tiny_xmlrpc.js'
--- thunderbird/plugin/openerp_plugin/chrome/openerp_plugin/content/tiny_xmlrpc.js 2011-01-24 16:02:08 +0000
+++ thunderbird/plugin/openerp_plugin/chrome/openerp_plugin/content/tiny_xmlrpc.js 2011-01-28 08:55:09 +0000
@@ -1389,7 +1389,6 @@
xmlRpcClient.asyncCall(listPartnerHandler,cmdPartnerList,'execute',[ strDbName,struid,strpass,strobj,strmethod,strvalue ],6);
}
-
//function to create the xmlrpc supported variables for xmlrpc request
function dictcontact(a,b){
var temp = xmlRpcClient.createType(xmlRpcClient.ARRAY,{});
Follow ups