1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/*
* Copyright (C) 1998-2012 by the Free Software Foundation, Inc.
*
* This file is part of HyperKitty.
*
* HyperKitty is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* HyperKitty is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* HyperKitty. If not, see <http://www.gnu.org/licenses/>.
*
* Author: Aurelien Bompard <abompard@fedoraproject.org>
*/
/*
* Generic
*/
function form_to_json(form) {
var form_data = form.serializeArray();
var data = {};
for (input in form_data) {
data[form_data[input].name] = form_data[input].value;
}
return data;
}
/*
* Voting
*/
function vote(elem) {
if ($(elem).hasClass("disabled")) {
return;
}
var value = parseInt($(elem).attr("data-vote"));
var form = $(elem).parents("form").first();
var data = form_to_json(form);
data['vote'] = value;
$.ajax({
type: "POST",
url: form.attr("action"),
dataType: "json",
data: data,
success: function(response) {
var newcontent = $(response.html);
form.replaceWith(newcontent);
setup_vote(newcontent); // re-bind events
},
error: function(jqXHR, textStatus, errorThrown) {
alert(jqXHR.responseText);
}
});
}
function setup_vote(baseElem) {
if (!baseElem) {
baseElem = document;
}
$(baseElem).find("a.vote").click(function(e) {
e.preventDefault();
vote(this);
});
}
/*
* Misc.
*/
function setup_months_list() {
var current = $("#months-list li.current").parent().prev();
if (!current.length) {
current = 0; // overview or search
} else {
current = current.prevAll("h3").length;
}
$("#months-list").accordion({ collapsible: true, active: current });
}
function setup_disabled_tooltips(baseElem) {
if (!baseElem) {
baseElem = document;
}
$(baseElem).find("a.disabled").tooltip().click(function (e) {
e.preventDefault();
});
}
function setup_flash_messages() {
$('.flashmsgs .alert-success').delay(3000).fadeOut('slow');
}
/*
* Activate
*/
$(document).ready(function() {
setup_vote();
setup_months_list();
setup_disabled_tooltips();
setup_flash_messages();
});
|