[IMP]:Minor Improvement for mac os also

bzr revid: atp@tinyerp.com-20110616071534-5afaug9db0e1112g
This commit is contained in:
Atul Patel (OpenERP) 2011-06-16 12:45:34 +05:30
parent fc2bea8034
commit 8afb549a9d
4 changed files with 0 additions and 13 deletions

View File

@ -152,9 +152,6 @@ function getPredefinedFolder(type) {
getService(Components.interfaces.nsIProperties).get("Home", Components.interfaces.nsIFile);
var homeDir = dirService.path;
var dir_path = ((homeDir.search(/\\/) != -1) ? homeDir + "\\" : homeDir + "/")
if(navigator.userAgent.indexOf('Mac OS X')!= -1){
dir_path ="/tmp/"
}
try {
var localFile = Components.classes["@mozilla.org/file/local;1"].createInstance(Components.interfaces.nsILocalFile);
localFile.initWithPath(dir_path);

View File

@ -153,13 +153,6 @@ function searchmail()
name[i] = currentAttachments[i].displayName;
var obj = Components.classes["@mozilla.org/file/local;1"].createInstance(Components.interfaces.nsILocalFile);
obj.initWithPath(path)
if(navigator.userAgent.indexOf('Mac OS X')!= -1){
obj.initWithPath("/tmp/");
}
else{
alert("Not Compatible for this Operating System");
false();
}
//saving the attachment files in system's temp folder
test[i] = messenger.saveAttachmentToFolder(contentType[i],url[i],name[i],uri,obj);
}
@ -338,9 +331,6 @@ function parse_eml(){
getService(Components.interfaces.nsIProperties).get("Home", Components.interfaces.nsIFile);
var homeDir = dirService.path;
fpath = ((homeDir.search(/\\/) != -1) ? homeDir + "\\" : homeDir + "/")
if(navigator.userAgent.indexOf('Mac OS X')!= -1){
fpath ="/tmp/"
}
name = fpath + getPref().getCharPref('fname') +".eml"
var file = Components.classes["@mozilla.org/file/local;1"].createInstance(Components.interfaces.nsILocalFile);
file.initWithPath( name );