Content deleted Content added
mNo edit summary |
mNo edit summary |
||
Line 121:
}
function remove_loading_notice() {
var loading = document.getElementById("loading_notice");
if (!loading) return;
Line 130 ⟶ 129:
function fetch_data(username, end_date, handler, offset, page_list) {
add_loading_notice();
var url = prefix + "Special:Contributions/" + username + "?offset=" + offset + "&limit=
loadXMLDoc(url,
function (request) {
Line 203 ⟶ 202:
}
}
dump_object(history_entry);
//dump_text(history_entry["title"]);
Line 240 ⟶ 241:
function dump_lines(ary) {
dump_text("--> " + ary.join("\n--> "));
}
function dump_object(obj) {
var toString = "";
for (prop in obj) {
toString .= prop + ": " + obj[prop] + "\n";
}
dump_text(toString);
}
|