mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-26 08:32:44 +00:00
See ChangeLog
Monotone-Parent: 73de56ded7f5b5ba79857c706ecef4d70ac3113b Monotone-Revision: 5c6353cb6270d51a457d46a8fe98dadae4f37193 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2011-07-07T13:58:50 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -35,6 +35,7 @@ SOGoMailDataSource = Class.create({
|
||||
},
|
||||
|
||||
remove: function(uid) {
|
||||
// log ("MailDataSource.remove(" + uid + ")");
|
||||
var index = this.invalidate(uid);
|
||||
if (index >= 0) {
|
||||
this.uids.splice(index, 1);
|
||||
@@ -43,7 +44,7 @@ SOGoMailDataSource = Class.create({
|
||||
return index;
|
||||
},
|
||||
|
||||
init: function(uids, threaded, headers) {
|
||||
init: function(uids, threaded, headers, quotas) {
|
||||
this.uids = uids;
|
||||
if (typeof threaded != "undefined") {
|
||||
this.threaded = threaded;
|
||||
@@ -52,6 +53,9 @@ SOGoMailDataSource = Class.create({
|
||||
}
|
||||
// log ("MailDataSource.init() " + this.uids.length + " uids loaded");
|
||||
|
||||
if (quotas && Object.isFunction(updateQuotas))
|
||||
updateQuotas(quotas);
|
||||
|
||||
if (headers) {
|
||||
var keys = headers[0];
|
||||
for (var i = 1; i < headers.length; i++) {
|
||||
@@ -89,7 +93,7 @@ SOGoMailDataSource = Class.create({
|
||||
if (http.responseText.length > 0) {
|
||||
var data = http.responseText.evalJSON(true);
|
||||
if (data.uids)
|
||||
this.init(data.uids, data.threaded, data.headers);
|
||||
this.init(data.uids, data.threaded, data.headers, data.quotas);
|
||||
else
|
||||
this.init(data);
|
||||
if (this.delayedGetData) {
|
||||
@@ -146,7 +150,8 @@ SOGoMailDataSource = Class.create({
|
||||
for (i = 0, j = start; j < end; j++) {
|
||||
var uid = this.threaded? this.uids[j][0] : this.uids[j];
|
||||
if (!this.cache.get(uid)) {
|
||||
missingUids[i] = uid;
|
||||
// log ("MailDataSource._getData missing headers of uid " + uid + " at index " + j + (this.threaded? " (":" (non-") + "threaded)");
|
||||
missingUids[i] = uid;
|
||||
i++;
|
||||
}
|
||||
}
|
||||
@@ -168,9 +173,9 @@ SOGoMailDataSource = Class.create({
|
||||
if (this.ajaxGetData) {
|
||||
this.ajaxGetData.aborted = true;
|
||||
this.ajaxGetData.abort();
|
||||
// log ("MailDataSource._getData() aborted previous AJAX request");
|
||||
// log ("MailDataSource._getRemoteData() aborted previous AJAX request");
|
||||
}
|
||||
// log ("MailDataSource._getData() fetching headers of " + urlParams);
|
||||
// log ("MailDataSource._getRemoteData() fetching headers of " + urlParams);
|
||||
this.ajaxGetData = triggerAjaxRequest(this.url + "/headers",
|
||||
this._getRemoteDataCallback.bind(this),
|
||||
callbackData,
|
||||
@@ -191,7 +196,7 @@ SOGoMailDataSource = Class.create({
|
||||
header[keys[j]] = headers[i][j];
|
||||
this.cache.set(header["uid"], header);
|
||||
}
|
||||
|
||||
|
||||
if (data["callbackFunction"])
|
||||
this._returnData(data["callbackFunction"], data["id"], data["start"], data["end"]);
|
||||
}
|
||||
@@ -211,7 +216,7 @@ SOGoMailDataSource = Class.create({
|
||||
// Add thread-related data
|
||||
if (parseInt(this.uids[i][2]) > 0)
|
||||
data[j]['Thread'] = ' '; //'<img class="messageThread" src="' + ResourcesURL + '/arrow-down.png">';
|
||||
else
|
||||
else if (data[j]['Thread'])
|
||||
delete data[j]['Thread'];
|
||||
if (parseInt(this.uids[i][1]) > -1)
|
||||
data[j]['ThreadLevel'] = this.uids[i][1];
|
||||
|
||||
Reference in New Issue
Block a user