orbit-basic/public/desktop_widgets/gmail/gmail.js

36 lines
1.2 KiB
JavaScript
Raw Normal View History

2012-04-26 06:47:49 +00:00
var gmail = function(){
$.ajax({
url: "/desktop/forgmail",
dataType : "xml",
success:function(data){
if($(data).find("HEAD").find("TITLE").text()=="Unauthorized"){
$("#gmail #forerror").text($(data).find("HEAD").find("TITLE").text()).show();
}else{
if($(data).find("fullcount").text()=="0"){
$("#gmail #forerror").hide();
$("#gmail #content #msgbody").text("No new mails");
}else{
var msg;
if($(data).find("fullcount").text()=="1")
2012-04-30 06:29:42 +00:00
msg = $(data).find("fullcount").text()+" unread message in your inbox.";
2012-04-26 06:47:49 +00:00
else
2012-04-30 06:29:42 +00:00
msg = $(data).find("fullcount").text()+" unread messages in your inbox.";
2012-04-26 06:47:49 +00:00
o.notify(msg,"alert",2);
$(data).find("entry").each(function(i,val){
if(i==0){
$("#gmail #forerror").hide();
var atag = $("<a href='"+$(this).find("link").attr("href")+"'>"+$(this).find("title").text()+"</a>");
$("#gmail #content #subject").html($(this).find("title").text());
$("#gmail #content #date").text($(this).find("issued").text());
$("#gmail #content #msgbody").text($(this).find("summary").text());
}
})
}
}
$("#gmail #loading").hide();
$("#gmail #content").show();
}
});
}