blob: 45a651da44305f18ac52716376b57f4c9af9e0d1 (
plain)
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
|
function updateDate() {
//
// Date.getTime() returns *milliseconds*
//
var this_date = workoutDate( $('#n_hours').val(), $('#type_hours').val() );
$('#ack_until_text').html("(until "+humanDate(this_date)+")");
$('#ack_until').val(this_date.getTime()/1000);
return false;
}
function workoutDate(h, t) {
var new_date = null;
h = new Number(h);
h = ( h > 300 ? 300 : h );
//
// Use a synchronous ajax request to fetch the date. Note that
// Date.getTime() returns milliseconds..
//
$.ajax({
url: '/ajax/time_in_x_hours/'+h+"/"+t,
async: false,
success: function(data) { new_date = new Date ( new Number(data) * 1000 ); }
});
return new_date;
}
function humanDate(d) {
var new_date = null;
if ( d == null ) {
d = new Date();
}
//
// Use a synchronous ajax convert a date to a human string. NB Date.getTime()
// returns *milliseconds*
//
$.ajax({
url: '/ajax/time_to_s_human/'+d.getTime()/1000,
async: false,
success: function(data) { new_date = data; }
});
return new_date;
}
function fetchDetail(a) {
// Use a synchronous ajax request to fetch the date.
$.get('/ajax/alerts_table_alert_detail/'+a,
function(data) {
$('#tr_summary_'+a).after(data);
// Only fetch the data once.
$('#a_detail_'+a).attr("onclick",null).click(function() { $('#tr_detail_'+a).toggle(); return false; });
});
return false;
}
|