public
nobgit
read
NobMail
Based on mailcow: dockerized
Languages
Repository composition by tracked source files.
PHP
49%
JavaScript
35%
HTML
9%
CSS
4%
Shell
2%
Python
1%
Lua
0%
Perl
0%
Ruby
0%
SCSS
0%
Create file
Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git
Trace
data/web/js/site/dashboard.js
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
dashboard.js
on main
Author
Date
Commit
Line
Code
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1
$(document).ready(function() {
$(document).ready(function() {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2
// Parse seconds ago to date
// Parse seconds ago to date
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 3
// Get "now" timestamp
// Get "now" timestamp
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 4
var ts_now = Math.round((new Date()).getTime() / 1000);
var ts_now = Math.round((new Date()).getTime() / 1000);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 5
$('.parse_s_ago').each(function(i, parse_s_ago) {
$('.parse_s_ago').each(function(i, parse_s_ago) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 6
var started_s_ago = parseInt($(this).text(), 10);
var started_s_ago = parseInt($(this).text(), 10);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 7
if (typeof started_s_ago != 'NaN') {
if (typeof started_s_ago != 'NaN') {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 8
var started_date = new Date((ts_now - started_s_ago) * 1000);
var started_date = new Date((ts_now - started_s_ago) * 1000);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 9
if (started_date instanceof Date && !isNaN(started_date)) {
if (started_date instanceof Date && !isNaN(started_date)) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 10
var started_local_date = started_date.toLocaleDateString(LOCALE, DATETIME_FORMAT);
var started_local_date = started_date.toLocaleDateString(LOCALE, DATETIME_FORMAT);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 11
$(this).text(started_local_date);
$(this).text(started_local_date);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 12
} else {
} else {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 13
$(this).text('-');
$(this).text('-');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 14
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 15
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 16
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 17
// Parse general dates
// Parse general dates
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 18
$('.parse_date').each(function(i, parse_date) {
$('.parse_date').each(function(i, parse_date) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 19
var started_date = new Date(Date.parse($(this).text()));
var started_date = new Date(Date.parse($(this).text()));
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 20
if (typeof started_date != 'NaN') {
if (typeof started_date != 'NaN') {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 21
var started_local_date = started_date.toLocaleDateString(LOCALE, DATETIME_FORMAT);
var started_local_date = started_date.toLocaleDateString(LOCALE, DATETIME_FORMAT);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 22
$(this).text(started_local_date);
$(this).text(started_local_date);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 23
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 24
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 25
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 26
// set update loop container list
// set update loop container list
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 27
containersToUpdate = {};
containersToUpdate = {};
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 28
// set default ChartJs Font Color
// set default ChartJs Font Color
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 29
Chart.defaults.color = '#999';
Chart.defaults.color = '#999';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 30
// create host cpu and mem charts
// create host cpu and mem charts
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 31
createHostCpuAndMemChart();
createHostCpuAndMemChart();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 32
// check for new version
// check for new version
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 33
if (mailcow_info.branch === "master"){
if (mailcow_info.branch === "master"){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 34
check_update(mailcow_info.version_tag, mailcow_info.project_url);
check_update(mailcow_info.version_tag, mailcow_info.project_url);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 35
}
}
DerLinkman
about 3 years ago
b5acf56
Added Platform Information on Status Page
- Full commit hash
b5acf56e20a79d36496619116af2e460d7e20a87- Author
- DerLinkman <[email protected]>
- Date
- about 3 years ago
- Selected line
- 36
$("#mailcow_version").click(function(){
$("#mailcow_version").click(function(){
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 37
if (mailcow_cc_role !== "admin" && mailcow_cc_role !== "domainadmin" || mailcow_info.branch !== "master")
if (mailcow_cc_role !== "admin" && mailcow_cc_role !== "domainadmin" || mailcow_info.branch !== "master")
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 38
return;
return;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 39
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 40
showVersionModal("Version " + mailcow_info.version_tag, mailcow_info.version_tag);
showVersionModal("Version " + mailcow_info.version_tag, mailcow_info.version_tag);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 41
})
})
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 42
// get public ips
// get public ips
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 43
$("#host_show_ip").click(function(){
$("#host_show_ip").click(function(){
FreddleSpl0it
over 3 years ago
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 44
$("#host_show_ip").find(".text").addClass("d-none");
$("#host_show_ip").find(".text").addClass("d-none");
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 45
$("#host_show_ip").find(".spinner-border").removeClass("d-none");
$("#host_show_ip").find(".spinner-border").removeClass("d-none");
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 46
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 47
window.fetch("/api/v1/get/status/host/ip", { method:'GET', cache:'no-cache' }).then(function(response) {
window.fetch("/api/v1/get/status/host/ip", { method:'GET', cache:'no-cache' }).then(function(response) {
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 48
return response.json();
return response.json();
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 49
}).then(function(data) {
}).then(function(data) {
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 50
// display host ips
// display host ips
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 51
if (data.ipv4)
if (data.ipv4)
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 52
$("#host_ipv4").text(data.ipv4);
$("#host_ipv4").text(data.ipv4);
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 53
if (data.ipv6)
if (data.ipv6)
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 54
$("#host_ipv6").text(data.ipv6);
$("#host_ipv6").text(data.ipv6);
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 55
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 56
$("#host_show_ip").addClass("d-none");
$("#host_show_ip").addClass("d-none");
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 57
$("#host_show_ip").find(".text").removeClass("d-none");
$("#host_show_ip").find(".text").removeClass("d-none");
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 58
$("#host_show_ip").find(".spinner-border").addClass("d-none");
$("#host_show_ip").find(".spinner-border").addClass("d-none");
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 59
$("#host_ipv4").removeClass("d-none");
$("#host_ipv4").removeClass("d-none");
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 60
$("#host_ipv6").removeClass("d-none");
$("#host_ipv6").removeClass("d-none");
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 61
$("#host_ipv6").removeClass("text-danger");
$("#host_ipv6").removeClass("text-danger");
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 62
$("#host_ipv4").addClass("d-block");
$("#host_ipv4").addClass("d-block");
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 63
$("#host_ipv6").addClass("d-block");
$("#host_ipv6").addClass("d-block");
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 64
}).catch(function(error){
}).catch(function(error){
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 65
console.log(error);
console.log(error);
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 66
FreddleSpl0it
over 3 years ago
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 67
$("#host_ipv6").removeClass("d-none");
$("#host_ipv6").removeClass("d-none");
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 68
$("#host_ipv6").addClass("d-block");
$("#host_ipv6").addClass("d-block");
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 69
$("#host_ipv6").addClass("text-danger");
$("#host_ipv6").addClass("text-danger");
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 70
$("#host_ipv6").text(lang_debug.error_show_ip);
$("#host_ipv6").text(lang_debug.error_show_ip);
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 71
$("#host_show_ip").find(".text").removeClass("d-none");
$("#host_show_ip").find(".text").removeClass("d-none");
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 72
$("#host_show_ip").find(".spinner-border").addClass("d-none");
$("#host_show_ip").find(".spinner-border").addClass("d-none");
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 73
});
});
same change
9727e40
[Web] load public ip on click and add curl timeout
- Full commit hash
9727e4084f7303208f24da2154e40030b54516c2- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 74
});
});
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 75
update_container_stats();
update_container_stats();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 76
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 77
jQuery(function($){
jQuery(function($){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 78
if (localStorage.getItem("current_page") === null) {
if (localStorage.getItem("current_page") === null) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 79
var current_page = {};
var current_page = {};
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 80
} else {
} else {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 81
var current_page = JSON.parse(localStorage.getItem('current_page'));
var current_page = JSON.parse(localStorage.getItem('current_page'));
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 82
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 83
// http://stackoverflow.com/questions/24816/escaping-html-strings-with-jquery
// http://stackoverflow.com/questions/24816/escaping-html-strings-with-jquery
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 84
var entityMap={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/","`":"`","=":"="};
var entityMap={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/","`":"`","=":"="};
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 85
function escapeHtml(n){return String(n).replace(/[&<>"'`=\/]/g,function(n){return entityMap[n]})}
function escapeHtml(n){return String(n).replace(/[&<>"'`=\/]/g,function(n){return entityMap[n]})}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 86
function humanFileSize(i){if(Math.abs(i)<1024)return i+" B";var B=["KiB","MiB","GiB","TiB","PiB","EiB","ZiB","YiB"],e=-1;do{i/=1024,++e}while(Math.abs(i)>=1024&&e<B.length-1);return i.toFixed(1)+" "+B[e]}
function humanFileSize(i){if(Math.abs(i)<1024)return i+" B";var B=["KiB","MiB","GiB","TiB","PiB","EiB","ZiB","YiB"],e=-1;do{i/=1024,++e}while(Math.abs(i)>=1024&&e<B.length-1);return i.toFixed(1)+" "+B[e]}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 87
function hashCode(t){for(var n=0,r=0;r<t.length;r++)n=t.charCodeAt(r)+((n<<5)-n);return n}
function hashCode(t){for(var n=0,r=0;r<t.length;r++)n=t.charCodeAt(r)+((n<<5)-n);return n}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 88
function intToRGB(t){var n=(16777215&t).toString(16).toUpperCase();return"00000".substring(0,6-n.length)+n}
function intToRGB(t){var n=(16777215&t).toString(16).toUpperCase();return"00000".substring(0,6-n.length)+n}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 89
$(".refresh_table").on('click', function(e) {
$(".refresh_table").on('click', function(e) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 90
e.preventDefault();
e.preventDefault();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 91
var table_name = $(this).data('table');
var table_name = $(this).data('table');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 92
$('#' + table_name).DataTable().ajax.reload();
$('#' + table_name).DataTable().ajax.reload();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 93
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 94
function createSortableDate(td, cellData) {
function createSortableDate(td, cellData) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 95
$(td).attr({
$(td).attr({
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 96
"data-order": cellData,
"data-order": cellData,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 97
"data-sort": cellData
"data-sort": cellData
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 98
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 99
$(td).html(convertTimestampToLocalFormat(cellData));
$(td).html(convertTimestampToLocalFormat(cellData));
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 100
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 101
function draw_autodiscover_logs() {
function draw_autodiscover_logs() {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 102
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 103
if ($.fn.DataTable.isDataTable('#autodiscover_log') ) {
if ($.fn.DataTable.isDataTable('#autodiscover_log') ) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 104
$('#autodiscover_log').DataTable().columns.adjust().responsive.recalc();
$('#autodiscover_log').DataTable().columns.adjust().responsive.recalc();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 105
return;
return;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 106
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 107
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 108
var table = $('#autodiscover_log').DataTable({
var table = $('#autodiscover_log').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 109
responsive: true,
responsive: true,
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 110
processing: true,
processing: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 111
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 112
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 113
pageLength: log_pagination_size,
pageLength: log_pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 114
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 115
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 116
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 117
language: lang_datatables,
language: lang_datatables,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 118
order: [[0, 'desc']],
order: [[0, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 119
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 120
hideTableExpandCollapseBtn('#tab-autodiscover-logs', '#autodiscover_log');
hideTableExpandCollapseBtn('#tab-autodiscover-logs', '#autodiscover_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 121
},
},
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 122
ajax: {
ajax: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 123
type: "GET",
type: "GET",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 124
url: "/api/v1/get/logs/autodiscover/100",
url: "/api/v1/get/logs/autodiscover/100",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 125
dataSrc: function(data){
dataSrc: function(data){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 126
return process_table_data(data, 'autodiscover_log');
return process_table_data(data, 'autodiscover_log');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 127
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 128
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 129
columns: [
columns: [
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 130
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 131
title: lang.time,
title: lang.time,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 132
data: 'time',
data: 'time',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 133
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 134
responsivePriority: 1,
responsivePriority: 1,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 135
createdCell: function(td, cellData) {
createdCell: function(td, cellData) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 136
createSortableDate(td, cellData)
createSortableDate(td, cellData)
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 137
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 138
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 139
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 140
title: 'User-Agent',
title: 'User-Agent',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 141
data: 'ua',
data: 'ua',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 142
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 143
className: 'dtr-col-md',
className: 'dtr-col-md',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 144
responsivePriority: 5
responsivePriority: 5
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 145
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 146
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 147
title: 'Username',
title: 'Username',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 148
data: 'user',
data: 'user',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 149
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 150
responsivePriority: 4
responsivePriority: 4
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 151
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 152
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 153
title: 'IP',
title: 'IP',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 154
data: 'ip',
data: 'ip',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 155
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 156
responsivePriority: 2
responsivePriority: 2
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 157
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 158
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 159
title: 'Service',
title: 'Service',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 160
data: 'service',
data: 'service',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 161
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 162
responsivePriority: 3
responsivePriority: 3
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 163
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 164
]
]
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 165
});
});
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 166
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 167
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 168
hideTableExpandCollapseBtn('#tab-autodiscover-logs', '#autodiscover_log');
hideTableExpandCollapseBtn('#tab-autodiscover-logs', '#autodiscover_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 169
});
});
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 170
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 171
function draw_postfix_logs() {
function draw_postfix_logs() {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 172
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 173
if ($.fn.DataTable.isDataTable('#postfix_log') ) {
if ($.fn.DataTable.isDataTable('#postfix_log') ) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 174
$('#postfix_log').DataTable().columns.adjust().responsive.recalc();
$('#postfix_log').DataTable().columns.adjust().responsive.recalc();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 175
return;
return;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 176
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 177
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 178
var table = $('#postfix_log').DataTable({
var table = $('#postfix_log').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 179
responsive: true,
responsive: true,
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 180
processing: true,
processing: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 181
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 182
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 183
pageLength: log_pagination_size,
pageLength: log_pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 184
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 185
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 186
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 187
language: lang_datatables,
language: lang_datatables,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 188
order: [[0, 'desc']],
order: [[0, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 189
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 190
hideTableExpandCollapseBtn('#tab-postfix-logs', '#postfix_log');
hideTableExpandCollapseBtn('#tab-postfix-logs', '#postfix_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 191
},
},
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 192
ajax: {
ajax: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 193
type: "GET",
type: "GET",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 194
url: "/api/v1/get/logs/postfix",
url: "/api/v1/get/logs/postfix",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 195
dataSrc: function(data){
dataSrc: function(data){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 196
return process_table_data(data, 'general_syslog');
return process_table_data(data, 'general_syslog');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 197
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 198
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 199
columns: [
columns: [
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 200
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 201
title: lang.time,
title: lang.time,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 202
data: 'time',
data: 'time',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 203
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 204
createdCell: function(td, cellData) {
createdCell: function(td, cellData) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 205
createSortableDate(td, cellData)
createSortableDate(td, cellData)
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 206
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 207
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 208
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 209
title: lang.priority,
title: lang.priority,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 210
data: 'priority',
data: 'priority',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 211
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 212
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 213
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 214
title: lang.message,
title: lang.message,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 215
data: 'message',
data: 'message',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 216
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 217
className: 'dtr-col-md text-break'
className: 'dtr-col-md text-break'
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 218
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 219
]
]
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 220
});
});
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 221
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 222
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 223
hideTableExpandCollapseBtn('#tab-postfix-logs', '#postfix_log');
hideTableExpandCollapseBtn('#tab-postfix-logs', '#postfix_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 224
});
});
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 225
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 226
function draw_watchdog_logs() {
function draw_watchdog_logs() {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 227
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 228
if ($.fn.DataTable.isDataTable('#watchdog_log') ) {
if ($.fn.DataTable.isDataTable('#watchdog_log') ) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 229
$('#watchdog_log').DataTable().columns.adjust().responsive.recalc();
$('#watchdog_log').DataTable().columns.adjust().responsive.recalc();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 230
return;
return;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 231
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 232
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 233
var table = $('#watchdog_log').DataTable({
var table = $('#watchdog_log').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 234
responsive: true,
responsive: true,
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 235
processing: true,
processing: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 236
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 237
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 238
pageLength: log_pagination_size,
pageLength: log_pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 239
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 240
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 241
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 242
language: lang_datatables,
language: lang_datatables,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 243
order: [[0, 'desc']],
order: [[0, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 244
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 245
hideTableExpandCollapseBtn('#tab-watchdog-logs', '#watchdog_log');
hideTableExpandCollapseBtn('#tab-watchdog-logs', '#watchdog_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 246
},
},
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 247
ajax: {
ajax: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 248
type: "GET",
type: "GET",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 249
url: "/api/v1/get/logs/watchdog",
url: "/api/v1/get/logs/watchdog",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 250
dataSrc: function(data){
dataSrc: function(data){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 251
return process_table_data(data, 'watchdog');
return process_table_data(data, 'watchdog');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 252
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 253
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 254
columns: [
columns: [
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 255
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 256
title: lang.time,
title: lang.time,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 257
data: 'time',
data: 'time',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 258
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 259
createdCell: function(td, cellData) {
createdCell: function(td, cellData) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 260
createSortableDate(td, cellData)
createSortableDate(td, cellData)
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 261
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 262
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 263
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 264
title: 'Service',
title: 'Service',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 265
data: 'service',
data: 'service',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 266
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 267
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 268
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 269
title: 'Trend',
title: 'Trend',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 270
data: 'trend',
data: 'trend',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 271
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 272
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 273
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 274
title: lang.message,
title: lang.message,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 275
data: 'message',
data: 'message',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 276
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 277
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 278
]
]
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 279
});
});
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 280
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 281
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 282
hideTableExpandCollapseBtn('#tab-watchdog-logs', '#watchdog_log');
hideTableExpandCollapseBtn('#tab-watchdog-logs', '#watchdog_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 283
});
});
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 284
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 285
function draw_api_logs() {
function draw_api_logs() {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 286
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 287
if ($.fn.DataTable.isDataTable('#api_log') ) {
if ($.fn.DataTable.isDataTable('#api_log') ) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 288
$('#api_log').DataTable().columns.adjust().responsive.recalc();
$('#api_log').DataTable().columns.adjust().responsive.recalc();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 289
return;
return;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 290
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 291
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 292
var table = $('#api_log').DataTable({
var table = $('#api_log').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 293
responsive: true,
responsive: true,
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 294
processing: true,
processing: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 295
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 296
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 297
pageLength: log_pagination_size,
pageLength: log_pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 298
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 299
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 300
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 301
language: lang_datatables,
language: lang_datatables,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 302
order: [[0, 'desc']],
order: [[0, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 303
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 304
hideTableExpandCollapseBtn('#tab-api-logs', '#api_log');
hideTableExpandCollapseBtn('#tab-api-logs', '#api_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 305
},
},
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 306
ajax: {
ajax: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 307
type: "GET",
type: "GET",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 308
url: "/api/v1/get/logs/api",
url: "/api/v1/get/logs/api",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 309
dataSrc: function(data){
dataSrc: function(data){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 310
return process_table_data(data, 'apilog');
return process_table_data(data, 'apilog');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 311
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 312
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 313
columns: [
columns: [
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 314
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 315
title: lang.time,
title: lang.time,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 316
data: 'time',
data: 'time',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 317
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 318
createdCell: function(td, cellData) {
createdCell: function(td, cellData) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 319
createSortableDate(td, cellData)
createSortableDate(td, cellData)
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 320
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 321
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 322
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 323
title: 'URI',
title: 'URI',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 324
data: 'uri',
data: 'uri',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 325
defaultContent: '',
defaultContent: '',
FreddleSpl0it
about 2 years ago
66aa28b
[Web] escapeHtml in api_log table
- Full commit hash
66aa28b5de282fc037e0d2f02fbdc84539b614a1- Author
- FreddleSpl0it <[email protected]>
- Date
- about 2 years ago
- Selected line
- 326
className: 'dtr-col-md dtr-break-all',
className: 'dtr-col-md dtr-break-all',
same change
66aa28b
[Web] escapeHtml in api_log table
- Full commit hash
66aa28b5de282fc037e0d2f02fbdc84539b614a1- Author
- FreddleSpl0it <[email protected]>
- Date
- about 2 years ago
- Selected line
- 327
render: function (data, type) {
render: function (data, type) {
same change
66aa28b
[Web] escapeHtml in api_log table
- Full commit hash
66aa28b5de282fc037e0d2f02fbdc84539b614a1- Author
- FreddleSpl0it <[email protected]>
- Date
- about 2 years ago
- Selected line
- 328
return escapeHtml(data);
return escapeHtml(data);
same change
66aa28b
[Web] escapeHtml in api_log table
- Full commit hash
66aa28b5de282fc037e0d2f02fbdc84539b614a1- Author
- FreddleSpl0it <[email protected]>
- Date
- about 2 years ago
- Selected line
- 329
}
}
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 330
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 331
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 332
title: 'Method',
title: 'Method',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 333
data: 'method',
data: 'method',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 334
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 335
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 336
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 337
title: 'IP',
title: 'IP',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 338
data: 'remote',
data: 'remote',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 339
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 340
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 341
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 342
title: 'Data',
title: 'Data',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 343
data: 'data',
data: 'data',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 344
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 345
className: 'dtr-col-md dtr-break-all'
className: 'dtr-col-md dtr-break-all'
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 346
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 347
]
]
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 348
});
});
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 349
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 350
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 351
hideTableExpandCollapseBtn('#tab-api-logs', '#api_log');
hideTableExpandCollapseBtn('#tab-api-logs', '#api_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 352
});
});
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 353
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 354
function draw_rl_logs() {
function draw_rl_logs() {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 355
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 356
if ($.fn.DataTable.isDataTable('#rl_log') ) {
if ($.fn.DataTable.isDataTable('#rl_log') ) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 357
$('#rl_log').DataTable().columns.adjust().responsive.recalc();
$('#rl_log').DataTable().columns.adjust().responsive.recalc();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 358
return;
return;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 359
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 360
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 361
var table = $('#rl_log').DataTable({
var table = $('#rl_log').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 362
responsive: true,
responsive: true,
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 363
processing: true,
processing: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 364
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 365
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 366
pageLength: log_pagination_size,
pageLength: log_pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 367
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 368
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 369
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 370
language: lang_datatables,
language: lang_datatables,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 371
order: [[0, 'desc']],
order: [[0, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 372
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 373
hideTableExpandCollapseBtn('#tab-rl-logs', '#rl_log');
hideTableExpandCollapseBtn('#tab-rl-logs', '#rl_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 374
},
},
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 375
ajax: {
ajax: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 376
type: "GET",
type: "GET",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 377
url: "/api/v1/get/logs/ratelimited",
url: "/api/v1/get/logs/ratelimited",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 378
dataSrc: function(data){
dataSrc: function(data){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 379
return process_table_data(data, 'rllog');
return process_table_data(data, 'rllog');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 380
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 381
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 382
columns: [
columns: [
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 383
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 384
title: ' ',
title: ' ',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 385
data: 'indicator',
data: 'indicator',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 386
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 387
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 388
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 389
title: lang.time,
title: lang.time,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 390
data: 'time',
data: 'time',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 391
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 392
createdCell: function(td, cellData) {
createdCell: function(td, cellData) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 393
createSortableDate(td, cellData)
createSortableDate(td, cellData)
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 394
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 395
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 396
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 397
title: lang.rate_name,
title: lang.rate_name,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 398
data: 'rl_name',
data: 'rl_name',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 399
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 400
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 401
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 402
title: lang.sender,
title: lang.sender,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 403
data: 'from',
data: 'from',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 404
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 405
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 406
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 407
title: lang.recipients,
title: lang.recipients,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 408
data: 'rcpt',
data: 'rcpt',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 409
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 410
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 411
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 412
title: lang.authed_user,
title: lang.authed_user,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 413
data: 'user',
data: 'user',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 414
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 415
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 416
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 417
title: 'Msg ID',
title: 'Msg ID',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 418
data: 'message_id',
data: 'message_id',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 419
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 420
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 421
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 422
title: 'Header From',
title: 'Header From',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 423
data: 'header_from',
data: 'header_from',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 424
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 425
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 426
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 427
title: 'Subject',
title: 'Subject',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 428
data: 'header_subject',
data: 'header_subject',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 429
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 430
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 431
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 432
title: 'Hash',
title: 'Hash',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 433
data: 'rl_hash',
data: 'rl_hash',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 434
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 435
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 436
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 437
title: 'Rspamd QID',
title: 'Rspamd QID',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 438
data: 'qid',
data: 'qid',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 439
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 440
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 441
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 442
title: 'IP',
title: 'IP',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 443
data: 'ip',
data: 'ip',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 444
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 445
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 446
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 447
title: lang.action,
title: lang.action,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 448
data: 'action',
data: 'action',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 449
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 450
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 451
]
]
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 452
});
});
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 453
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 454
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 455
hideTableExpandCollapseBtn('#tab-rl-logs', '#rl_log');
hideTableExpandCollapseBtn('#tab-rl-logs', '#rl_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 456
});
});
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 457
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 458
function draw_ui_logs() {
function draw_ui_logs() {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 459
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 460
if ($.fn.DataTable.isDataTable('#ui_logs') ) {
if ($.fn.DataTable.isDataTable('#ui_logs') ) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 461
$('#ui_logs').DataTable().columns.adjust().responsive.recalc();
$('#ui_logs').DataTable().columns.adjust().responsive.recalc();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 462
return;
return;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 463
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 464
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 465
var table = $('#ui_logs').DataTable({
var table = $('#ui_logs').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 466
responsive: true,
responsive: true,
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 467
processing: true,
processing: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 468
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 469
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 470
pageLength: log_pagination_size,
pageLength: log_pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 471
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 472
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 473
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 474
language: lang_datatables,
language: lang_datatables,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 475
order: [[0, 'desc']],
order: [[0, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 476
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 477
hideTableExpandCollapseBtn('#tab-ui-logs', '#ui_logs');
hideTableExpandCollapseBtn('#tab-ui-logs', '#ui_logs');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 478
},
},
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 479
ajax: {
ajax: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 480
type: "GET",
type: "GET",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 481
url: "/api/v1/get/logs/ui",
url: "/api/v1/get/logs/ui",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 482
dataSrc: function(data){
dataSrc: function(data){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 483
return process_table_data(data, 'mailcow_ui');
return process_table_data(data, 'mailcow_ui');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 484
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 485
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 486
columns: [
columns: [
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 487
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 488
title: lang.time,
title: lang.time,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 489
data: 'time',
data: 'time',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 490
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 491
createdCell: function(td, cellData) {
createdCell: function(td, cellData) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 492
createSortableDate(td, cellData)
createSortableDate(td, cellData)
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 493
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 494
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 495
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 496
title: 'Type',
title: 'Type',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 497
data: 'type',
data: 'type',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 498
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 499
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 500
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 501
title: 'Task',
title: 'Task',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 502
data: 'task',
data: 'task',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 503
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 504
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 505
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 506
title: 'User',
title: 'User',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 507
data: 'user',
data: 'user',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 508
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 509
className: 'dtr-col-sm'
className: 'dtr-col-sm'
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 510
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 511
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 512
title: 'Role',
title: 'Role',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 513
data: 'role',
data: 'role',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 514
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 515
className: 'dtr-col-sm'
className: 'dtr-col-sm'
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 516
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 517
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 518
title: 'IP',
title: 'IP',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 519
data: 'remote',
data: 'remote',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 520
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 521
className: 'dtr-col-md dtr-break-all'
className: 'dtr-col-md dtr-break-all'
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 522
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 523
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 524
title: lang.message,
title: lang.message,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 525
data: 'msg',
data: 'msg',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 526
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 527
className: 'dtr-col-md dtr-break-all'
className: 'dtr-col-md dtr-break-all'
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 528
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 529
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 530
title: 'Call',
title: 'Call',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 531
data: 'call',
data: 'call',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 532
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 533
className: 'none dtr-col-md dtr-break-all'
className: 'none dtr-col-md dtr-break-all'
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 534
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 535
]
]
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 536
});
});
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 537
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 538
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 539
hideTableExpandCollapseBtn('#tab-ui-logs', '#ui_log');
hideTableExpandCollapseBtn('#tab-ui-logs', '#ui_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 540
});
});
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 541
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 542
function draw_sasl_logs() {
function draw_sasl_logs() {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 543
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 544
if ($.fn.DataTable.isDataTable('#sasl_logs') ) {
if ($.fn.DataTable.isDataTable('#sasl_logs') ) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 545
$('#sasl_logs').DataTable().columns.adjust().responsive.recalc();
$('#sasl_logs').DataTable().columns.adjust().responsive.recalc();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 546
return;
return;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 547
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 548
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 549
var table = $('#sasl_logs').DataTable({
var table = $('#sasl_logs').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 550
responsive: true,
responsive: true,
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 551
processing: true,
processing: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 552
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 553
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 554
pageLength: log_pagination_size,
pageLength: log_pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 555
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 556
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 557
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 558
language: lang_datatables,
language: lang_datatables,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 559
order: [[0, 'desc']],
order: [[0, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 560
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 561
hideTableExpandCollapseBtn('#tab-sasl-logs', '#sasl_logs');
hideTableExpandCollapseBtn('#tab-sasl-logs', '#sasl_logs');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 562
},
},
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 563
ajax: {
ajax: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 564
type: "GET",
type: "GET",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 565
url: "/api/v1/get/logs/sasl",
url: "/api/v1/get/logs/sasl",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 566
dataSrc: function(data){
dataSrc: function(data){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 567
return process_table_data(data, 'sasl_log_table');
return process_table_data(data, 'sasl_log_table');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 568
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 569
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 570
columns: [
columns: [
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 571
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 572
title: lang.username,
title: lang.username,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 573
data: 'username',
data: 'username',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 574
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 575
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 576
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 577
title: lang.service,
title: lang.service,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 578
data: 'service',
data: 'service',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 579
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 580
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 581
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 582
title: 'IP',
title: 'IP',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 583
data: 'real_rip',
data: 'real_rip',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 584
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 585
className: 'dtr-col-md text-break'
className: 'dtr-col-md text-break'
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 586
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 587
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 588
title: lang.login_time,
title: lang.login_time,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 589
data: 'datetime',
data: 'datetime',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 590
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 591
createdCell: function(td, cellData) {
createdCell: function(td, cellData) {
FreddleSpl0it
over 3 years ago
02b2988
[Web] fix typo in SASL table logs
- Full commit hash
02b2988beb996a1af11d164082b79c302267206a- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 592
cellData = Math.floor((new Date(cellData.replace(/-/g, "/"))).getTime() / 1000);
cellData = Math.floor((new Date(cellData.replace(/-/g, "/"))).getTime() / 1000);
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 593
createSortableDate(td, cellData)
createSortableDate(td, cellData)
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 594
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 595
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 596
]
]
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 597
});
});
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 598
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 599
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 600
hideTableExpandCollapseBtn('#tab-sasl-logs', '#sasl_logs');
hideTableExpandCollapseBtn('#tab-sasl-logs', '#sasl_logs');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 601
});
});
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 602
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 603
function draw_acme_logs() {
function draw_acme_logs() {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 604
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 605
if ($.fn.DataTable.isDataTable('#acme_log') ) {
if ($.fn.DataTable.isDataTable('#acme_log') ) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 606
$('#acme_log').DataTable().columns.adjust().responsive.recalc();
$('#acme_log').DataTable().columns.adjust().responsive.recalc();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 607
return;
return;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 608
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 609
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 610
var table = $('#acme_log').DataTable({
var table = $('#acme_log').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 611
responsive: true,
responsive: true,
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 612
processing: true,
processing: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 613
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 614
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 615
pageLength: log_pagination_size,
pageLength: log_pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 616
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 617
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 618
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 619
language: lang_datatables,
language: lang_datatables,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 620
order: [[0, 'desc']],
order: [[0, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 621
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 622
hideTableExpandCollapseBtn('#tab-acme-logs', '#acme_log');
hideTableExpandCollapseBtn('#tab-acme-logs', '#acme_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 623
},
},
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 624
ajax: {
ajax: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 625
type: "GET",
type: "GET",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 626
url: "/api/v1/get/logs/acme",
url: "/api/v1/get/logs/acme",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 627
dataSrc: function(data){
dataSrc: function(data){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 628
return process_table_data(data, 'general_syslog');
return process_table_data(data, 'general_syslog');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 629
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 630
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 631
columns: [
columns: [
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 632
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 633
title: lang.time,
title: lang.time,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 634
data: 'time',
data: 'time',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 635
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 636
createdCell: function(td, cellData) {
createdCell: function(td, cellData) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 637
createSortableDate(td, cellData)
createSortableDate(td, cellData)
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 638
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 639
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 640
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 641
title: lang.message,
title: lang.message,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 642
data: 'message',
data: 'message',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 643
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 644
className: 'dtr-col-md dtr-break-all'
className: 'dtr-col-md dtr-break-all'
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 645
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 646
]
]
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 647
});
});
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 648
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 649
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 650
hideTableExpandCollapseBtn('#tab-acme-logs', '#acme_log');
hideTableExpandCollapseBtn('#tab-acme-logs', '#acme_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 651
});
});
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 652
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 653
function draw_netfilter_logs() {
function draw_netfilter_logs() {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 654
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 655
if ($.fn.DataTable.isDataTable('#netfilter_log') ) {
if ($.fn.DataTable.isDataTable('#netfilter_log') ) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 656
$('#netfilter_log').DataTable().columns.adjust().responsive.recalc();
$('#netfilter_log').DataTable().columns.adjust().responsive.recalc();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 657
return;
return;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 658
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 659
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 660
var table = $('#netfilter_log').DataTable({
var table = $('#netfilter_log').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 661
responsive: true,
responsive: true,
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 662
processing: true,
processing: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 663
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 664
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 665
pageLength: log_pagination_size,
pageLength: log_pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 666
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 667
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 668
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 669
language: lang_datatables,
language: lang_datatables,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 670
order: [[0, 'desc']],
order: [[0, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 671
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 672
hideTableExpandCollapseBtn('#tab-netfilter-logs', '#netfilter_log');
hideTableExpandCollapseBtn('#tab-netfilter-logs', '#netfilter_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 673
},
},
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 674
ajax: {
ajax: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 675
type: "GET",
type: "GET",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 676
url: "/api/v1/get/logs/netfilter",
url: "/api/v1/get/logs/netfilter",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 677
dataSrc: function(data){
dataSrc: function(data){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 678
return process_table_data(data, 'general_syslog');
return process_table_data(data, 'general_syslog');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 679
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 680
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 681
columns: [
columns: [
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 682
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 683
title: lang.time,
title: lang.time,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 684
data: 'time',
data: 'time',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 685
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 686
createdCell: function(td, cellData) {
createdCell: function(td, cellData) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 687
createSortableDate(td, cellData)
createSortableDate(td, cellData)
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 688
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 689
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 690
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 691
title: lang.priority,
title: lang.priority,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 692
data: 'priority',
data: 'priority',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 693
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 694
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 695
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 696
title: lang.message,
title: lang.message,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 697
data: 'message',
data: 'message',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 698
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 699
className: 'dtr-col-md text-break'
className: 'dtr-col-md text-break'
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 700
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 701
]
]
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 702
});
});
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 703
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 704
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 705
hideTableExpandCollapseBtn('#tab-netfilter-logs', '#netfilter_log');
hideTableExpandCollapseBtn('#tab-netfilter-logs', '#netfilter_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 706
});
});
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 707
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 708
function draw_sogo_logs() {
function draw_sogo_logs() {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 709
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 710
if ($.fn.DataTable.isDataTable('#sogo_log') ) {
if ($.fn.DataTable.isDataTable('#sogo_log') ) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 711
$('#sogo_log').DataTable().columns.adjust().responsive.recalc();
$('#sogo_log').DataTable().columns.adjust().responsive.recalc();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 712
return;
return;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 713
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 714
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 715
var table = $('#sogo_log').DataTable({
var table = $('#sogo_log').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 716
responsive: true,
responsive: true,
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 717
processing: true,
processing: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 718
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 719
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 720
pageLength: log_pagination_size,
pageLength: log_pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 721
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 722
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 723
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 724
language: lang_datatables,
language: lang_datatables,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 725
order: [[0, 'desc']],
order: [[0, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 726
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 727
hideTableExpandCollapseBtn('#tab-sogo-logs', '#sogo_log');
hideTableExpandCollapseBtn('#tab-sogo-logs', '#sogo_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 728
},
},
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 729
ajax: {
ajax: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 730
type: "GET",
type: "GET",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 731
url: "/api/v1/get/logs/sogo",
url: "/api/v1/get/logs/sogo",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 732
dataSrc: function(data){
dataSrc: function(data){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 733
return process_table_data(data, 'general_syslog');
return process_table_data(data, 'general_syslog');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 734
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 735
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 736
columns: [
columns: [
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 737
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 738
title: lang.time,
title: lang.time,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 739
data: 'time',
data: 'time',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 740
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 741
createdCell: function(td, cellData) {
createdCell: function(td, cellData) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 742
createSortableDate(td, cellData)
createSortableDate(td, cellData)
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 743
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 744
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 745
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 746
title: lang.priority,
title: lang.priority,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 747
data: 'priority',
data: 'priority',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 748
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 749
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 750
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 751
title: lang.message,
title: lang.message,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 752
data: 'message',
data: 'message',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 753
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 754
className: 'dtr-col-md text-break'
className: 'dtr-col-md text-break'
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 755
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 756
]
]
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 757
});
});
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 758
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 759
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 760
hideTableExpandCollapseBtn('#tab-sogo-logs', '#sogo_log');
hideTableExpandCollapseBtn('#tab-sogo-logs', '#sogo_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 761
});
});
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 762
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 763
function draw_dovecot_logs() {
function draw_dovecot_logs() {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 764
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 765
if ($.fn.DataTable.isDataTable('#dovecot_log') ) {
if ($.fn.DataTable.isDataTable('#dovecot_log') ) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 766
$('#dovecot_log').DataTable().columns.adjust().responsive.recalc();
$('#dovecot_log').DataTable().columns.adjust().responsive.recalc();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 767
return;
return;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 768
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 769
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 770
var table = $('#dovecot_log').DataTable({
var table = $('#dovecot_log').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 771
responsive: true,
responsive: true,
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 772
processing: true,
processing: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 773
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 774
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 775
pageLength: log_pagination_size,
pageLength: log_pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 776
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 777
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 778
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 779
language: lang_datatables,
language: lang_datatables,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 780
order: [[0, 'desc']],
order: [[0, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 781
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 782
hideTableExpandCollapseBtn('#tab-dovecot-logs', '#dovecot_log');
hideTableExpandCollapseBtn('#tab-dovecot-logs', '#dovecot_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 783
},
},
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 784
ajax: {
ajax: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 785
type: "GET",
type: "GET",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 786
url: "/api/v1/get/logs/dovecot",
url: "/api/v1/get/logs/dovecot",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 787
dataSrc: function(data){
dataSrc: function(data){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 788
return process_table_data(data, 'general_syslog');
return process_table_data(data, 'general_syslog');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 789
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 790
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 791
columns: [
columns: [
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 792
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 793
title: lang.time,
title: lang.time,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 794
data: 'time',
data: 'time',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 795
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 796
createdCell: function(td, cellData) {
createdCell: function(td, cellData) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 797
createSortableDate(td, cellData)
createSortableDate(td, cellData)
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 798
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 799
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 800
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 801
title: lang.priority,
title: lang.priority,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 802
data: 'priority',
data: 'priority',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 803
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 804
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 805
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 806
title: lang.message,
title: lang.message,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 807
data: 'message',
data: 'message',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 808
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 809
className: 'dtr-col-md text-break'
className: 'dtr-col-md text-break'
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 810
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 811
]
]
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 812
});
});
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 813
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 814
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 815
hideTableExpandCollapseBtn('#tab-dovecot-logs', '#dovecot_log');
hideTableExpandCollapseBtn('#tab-dovecot-logs', '#dovecot_log');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 816
});
});
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 817
}
}
FreddleSpl0it
about 3 years ago
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 818
function draw_cron_logs() {
function draw_cron_logs() {
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 819
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 820
if ($.fn.DataTable.isDataTable('#cron_log') ) {
if ($.fn.DataTable.isDataTable('#cron_log') ) {
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 821
$('#cron_log').DataTable().columns.adjust().responsive.recalc();
$('#cron_log').DataTable().columns.adjust().responsive.recalc();
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 822
return;
return;
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 823
}
}
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 824
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 825
var table = $('#cron_log').DataTable({
var table = $('#cron_log').DataTable({
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 826
responsive: true,
responsive: true,
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 827
processing: true,
processing: true,
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 828
serverSide: false,
serverSide: false,
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 829
stateSave: true,
stateSave: true,
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 830
pageLength: log_pagination_size,
pageLength: log_pagination_size,
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 831
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 832
"tr" +
"tr" +
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 833
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 834
language: lang_datatables,
language: lang_datatables,
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 835
order: [[0, 'desc']],
order: [[0, 'desc']],
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 836
initComplete: function(){
initComplete: function(){
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 837
hideTableExpandCollapseBtn('#tab-cron-logs', '#cron_log');
hideTableExpandCollapseBtn('#tab-cron-logs', '#cron_log');
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 838
},
},
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 839
ajax: {
ajax: {
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 840
type: "GET",
type: "GET",
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 841
url: "/api/v1/get/logs/cron",
url: "/api/v1/get/logs/cron",
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 842
dataSrc: function(data){
dataSrc: function(data){
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 843
return process_table_data(data, 'general_syslog');
return process_table_data(data, 'general_syslog');
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 844
}
}
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 845
},
},
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 846
columns: [
columns: [
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 847
{
{
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 848
title: lang.time,
title: lang.time,
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 849
data: 'time',
data: 'time',
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 850
defaultContent: '',
defaultContent: '',
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 851
createdCell: function(td, cellData) {
createdCell: function(td, cellData) {
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 852
createSortableDate(td, cellData)
createSortableDate(td, cellData)
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 853
}
}
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 854
},
},
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 855
{
{
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 856
title: lang.task,
title: lang.task,
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 857
data: 'task',
data: 'task',
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 858
defaultContent: ''
defaultContent: ''
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 859
},
},
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 860
{
{
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 861
title: lang.priority,
title: lang.priority,
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 862
data: 'priority',
data: 'priority',
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 863
defaultContent: ''
defaultContent: ''
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 864
},
},
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 865
{
{
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 866
title: lang.message,
title: lang.message,
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 867
data: 'message',
data: 'message',
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 868
defaultContent: '',
defaultContent: '',
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 869
className: 'dtr-col-md text-break'
className: 'dtr-col-md text-break'
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 870
}
}
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 871
]
]
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 872
});
});
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 873
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 874
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 875
hideTableExpandCollapseBtn('#tab-cron-logs', '#cron_log');
hideTableExpandCollapseBtn('#tab-cron-logs', '#cron_log');
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 876
});
});
same change
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 877
}
}
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 878
function rspamd_pie_graph() {
function rspamd_pie_graph() {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 879
$.ajax({
$.ajax({
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 880
url: '/api/v1/get/rspamd/actions',
url: '/api/v1/get/rspamd/actions',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 881
async: true,
async: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 882
success: function(data){
success: function(data){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 883
var total = 0;
var total = 0;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 884
$(data).map(function(){total += this[1];});
$(data).map(function(){total += this[1];});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 885
var labels = $.makeArray($(data).map(function(){return this[0] + ' ' + Math.round(this[1]/total * 100) + '%';}));
var labels = $.makeArray($(data).map(function(){return this[0] + ' ' + Math.round(this[1]/total * 100) + '%';}));
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 886
var values = $.makeArray($(data).map(function(){return this[1];}));
var values = $.makeArray($(data).map(function(){return this[1];}));
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 887
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 888
var graphdata = {
var graphdata = {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 889
labels: labels,
labels: labels,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 890
datasets: [{
datasets: [{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 891
data: values,
data: values,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 892
backgroundColor: ['#DC3023', '#59ABE3', '#FFA400', '#FFA400', '#26A65B']
backgroundColor: ['#DC3023', '#59ABE3', '#FFA400', '#FFA400', '#26A65B']
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 893
}]
}]
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 894
};
};
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 895
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 896
var options = {
var options = {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 897
responsive: true,
responsive: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 898
maintainAspectRatio: false,
maintainAspectRatio: false,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 899
plugins: {
plugins: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 900
datalabels: {
datalabels: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 901
color: '#FFF',
color: '#FFF',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 902
font: {
font: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 903
weight: 'bold'
weight: 'bold'
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 904
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 905
display: function(context) {
display: function(context) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 906
return context.dataset.data[context.dataIndex] !== 0;
return context.dataset.data[context.dataIndex] !== 0;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 907
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 908
formatter: function(value, context) {
formatter: function(value, context) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 909
return Math.round(value/total*100) + '%';
return Math.round(value/total*100) + '%';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 910
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 911
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 912
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 913
};
};
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 914
var chartcanvas = document.getElementById('rspamd_donut');
var chartcanvas = document.getElementById('rspamd_donut');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 915
Chart.register('ChartDataLabels');
Chart.register('ChartDataLabels');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 916
if(typeof chart == 'undefined') {
if(typeof chart == 'undefined') {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 917
chart = new Chart(chartcanvas.getContext("2d"), {
chart = new Chart(chartcanvas.getContext("2d"), {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 918
plugins: [ChartDataLabels],
plugins: [ChartDataLabels],
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 919
type: 'doughnut',
type: 'doughnut',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 920
data: graphdata,
data: graphdata,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 921
options: options
options: options
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 922
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 923
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 924
else {
else {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 925
chart.destroy();
chart.destroy();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 926
chart = new Chart(chartcanvas.getContext("2d"), {
chart = new Chart(chartcanvas.getContext("2d"), {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 927
plugins: [ChartDataLabels],
plugins: [ChartDataLabels],
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 928
type: 'doughnut',
type: 'doughnut',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 929
data: graphdata,
data: graphdata,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 930
options: options
options: options
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 931
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 932
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 933
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 934
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 935
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 936
function draw_rspamd_history() {
function draw_rspamd_history() {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 937
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 938
if ($.fn.DataTable.isDataTable('#rspamd_history') ) {
if ($.fn.DataTable.isDataTable('#rspamd_history') ) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 939
$('#rspamd_history').DataTable().columns.adjust().responsive.recalc();
$('#rspamd_history').DataTable().columns.adjust().responsive.recalc();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 940
return;
return;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 941
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 942
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 943
var table = $('#rspamd_history').DataTable({
var table = $('#rspamd_history').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 944
responsive: true,
responsive: true,
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 945
processing: true,
processing: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 946
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 947
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 948
pageLength: log_pagination_size,
pageLength: log_pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 949
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 950
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 951
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 952
language: lang_datatables,
language: lang_datatables,
Tom Udding
over 3 years ago
82c80a9
Make default ordering of Rspamd table consistent
- Full commit hash
82c80a9682f29d69a935f93dd26b2b1ed1b107cf- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 953
order: [[0, 'desc']],
order: [[0, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 954
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 955
hideTableExpandCollapseBtn('#tab-rspamd-logs', '#rspamd_history');
hideTableExpandCollapseBtn('#tab-rspamd-logs', '#rspamd_history');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 956
},
},
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 957
ajax: {
ajax: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 958
type: "GET",
type: "GET",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 959
url: "/api/v1/get/logs/rspamd-history",
url: "/api/v1/get/logs/rspamd-history",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 960
dataSrc: function(data){
dataSrc: function(data){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 961
return process_table_data(data, 'rspamd_history');
return process_table_data(data, 'rspamd_history');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 962
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 963
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 964
columns: [
columns: [
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 965
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 966
title: lang.time,
title: lang.time,
Tom Udding
over 3 years ago
eefce62
Fix incorrect datetime for Rspamd logs
- Full commit hash
eefce62f017be3a13c2ff6d9fee51a31689829d2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 967
data: 'unix_time',
data: 'unix_time',
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 968
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 969
createdCell: function(td, cellData) {
createdCell: function(td, cellData) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 970
createSortableDate(td, cellData)
createSortableDate(td, cellData)
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 971
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 972
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 973
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 974
title: 'IP address',
title: 'IP address',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 975
data: 'ip',
data: 'ip',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 976
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 977
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 978
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 979
title: 'From',
title: 'From',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 980
data: 'sender_mime',
data: 'sender_mime',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 981
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 982
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 983
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 984
title: 'To',
title: 'To',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 985
data: 'rcpt',
data: 'rcpt',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 986
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 987
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 988
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 989
title: 'Subject',
title: 'Subject',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 990
data: 'subject',
data: 'subject',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 991
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 992
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 993
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 994
title: 'Action',
title: 'Action',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 995
data: 'action',
data: 'action',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 996
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 997
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 998
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 999
title: 'Score',
title: 'Score',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1000
data: 'score',
data: 'score',
Tom Udding
over 3 years ago
136cc2e
Fix missing score and scan time Rspamd logs
- Full commit hash
136cc2e3fff2276074de7e51cd2e5a66f4659ef1- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1001
defaultContent: '',
defaultContent: '',
FreddleSpl0it
over 3 years ago
0372a21
[Web] fix rspamd table on sm devices
- Full commit hash
0372a2150d438ad71c1acc853db2a8556486ee82- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1002
class: 'text-nowrap',
class: 'text-nowrap',
Tom Udding
over 3 years ago
136cc2e
Fix missing score and scan time Rspamd logs
- Full commit hash
136cc2e3fff2276074de7e51cd2e5a66f4659ef1- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1003
createdCell: function(td, cellData) {
createdCell: function(td, cellData) {
same change
136cc2e
Fix missing score and scan time Rspamd logs
- Full commit hash
136cc2e3fff2276074de7e51cd2e5a66f4659ef1- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1004
$(td).attr({
$(td).attr({
same change
136cc2e
Fix missing score and scan time Rspamd logs
- Full commit hash
136cc2e3fff2276074de7e51cd2e5a66f4659ef1- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1005
"data-order": cellData.sortBy,
"data-order": cellData.sortBy,
same change
136cc2e
Fix missing score and scan time Rspamd logs
- Full commit hash
136cc2e3fff2276074de7e51cd2e5a66f4659ef1- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1006
"data-sort": cellData.sortBy
"data-sort": cellData.sortBy
same change
136cc2e
Fix missing score and scan time Rspamd logs
- Full commit hash
136cc2e3fff2276074de7e51cd2e5a66f4659ef1- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1007
});
});
Patrik Kernstock
10 months ago
8978a9a
Remove debug console.log() lines
- Full commit hash
8978a9ad7903b42533d3bfd2e9a1e9f273026f10- Author
- Patrik Kernstock <[email protected]>
- Date
- 10 months ago
- Selected line
- 1008
},
},
FreddleSpl0it
over 3 years ago
0372a21
[Web] fix rspamd table on sm devices
- Full commit hash
0372a2150d438ad71c1acc853db2a8556486ee82- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1009
render: function (data) {
render: function (data) {
same change
0372a21
[Web] fix rspamd table on sm devices
- Full commit hash
0372a2150d438ad71c1acc853db2a8556486ee82- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1010
return data.value;
return data.value;
Tom Udding
over 3 years ago
136cc2e
Fix missing score and scan time Rspamd logs
- Full commit hash
136cc2e3fff2276074de7e51cd2e5a66f4659ef1- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1011
}
}
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1012
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1013
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1014
title: 'Symbols',
title: 'Symbols',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1015
data: 'symbols',
data: 'symbols',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1016
defaultContent: '',
defaultContent: '',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1017
className: 'none dtr-col-md'
className: 'none dtr-col-md'
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1018
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1019
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1020
title: 'Msg size',
title: 'Msg size',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1021
data: 'size',
data: 'size',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1022
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1023
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1024
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1025
title: 'Scan Time',
title: 'Scan Time',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1026
data: 'scan_time',
data: 'scan_time',
Tom Udding
over 3 years ago
136cc2e
Fix missing score and scan time Rspamd logs
- Full commit hash
136cc2e3fff2276074de7e51cd2e5a66f4659ef1- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1027
defaultContent: '',
defaultContent: '',
same change
136cc2e
Fix missing score and scan time Rspamd logs
- Full commit hash
136cc2e3fff2276074de7e51cd2e5a66f4659ef1- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1028
createdCell: function(td, cellData) {
createdCell: function(td, cellData) {
same change
136cc2e
Fix missing score and scan time Rspamd logs
- Full commit hash
136cc2e3fff2276074de7e51cd2e5a66f4659ef1- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1029
$(td).attr({
$(td).attr({
same change
136cc2e
Fix missing score and scan time Rspamd logs
- Full commit hash
136cc2e3fff2276074de7e51cd2e5a66f4659ef1- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1030
"data-order": cellData.sortBy,
"data-order": cellData.sortBy,
same change
136cc2e
Fix missing score and scan time Rspamd logs
- Full commit hash
136cc2e3fff2276074de7e51cd2e5a66f4659ef1- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1031
"data-sort": cellData.sortBy
"data-sort": cellData.sortBy
same change
136cc2e
Fix missing score and scan time Rspamd logs
- Full commit hash
136cc2e3fff2276074de7e51cd2e5a66f4659ef1- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1032
});
});
Patrik Kernstock
10 months ago
8978a9a
Remove debug console.log() lines
- Full commit hash
8978a9ad7903b42533d3bfd2e9a1e9f273026f10- Author
- Patrik Kernstock <[email protected]>
- Date
- 10 months ago
- Selected line
- 1033
},
},
FreddleSpl0it
about 3 years ago
fe4a418
[Web] fix rspamd table scan_time on sm devices
- Full commit hash
fe4a418af45fd7e82df7facfb9cdfb71efd17fb3- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1034
render: function (data) {
render: function (data) {
same change
fe4a418
[Web] fix rspamd table scan_time on sm devices
- Full commit hash
fe4a418af45fd7e82df7facfb9cdfb71efd17fb3- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1035
return data.value;
return data.value;
Tom Udding
over 3 years ago
136cc2e
Fix missing score and scan time Rspamd logs
- Full commit hash
136cc2e3fff2276074de7e51cd2e5a66f4659ef1- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1036
}
}
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1037
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1038
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1039
title: 'ID',
title: 'ID',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1040
data: 'message-id',
data: 'message-id',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1041
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1042
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1043
{
{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1044
title: 'Authenticated user',
title: 'Authenticated user',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1045
data: 'user',
data: 'user',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1046
defaultContent: ''
defaultContent: ''
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1047
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1048
]
]
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1049
});
});
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1050
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1051
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1052
hideTableExpandCollapseBtn('#tab-rspamd-history', '#rspamd_history');
hideTableExpandCollapseBtn('#tab-rspamd-history', '#rspamd_history');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1053
});
});
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1054
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1055
function process_table_data(data, table) {
function process_table_data(data, table) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1056
if (table == 'rspamd_history') {
if (table == 'rspamd_history') {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1057
$.each(data, function (i, item) {
$.each(data, function (i, item) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1058
if (item.rcpt_mime != "") {
if (item.rcpt_mime != "") {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1059
item.rcpt = escapeHtml(item.rcpt_mime.join(", "));
item.rcpt = escapeHtml(item.rcpt_mime.join(", "));
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1060
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1061
else {
else {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1062
item.rcpt = escapeHtml(item.rcpt_smtp.join(", "));
item.rcpt = escapeHtml(item.rcpt_smtp.join(", "));
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1063
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1064
item.symbols = Object.keys(item.symbols).sort(function (a, b) {
item.symbols = Object.keys(item.symbols).sort(function (a, b) {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1065
if (item.symbols[a].score === 0) return 1;
if (item.symbols[a].score === 0) return 1;
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1066
if (item.symbols[b].score === 0) return -1;
if (item.symbols[b].score === 0) return -1;
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1067
if (item.symbols[b].score < 0 && item.symbols[a].score < 0) {
if (item.symbols[b].score < 0 && item.symbols[a].score < 0) {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1068
return item.symbols[a].score - item.symbols[b].score;
return item.symbols[a].score - item.symbols[b].score;
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1069
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1070
if (item.symbols[b].score > 0 && item.symbols[a].score > 0) {
if (item.symbols[b].score > 0 && item.symbols[a].score > 0) {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1071
return item.symbols[b].score - item.symbols[a].score;
return item.symbols[b].score - item.symbols[a].score;
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1072
}
}
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1073
return item.symbols[b].score - item.symbols[a].score;
return item.symbols[b].score - item.symbols[a].score;
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1074
}).map(function(key) {
}).map(function(key) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1075
var sym = item.symbols[key];
var sym = item.symbols[key];
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1076
if (sym.score < 0) {
if (sym.score < 0) {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1077
sym.score_formatted = '(<span class="text-success"><b>' + sym.score + '</b></span>)';
sym.score_formatted = '(<span class="text-success"><b>' + sym.score + '</b></span>)';
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1078
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1079
else if (sym.score === 0) {
else if (sym.score === 0) {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1080
sym.score_formatted = '(<span><b>' + sym.score + '</b></span>)';
sym.score_formatted = '(<span><b>' + sym.score + '</b></span>)';
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1081
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1082
else {
else {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1083
sym.score_formatted = '(<span class="text-danger"><b>' + sym.score + '</b></span>)';
sym.score_formatted = '(<span class="text-danger"><b>' + sym.score + '</b></span>)';
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1084
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1085
var str = '<strong>' + key + '</strong> ' + sym.score_formatted;
var str = '<strong>' + key + '</strong> ' + sym.score_formatted;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1086
if (sym.options) {
if (sym.options) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1087
str += ' [' + escapeHtml(sym.options.join(", ")) + "]";
str += ' [' + escapeHtml(sym.options.join(", ")) + "]";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1088
}
}
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1089
return str;
return str;
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1090
}).join('<br>\n');
}).join('<br>\n');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1091
item.subject = escapeHtml(item.subject);
item.subject = escapeHtml(item.subject);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1092
var scan_time = item.time_real.toFixed(3);
var scan_time = item.time_real.toFixed(3);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1093
if (item.time_virtual) {
if (item.time_virtual) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1094
scan_time += ' / ' + item.time_virtual.toFixed(3);
scan_time += ' / ' + item.time_virtual.toFixed(3);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1095
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1096
item.scan_time = {
item.scan_time = {
Tom Udding
over 3 years ago
136cc2e
Fix missing score and scan time Rspamd logs
- Full commit hash
136cc2e3fff2276074de7e51cd2e5a66f4659ef1- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1097
"sortBy": item.time_real,
"sortBy": item.time_real,
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1098
"value": scan_time
"value": scan_time
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1099
};
};
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1100
if (item.action === 'clean' || item.action === 'no action') {
if (item.action === 'clean' || item.action === 'no action') {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1101
item.action = "<div class='badge fs-6 bg-success'>" + item.action + "</div>";
item.action = "<div class='badge fs-6 bg-success'>" + item.action + "</div>";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1102
} else if (item.action === 'rewrite subject' || item.action === 'add header' || item.action === 'probable spam') {
} else if (item.action === 'rewrite subject' || item.action === 'add header' || item.action === 'probable spam') {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1103
item.action = "<div class='badge fs-6 bg-warning'>" + item.action + "</div>";
item.action = "<div class='badge fs-6 bg-warning'>" + item.action + "</div>";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1104
} else if (item.action === 'spam' || item.action === 'reject') {
} else if (item.action === 'spam' || item.action === 'reject') {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1105
item.action = "<div class='badge fs-6 bg-danger'>" + item.action + "</div>";
item.action = "<div class='badge fs-6 bg-danger'>" + item.action + "</div>";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1106
} else {
} else {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1107
item.action = "<div class='badge fs-6 bg-info'>" + item.action + "</div>";
item.action = "<div class='badge fs-6 bg-info'>" + item.action + "</div>";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1108
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1109
var score_content;
var score_content;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1110
if (item.score < item.required_score) {
if (item.score < item.required_score) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1111
score_content = "[ <span class='text-success'>" + item.score.toFixed(2) + " / " + item.required_score + "</span> ]";
score_content = "[ <span class='text-success'>" + item.score.toFixed(2) + " / " + item.required_score + "</span> ]";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1112
} else {
} else {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1113
score_content = "[ <span class='text-danger'>" + item.score.toFixed(2) + " / " + item.required_score + "</span> ]";
score_content = "[ <span class='text-danger'>" + item.score.toFixed(2) + " / " + item.required_score + "</span> ]";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1114
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1115
item.score = {
item.score = {
Tom Udding
over 3 years ago
136cc2e
Fix missing score and scan time Rspamd logs
- Full commit hash
136cc2e3fff2276074de7e51cd2e5a66f4659ef1- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1116
"sortBy": item.score,
"sortBy": item.score,
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1117
"value": score_content
"value": score_content
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1118
};
};
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1119
if (item.user == null) {
if (item.user == null) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1120
item.user = "none";
item.user = "none";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1121
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1122
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1123
} else if (table == 'autodiscover_log') {
} else if (table == 'autodiscover_log') {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1124
$.each(data, function (i, item) {
$.each(data, function (i, item) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1125
if (item.ua == null) {
if (item.ua == null) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1126
item.ua = 'unknown';
item.ua = 'unknown';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1127
} else {
} else {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1128
item.ua = escapeHtml(item.ua);
item.ua = escapeHtml(item.ua);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1129
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1130
item.ua = '<span style="font-size:small">' + item.ua + '</span>';
item.ua = '<span style="font-size:small">' + item.ua + '</span>';
FreddleSpl0it
4 months ago
95bf46c
escape HTML in autodiscover logs
- Full commit hash
95bf46c1e4f3efe304857074bfa7d324d9f85fe9- Author
- FreddleSpl0it <[email protected]>
- Date
- 4 months ago
- Selected line
- 1131
if (item.user == null) {
if (item.user == null) {
same change
95bf46c
escape HTML in autodiscover logs
- Full commit hash
95bf46c1e4f3efe304857074bfa7d324d9f85fe9- Author
- FreddleSpl0it <[email protected]>
- Date
- 4 months ago
- Selected line
- 1132
item.user = 'unknown';
item.user = 'unknown';
same change
95bf46c
escape HTML in autodiscover logs
- Full commit hash
95bf46c1e4f3efe304857074bfa7d324d9f85fe9- Author
- FreddleSpl0it <[email protected]>
- Date
- 4 months ago
- Selected line
- 1133
} else {
} else {
same change
95bf46c
escape HTML in autodiscover logs
- Full commit hash
95bf46c1e4f3efe304857074bfa7d324d9f85fe9- Author
- FreddleSpl0it <[email protected]>
- Date
- 4 months ago
- Selected line
- 1134
item.user = escapeHtml(item.user);
item.user = escapeHtml(item.user);
same change
95bf46c
escape HTML in autodiscover logs
- Full commit hash
95bf46c1e4f3efe304857074bfa7d324d9f85fe9- Author
- FreddleSpl0it <[email protected]>
- Date
- 4 months ago
- Selected line
- 1135
}
}
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1136
if (item.service == "activesync") {
if (item.service == "activesync") {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1137
item.service = '<span class="badge fs-6 bg-info">ActiveSync</span>';
item.service = '<span class="badge fs-6 bg-info">ActiveSync</span>';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1138
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1139
else if (item.service == "imap") {
else if (item.service == "imap") {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1140
item.service = '<span class="badge fs-6 bg-success">IMAP, SMTP, Cal-/CardDAV</span>';
item.service = '<span class="badge fs-6 bg-success">IMAP, SMTP, Cal-/CardDAV</span>';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1141
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1142
else {
else {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1143
item.service = '<span class="badge fs-6 bg-danger">' + escapeHtml(item.service) + '</span>';
item.service = '<span class="badge fs-6 bg-danger">' + escapeHtml(item.service) + '</span>';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1144
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1145
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1146
} else if (table == 'watchdog') {
} else if (table == 'watchdog') {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1147
$.each(data, function (i, item) {
$.each(data, function (i, item) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1148
if (item.message == null) {
if (item.message == null) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1149
item.message = 'Health level: ' + item.lvl + '% (' + item.hpnow + '/' + item.hptotal + ')';
item.message = 'Health level: ' + item.lvl + '% (' + item.hpnow + '/' + item.hptotal + ')';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1150
if (item.hpdiff < 0) {
if (item.hpdiff < 0) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1151
item.trend = '<span class="badge fs-6 bg-danger"><i class="bi bi-caret-down-fill"></i> ' + item.hpdiff + '</span>';
item.trend = '<span class="badge fs-6 bg-danger"><i class="bi bi-caret-down-fill"></i> ' + item.hpdiff + '</span>';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1152
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1153
else if (item.hpdiff == 0) {
else if (item.hpdiff == 0) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1154
item.trend = '<span class="badge fs-6 bg-info"><i class="bi bi-caret-right-fill"></i> ' + item.hpdiff + '</span>';
item.trend = '<span class="badge fs-6 bg-info"><i class="bi bi-caret-right-fill"></i> ' + item.hpdiff + '</span>';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1155
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1156
else {
else {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1157
item.trend = '<span class="badge fs-6 bg-success"><i class="bi bi-caret-up-fill"></i> ' + item.hpdiff + '</span>';
item.trend = '<span class="badge fs-6 bg-success"><i class="bi bi-caret-up-fill"></i> ' + item.hpdiff + '</span>';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1158
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1159
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1160
else {
else {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1161
item.trend = '';
item.trend = '';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1162
item.service = '';
item.service = '';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1163
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1164
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1165
} else if (table == 'mailcow_ui') {
} else if (table == 'mailcow_ui') {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1166
$.each(data, function (i, item) {
$.each(data, function (i, item) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1167
if (item === null) { return true; }
if (item === null) { return true; }
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1168
item.user = escapeHtml(item.user);
item.user = escapeHtml(item.user);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1169
item.call = escapeHtml(item.call);
item.call = escapeHtml(item.call);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1170
item.task = '<code>' + item.task + '</code>';
item.task = '<code>' + item.task + '</code>';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1171
item.type = '<span class="badge fs-6 bg-' + item.type + '">' + item.type + '</span>';
item.type = '<span class="badge fs-6 bg-' + item.type + '">' + item.type + '</span>';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1172
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1173
} else if (table == 'sasl_log_table') {
} else if (table == 'sasl_log_table') {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1174
$.each(data, function (i, item) {
$.each(data, function (i, item) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1175
if (item === null) { return true; }
if (item === null) { return true; }
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1176
item.username = escapeHtml(item.username);
item.username = escapeHtml(item.username);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1177
item.service = '<div class="badge fs-6 bg-secondary">' + item.service.toUpperCase() + '</div>';
item.service = '<div class="badge fs-6 bg-secondary">' + item.service.toUpperCase() + '</div>';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1178
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1179
} else if (table == 'general_syslog') {
} else if (table == 'general_syslog') {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1180
$.each(data, function (i, item) {
$.each(data, function (i, item) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1181
if (item === null) { return true; }
if (item === null) { return true; }
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1182
if (item.message.match("^base64,")) {
if (item.message.match("^base64,")) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1183
try {
try {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1184
item.message = atob(item.message.slice(7)).replace(/\\n/g, "<br />");
item.message = atob(item.message.slice(7)).replace(/\\n/g, "<br />");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1185
} catch(e) {
} catch(e) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1186
item.message = item.message.slice(7);
item.message = item.message.slice(7);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1187
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1188
} else {
} else {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1189
item.message = escapeHtml(item.message);
item.message = escapeHtml(item.message);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1190
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1191
item.call = escapeHtml(item.call);
item.call = escapeHtml(item.call);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1192
var danger_class = ["emerg", "alert", "crit", "err"];
var danger_class = ["emerg", "alert", "crit", "err"];
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1193
var warning_class = ["warning", "warn"];
var warning_class = ["warning", "warn"];
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1194
var info_class = ["notice", "info", "debug"];
var info_class = ["notice", "info", "debug"];
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1195
if (jQuery.inArray(item.priority, danger_class) !== -1) {
if (jQuery.inArray(item.priority, danger_class) !== -1) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1196
item.priority = '<span class="badge fs-6 bg-danger">' + item.priority + '</span>';
item.priority = '<span class="badge fs-6 bg-danger">' + item.priority + '</span>';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1197
} else if (jQuery.inArray(item.priority, warning_class) !== -1) {
} else if (jQuery.inArray(item.priority, warning_class) !== -1) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1198
item.priority = '<span class="badge fs-6 bg-warning">' + item.priority + '</span>';
item.priority = '<span class="badge fs-6 bg-warning">' + item.priority + '</span>';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1199
} else if (jQuery.inArray(item.priority, info_class) !== -1) {
} else if (jQuery.inArray(item.priority, info_class) !== -1) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1200
item.priority = '<span class="badge fs-6 bg-info">' + item.priority + '</span>';
item.priority = '<span class="badge fs-6 bg-info">' + item.priority + '</span>';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1201
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1202
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1203
} else if (table == 'apilog') {
} else if (table == 'apilog') {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1204
$.each(data, function (i, item) {
$.each(data, function (i, item) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1205
if (item === null) { return true; }
if (item === null) { return true; }
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1206
if (item.method == 'GET') {
if (item.method == 'GET') {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1207
item.method = '<span class="badge fs-6 bg-success">' + item.method + '</span>';
item.method = '<span class="badge fs-6 bg-success">' + item.method + '</span>';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1208
} else if (item.method == 'POST') {
} else if (item.method == 'POST') {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1209
item.method = '<span class="badge fs-6 bg-warning">' + item.method + '</span>';
item.method = '<span class="badge fs-6 bg-warning">' + item.method + '</span>';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1210
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1211
item.data = escapeHtml(item.data);
item.data = escapeHtml(item.data);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1212
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1213
} else if (table == 'rllog') {
} else if (table == 'rllog') {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1214
$.each(data, function (i, item) {
$.each(data, function (i, item) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1215
if (item.user == null) {
if (item.user == null) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1216
item.user = "none";
item.user = "none";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1217
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1218
if (item.rl_hash == null) {
if (item.rl_hash == null) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1219
item.rl_hash = "err";
item.rl_hash = "err";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1220
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1221
item.indicator = '<span style="border-right:6px solid #' + intToRGB(hashCode(item.rl_hash)) + ';padding-left:5px;"> </span>';
item.indicator = '<span style="border-right:6px solid #' + intToRGB(hashCode(item.rl_hash)) + ';padding-left:5px;"> </span>';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1222
if (item.rl_hash != 'err') {
if (item.rl_hash != 'err') {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1223
item.action = '<a href="#" data-action="delete_selected" data-id="single-hash" data-api-url="delete/rlhash" data-item="' + encodeURI(item.rl_hash) + '" class="btn btn-xs btn-danger"><i class="bi bi-trash"></i> ' + lang.reset_limit + '</a>';
item.action = '<a href="#" data-action="delete_selected" data-id="single-hash" data-api-url="delete/rlhash" data-item="' + encodeURI(item.rl_hash) + '" class="btn btn-xs btn-danger"><i class="bi bi-trash"></i> ' + lang.reset_limit + '</a>';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1224
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1225
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1226
}
}
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1227
return data;
return data;
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1228
};
};
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1229
$('.add_log_lines').on('click', function (e) {
$('.add_log_lines').on('click', function (e) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1230
e.preventDefault();
e.preventDefault();
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1231
var log_table= $(this).data("table");
var log_table= $(this).data("table");
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1232
var new_nrows = $(this).data("nrows");
var new_nrows = $(this).data("nrows");
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1233
var post_process = $(this).data("post-process");
var post_process = $(this).data("post-process");
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1234
var log_url = $(this).data("log-url");
var log_url = $(this).data("log-url");
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1235
if (log_table === undefined || new_nrows === undefined || post_process === undefined || log_url === undefined) {
if (log_table === undefined || new_nrows === undefined || post_process === undefined || log_url === undefined) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1236
console.log("no data-table or data-nrows or log_url or data-post-process attr found");
console.log("no data-table or data-nrows or log_url or data-post-process attr found");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1237
return;
return;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1238
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1239
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1240
if (table = $('#' + log_table).DataTable()) {
if (table = $('#' + log_table).DataTable()) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1241
var heading = $('#' + log_table).closest('.card').find('.card-header');
var heading = $('#' + log_table).closest('.card').find('.card-header');
FreddleSpl0it
about 3 years ago
cb1a11e
[Web] fix rspamd-history
- Full commit hash
cb1a11e5514abfe2637f304b0a21f30e1a0afee7- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1242
var load_rows = (table.data().count() + 1) + '-' + (table.data().count() + new_nrows)
var load_rows = (table.data().count() + 1) + '-' + (table.data().count() + new_nrows)
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1243
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1244
$.get('/api/v1/get/logs/' + log_url + '/' + load_rows).then(function(data){
$.get('/api/v1/get/logs/' + log_url + '/' + load_rows).then(function(data){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1245
if (data.length === undefined) { mailcow_alert_box(lang.no_new_rows, "info"); return; }
if (data.length === undefined) { mailcow_alert_box(lang.no_new_rows, "info"); return; }
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1246
var rows = process_table_data(data, post_process);
var rows = process_table_data(data, post_process);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1247
var rows_now = (table.page.len() + data.length);
var rows_now = (table.page.len() + data.length);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1248
$(heading).children('.table-lines').text(rows_now)
$(heading).children('.table-lines').text(rows_now)
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1249
mailcow_alert_box(data.length + lang.additional_rows, "success");
mailcow_alert_box(data.length + lang.additional_rows, "success");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1250
table.rows.add(rows).draw();
table.rows.add(rows).draw();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1251
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1252
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1253
})
})
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1254
function hideTableExpandCollapseBtn(tab, table){
function hideTableExpandCollapseBtn(tab, table){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1255
if ($(table).hasClass('collapsed'))
if ($(table).hasClass('collapsed'))
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1256
$(tab).find(".table_collapse_option").show();
$(tab).find(".table_collapse_option").show();
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1257
else
else
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1258
$(tab).find(".table_collapse_option").hide();
$(tab).find(".table_collapse_option").hide();
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1259
}
}
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1260
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1261
// detect element visibility changes
// detect element visibility changes
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1262
function onVisible(element, callback) {
function onVisible(element, callback) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1263
$(document).ready(function() {
$(document).ready(function() {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1264
element_object = document.querySelector(element);
element_object = document.querySelector(element);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1265
if (element_object === null) return;
if (element_object === null) return;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1266
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1267
new IntersectionObserver((entries, observer) => {
new IntersectionObserver((entries, observer) => {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1268
entries.forEach(entry => {
entries.forEach(entry => {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1269
if(entry.intersectionRatio > 0) {
if(entry.intersectionRatio > 0) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1270
callback(element_object);
callback(element_object);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1271
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1272
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1273
}).observe(element_object);
}).observe(element_object);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1274
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1275
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1276
// Draw Table if tab is active
// Draw Table if tab is active
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1277
onVisible("[id^=postfix_log]", () => draw_postfix_logs());
onVisible("[id^=postfix_log]", () => draw_postfix_logs());
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1278
onVisible("[id^=dovecot_log]", () => draw_dovecot_logs());
onVisible("[id^=dovecot_log]", () => draw_dovecot_logs());
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1279
onVisible("[id^=sogo_log]", () => draw_sogo_logs());
onVisible("[id^=sogo_log]", () => draw_sogo_logs());
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1280
onVisible("[id^=watchdog_log]", () => draw_watchdog_logs());
onVisible("[id^=watchdog_log]", () => draw_watchdog_logs());
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1281
onVisible("[id^=autodiscover_log]", () => draw_autodiscover_logs());
onVisible("[id^=autodiscover_log]", () => draw_autodiscover_logs());
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1282
onVisible("[id^=acme_log]", () => draw_acme_logs());
onVisible("[id^=acme_log]", () => draw_acme_logs());
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1283
onVisible("[id^=api_log]", () => draw_api_logs());
onVisible("[id^=api_log]", () => draw_api_logs());
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1284
onVisible("[id^=rl_log]", () => draw_rl_logs());
onVisible("[id^=rl_log]", () => draw_rl_logs());
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1285
onVisible("[id^=ui_logs]", () => draw_ui_logs());
onVisible("[id^=ui_logs]", () => draw_ui_logs());
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1286
onVisible("[id^=sasl_logs]", () => draw_sasl_logs());
onVisible("[id^=sasl_logs]", () => draw_sasl_logs());
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1287
onVisible("[id^=netfilter_log]", () => draw_netfilter_logs());
onVisible("[id^=netfilter_log]", () => draw_netfilter_logs());
FreddleSpl0it
about 3 years ago
b176585
[Web] add crontasks logs
- Full commit hash
b176585a9c621f69f9244dc31f041456a7c07e05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1288
onVisible("[id^=cron_log]", () => draw_cron_logs());
onVisible("[id^=cron_log]", () => draw_cron_logs());
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1289
onVisible("[id^=rspamd_history]", () => draw_rspamd_history());
onVisible("[id^=rspamd_history]", () => draw_rspamd_history());
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1290
onVisible("[id^=rspamd_donut]", () => rspamd_pie_graph());
onVisible("[id^=rspamd_donut]", () => rspamd_pie_graph());
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1291
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1292
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1293
// start polling host stats if tab is active
// start polling host stats if tab is active
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1294
onVisible("[id^=tab-containers]", () => update_stats());
onVisible("[id^=tab-containers]", () => update_stats());
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1295
// start polling container stats if collapse is active
// start polling container stats if collapse is active
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1296
var containerElements = document.querySelectorAll(".container-details-collapse");
var containerElements = document.querySelectorAll(".container-details-collapse");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1297
for (let i = 0; i < containerElements.length; i++){
for (let i = 0; i < containerElements.length; i++){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1298
new IntersectionObserver((entries, observer) => {
new IntersectionObserver((entries, observer) => {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1299
entries.forEach(entry => {
entries.forEach(entry => {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1300
if(entry.intersectionRatio > 0) {
if(entry.intersectionRatio > 0) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1301
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1302
if (!containerElements[i].classList.contains("show")){
if (!containerElements[i].classList.contains("show")){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1303
var container = containerElements[i].id.replace("Collapse", "");
var container = containerElements[i].id.replace("Collapse", "");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1304
var container_id = containerElements[i].getAttribute("data-id");
var container_id = containerElements[i].getAttribute("data-id");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1305
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1306
// check if chart exists or needs to be created
// check if chart exists or needs to be created
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1307
if (!Chart.getChart(container + "_DiskIOChart"))
if (!Chart.getChart(container + "_DiskIOChart"))
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1308
createReadWriteChart(container + "_DiskIOChart", "Read", "Write");
createReadWriteChart(container + "_DiskIOChart", "Read", "Write");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1309
if (!Chart.getChart(container + "_NetIOChart"))
if (!Chart.getChart(container + "_NetIOChart"))
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1310
createReadWriteChart(container + "_NetIOChart", "Recv", "Sent");
createReadWriteChart(container + "_NetIOChart", "Recv", "Sent");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1311
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1312
// add container to polling list
// add container to polling list
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1313
containersToUpdate[container] = {
containersToUpdate[container] = {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1314
id: container_id,
id: container_id,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1315
state: "idle"
state: "idle"
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1316
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1317
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1318
// stop polling if collapse is closed
// stop polling if collapse is closed
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1319
containerElements[i].addEventListener('hidden.bs.collapse', function () {
containerElements[i].addEventListener('hidden.bs.collapse', function () {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1320
var diskIOCtx = Chart.getChart(container + "_DiskIOChart");
var diskIOCtx = Chart.getChart(container + "_DiskIOChart");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1321
var netIOCtx = Chart.getChart(container + "_NetIOChart");
var netIOCtx = Chart.getChart(container + "_NetIOChart");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1322
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1323
diskIOCtx.data.datasets[0].data = [];
diskIOCtx.data.datasets[0].data = [];
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1324
diskIOCtx.data.datasets[1].data = [];
diskIOCtx.data.datasets[1].data = [];
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1325
diskIOCtx.data.labels = [];
diskIOCtx.data.labels = [];
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1326
netIOCtx.data.datasets[0].data = [];
netIOCtx.data.datasets[0].data = [];
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1327
netIOCtx.data.datasets[1].data = [];
netIOCtx.data.datasets[1].data = [];
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1328
netIOCtx.data.labels = [];
netIOCtx.data.labels = [];
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1329
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1330
diskIOCtx.update();
diskIOCtx.update();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1331
netIOCtx.update();
netIOCtx.update();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1332
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1333
delete containersToUpdate[container];
delete containersToUpdate[container];
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1334
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1335
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1336
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1337
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1338
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1339
}).observe(containerElements[i]);
}).observe(containerElements[i]);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1340
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1341
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1342
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1343
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1344
// update system stats - every 5 seconds if system & container tab is active
// update system stats - every 5 seconds if system & container tab is active
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1345
function update_stats(timeout=5){
function update_stats(timeout=5){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1346
if (!$('#tab-containers').hasClass('active')) {
if (!$('#tab-containers').hasClass('active')) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1347
// tab not active - dont fetch stats - run again in n seconds
// tab not active - dont fetch stats - run again in n seconds
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1348
return;
return;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1349
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1350
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1351
window.fetch("/api/v1/get/status/host", {method:'GET',cache:'no-cache'}).then(function(response) {
window.fetch("/api/v1/get/status/host", {method:'GET',cache:'no-cache'}).then(function(response) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1352
return response.json();
return response.json();
FreddleSpl0it
10 months ago
df4d3bb
[Web] Fix dashboard host stats
- Full commit hash
df4d3bb6e0ed5fb81e9053487e1ff12d5205b0e6- Author
- FreddleSpl0it <[email protected]>
- Date
- 10 months ago
- Selected line
- 1353
}).then(function(data) {
}).then(function(data) {
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1354
if (data){
if (data){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1355
// display table data
// display table data
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1356
$("#host_date").text(data.system_time);
$("#host_date").text(data.system_time);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1357
$("#host_uptime").text(formatUptime(data.uptime));
$("#host_uptime").text(formatUptime(data.uptime));
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1358
$("#host_cpu_cores").text(data.cpu.cores);
$("#host_cpu_cores").text(data.cpu.cores);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1359
$("#host_cpu_usage").text(parseInt(data.cpu.usage).toString() + "%");
$("#host_cpu_usage").text(parseInt(data.cpu.usage).toString() + "%");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1360
$("#host_memory_total").text((data.memory.total / (1024 ** 3)).toFixed(2).toString() + "GB");
$("#host_memory_total").text((data.memory.total / (1024 ** 3)).toFixed(2).toString() + "GB");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1361
$("#host_memory_usage").text(parseInt(data.memory.usage).toString() + "%");
$("#host_memory_usage").text(parseInt(data.memory.usage).toString() + "%");
DerLinkman
about 2 years ago
fc7ea7a
web: remove WIP notice for ARM64 from ui
- Full commit hash
fc7ea7a24722fb38700f19331b23c51be0cfbf5a- Author
- DerLinkman <[email protected]>
- Date
- about 2 years ago
- Selected line
- 1362
$("#host_architecture").html(data.architecture);
$("#host_architecture").html(data.architecture);
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1363
// update cpu and mem chart
// update cpu and mem chart
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1364
var cpu_chart = Chart.getChart("host_cpu_chart");
var cpu_chart = Chart.getChart("host_cpu_chart");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1365
var mem_chart = Chart.getChart("host_mem_chart");
var mem_chart = Chart.getChart("host_mem_chart");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1366
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1367
cpu_chart.data.labels.push(data.system_time.split(" ")[1]);
cpu_chart.data.labels.push(data.system_time.split(" ")[1]);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1368
if (cpu_chart.data.labels.length > 30) cpu_chart.data.labels.shift();
if (cpu_chart.data.labels.length > 30) cpu_chart.data.labels.shift();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1369
mem_chart.data.labels.push(data.system_time.split(" ")[1]);
mem_chart.data.labels.push(data.system_time.split(" ")[1]);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1370
if (mem_chart.data.labels.length > 30) mem_chart.data.labels.shift();
if (mem_chart.data.labels.length > 30) mem_chart.data.labels.shift();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1371
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1372
cpu_chart.data.datasets[0].data.push(data.cpu.usage);
cpu_chart.data.datasets[0].data.push(data.cpu.usage);
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1373
if (cpu_chart.data.datasets[0].data.length > 30) cpu_chart.data.datasets[0].data.shift();
if (cpu_chart.data.datasets[0].data.length > 30) cpu_chart.data.datasets[0].data.shift();
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1374
mem_chart.data.datasets[0].data.push(data.memory.usage);
mem_chart.data.datasets[0].data.push(data.memory.usage);
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1375
if (mem_chart.data.datasets[0].data.length > 30) mem_chart.data.datasets[0].data.shift();
if (mem_chart.data.datasets[0].data.length > 30) mem_chart.data.datasets[0].data.shift();
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1376
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1377
cpu_chart.update();
cpu_chart.update();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1378
mem_chart.update();
mem_chart.update();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1379
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1380
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1381
// run again in n seconds
// run again in n seconds
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1382
setTimeout(update_stats, timeout * 1000);
setTimeout(update_stats, timeout * 1000);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1383
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1384
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1385
// update specific container stats - every n (default 5s) seconds
// update specific container stats - every n (default 5s) seconds
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1386
function update_container_stats(timeout=5){
function update_container_stats(timeout=5){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1387
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1388
if ($('#tab-containers').hasClass('active')) {
if ($('#tab-containers').hasClass('active')) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1389
for (let container in containersToUpdate){
for (let container in containersToUpdate){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1390
container_id = containersToUpdate[container].id;
container_id = containersToUpdate[container].id;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1391
// check if container update stats is already running
// check if container update stats is already running
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1392
if (containersToUpdate[container].state == "running")
if (containersToUpdate[container].state == "running")
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1393
continue;
continue;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1394
containersToUpdate[container].state = "running";
containersToUpdate[container].state = "running";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1395
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1396
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1397
window.fetch("/api/v1/get/status/container/" + container_id, {method:'GET',cache:'no-cache'}).then(function(response) {
window.fetch("/api/v1/get/status/container/" + container_id, {method:'GET',cache:'no-cache'}).then(function(response) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1398
return response.json();
return response.json();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1399
}).then(function(data) {
}).then(function(data) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1400
var diskIOCtx = Chart.getChart(container + "_DiskIOChart");
var diskIOCtx = Chart.getChart(container + "_DiskIOChart");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1401
var netIOCtx = Chart.getChart(container + "_NetIOChart");
var netIOCtx = Chart.getChart(container + "_NetIOChart");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1402
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1403
prev_stats = null;
prev_stats = null;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1404
if (data.length >= 2){
if (data.length >= 2){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1405
prev_stats = data[data.length -2];
prev_stats = data[data.length -2];
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1406
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1407
// hide spinners if we collected enough data
// hide spinners if we collected enough data
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1408
$('#' + container + "_DiskIOChart").removeClass('d-none');
$('#' + container + "_DiskIOChart").removeClass('d-none');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1409
$('#' + container + "_DiskIOChart").prev().addClass('d-none');
$('#' + container + "_DiskIOChart").prev().addClass('d-none');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1410
$('#' + container + "_NetIOChart").removeClass('d-none');
$('#' + container + "_NetIOChart").removeClass('d-none');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1411
$('#' + container + "_NetIOChart").prev().addClass('d-none');
$('#' + container + "_NetIOChart").prev().addClass('d-none');
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1412
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1413
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1414
data = data[data.length -1];
data = data[data.length -1];
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1415
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1416
if (prev_stats != null){
if (prev_stats != null){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1417
// calc time diff
// calc time diff
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1418
var time_diff = (new Date(data.read) - new Date(prev_stats.read)) / 1000;
var time_diff = (new Date(data.read) - new Date(prev_stats.read)) / 1000;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1419
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1420
// calc disk io b/s
// calc disk io b/s
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1421
if ('io_service_bytes_recursive' in prev_stats.blkio_stats && prev_stats.blkio_stats.io_service_bytes_recursive !== null){
if ('io_service_bytes_recursive' in prev_stats.blkio_stats && prev_stats.blkio_stats.io_service_bytes_recursive !== null){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1422
var prev_read_bytes = 0;
var prev_read_bytes = 0;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1423
var prev_write_bytes = 0;
var prev_write_bytes = 0;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1424
for (var i = 0; i < prev_stats.blkio_stats.io_service_bytes_recursive.length; i++){
for (var i = 0; i < prev_stats.blkio_stats.io_service_bytes_recursive.length; i++){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1425
if (prev_stats.blkio_stats.io_service_bytes_recursive[i].op == "read")
if (prev_stats.blkio_stats.io_service_bytes_recursive[i].op == "read")
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1426
prev_read_bytes = prev_stats.blkio_stats.io_service_bytes_recursive[i].value;
prev_read_bytes = prev_stats.blkio_stats.io_service_bytes_recursive[i].value;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1427
else if (prev_stats.blkio_stats.io_service_bytes_recursive[i].op == "write")
else if (prev_stats.blkio_stats.io_service_bytes_recursive[i].op == "write")
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1428
prev_write_bytes = prev_stats.blkio_stats.io_service_bytes_recursive[i].value;
prev_write_bytes = prev_stats.blkio_stats.io_service_bytes_recursive[i].value;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1429
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1430
var read_bytes = 0;
var read_bytes = 0;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1431
var write_bytes = 0;
var write_bytes = 0;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1432
for (var i = 0; i < data.blkio_stats.io_service_bytes_recursive.length; i++){
for (var i = 0; i < data.blkio_stats.io_service_bytes_recursive.length; i++){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1433
if (data.blkio_stats.io_service_bytes_recursive[i].op == "read")
if (data.blkio_stats.io_service_bytes_recursive[i].op == "read")
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1434
read_bytes = data.blkio_stats.io_service_bytes_recursive[i].value;
read_bytes = data.blkio_stats.io_service_bytes_recursive[i].value;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1435
else if (data.blkio_stats.io_service_bytes_recursive[i].op == "write")
else if (data.blkio_stats.io_service_bytes_recursive[i].op == "write")
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1436
write_bytes = data.blkio_stats.io_service_bytes_recursive[i].value;
write_bytes = data.blkio_stats.io_service_bytes_recursive[i].value;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1437
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1438
var diff_bytes_read = (read_bytes - prev_read_bytes) / time_diff;
var diff_bytes_read = (read_bytes - prev_read_bytes) / time_diff;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1439
var diff_bytes_write = (write_bytes - prev_write_bytes) / time_diff;
var diff_bytes_write = (write_bytes - prev_write_bytes) / time_diff;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1440
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1441
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1442
// calc net io b/s
// calc net io b/s
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1443
if ('networks' in prev_stats){
if ('networks' in prev_stats){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1444
var prev_recv_bytes = 0;
var prev_recv_bytes = 0;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1445
var prev_sent_bytes = 0;
var prev_sent_bytes = 0;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1446
for (var key in prev_stats.networks){
for (var key in prev_stats.networks){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1447
prev_recv_bytes += prev_stats.networks[key].rx_bytes;
prev_recv_bytes += prev_stats.networks[key].rx_bytes;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1448
prev_sent_bytes += prev_stats.networks[key].tx_bytes;
prev_sent_bytes += prev_stats.networks[key].tx_bytes;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1449
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1450
var recv_bytes = 0;
var recv_bytes = 0;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1451
var sent_bytes = 0;
var sent_bytes = 0;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1452
for (var key in data.networks){
for (var key in data.networks){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1453
recv_bytes += data.networks[key].rx_bytes;
recv_bytes += data.networks[key].rx_bytes;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1454
sent_bytes += data.networks[key].tx_bytes;
sent_bytes += data.networks[key].tx_bytes;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1455
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1456
var diff_bytes_recv = (recv_bytes - prev_recv_bytes) / time_diff;
var diff_bytes_recv = (recv_bytes - prev_recv_bytes) / time_diff;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1457
var diff_bytes_sent = (sent_bytes - prev_sent_bytes) / time_diff;
var diff_bytes_sent = (sent_bytes - prev_sent_bytes) / time_diff;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1458
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1459
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1460
addReadWriteChart(diskIOCtx, diff_bytes_read, diff_bytes_write, "");
addReadWriteChart(diskIOCtx, diff_bytes_read, diff_bytes_write, "");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1461
addReadWriteChart(netIOCtx, diff_bytes_recv, diff_bytes_sent, "");
addReadWriteChart(netIOCtx, diff_bytes_recv, diff_bytes_sent, "");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1462
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1463
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1464
// run again in n seconds
// run again in n seconds
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1465
containersToUpdate[container].state = "idle";
containersToUpdate[container].state = "idle";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1466
}).catch(err => {
}).catch(err => {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1467
console.log(err);
console.log(err);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1468
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1469
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1470
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1471
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1472
// run again in n seconds
// run again in n seconds
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1473
setTimeout(update_container_stats, timeout * 1000);
setTimeout(update_container_stats, timeout * 1000);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1474
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1475
// format hosts uptime seconds to readable string
// format hosts uptime seconds to readable string
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1476
function formatUptime(seconds){
function formatUptime(seconds){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1477
seconds = Number(seconds);
seconds = Number(seconds);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1478
var d = Math.floor(seconds / (3600*24));
var d = Math.floor(seconds / (3600*24));
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1479
var h = Math.floor(seconds % (3600*24) / 3600);
var h = Math.floor(seconds % (3600*24) / 3600);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1480
var m = Math.floor(seconds % 3600 / 60);
var m = Math.floor(seconds % 3600 / 60);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1481
var s = Math.floor(seconds % 60);
var s = Math.floor(seconds % 60);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1482
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1483
var dFormat = d > 0 ? d + "D " : "";
var dFormat = d > 0 ? d + "D " : "";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1484
var hFormat = h > 0 ? h + "H " : "";
var hFormat = h > 0 ? h + "H " : "";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1485
var mFormat = m > 0 ? m + "M " : "";
var mFormat = m > 0 ? m + "M " : "";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1486
var sFormat = s > 0 ? s + "S" : "";
var sFormat = s > 0 ? s + "S" : "";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1487
return dFormat + hFormat + mFormat + sFormat;
return dFormat + hFormat + mFormat + sFormat;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1488
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1489
// format bytes to readable string
// format bytes to readable string
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1490
function formatBytes(bytes){
function formatBytes(bytes){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1491
// b
// b
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1492
if (bytes < 1000) return bytes.toFixed(2).toString()+' B/s';
if (bytes < 1000) return bytes.toFixed(2).toString()+' B/s';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1493
// b to kb
// b to kb
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1494
bytes = bytes / 1024;
bytes = bytes / 1024;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1495
if (bytes < 1000) return bytes.toFixed(2).toString()+' KB/s';
if (bytes < 1000) return bytes.toFixed(2).toString()+' KB/s';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1496
// kb to mb
// kb to mb
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1497
bytes = bytes / 1024;
bytes = bytes / 1024;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1498
if (bytes < 1000) return bytes.toFixed(2).toString()+' MB/s';
if (bytes < 1000) return bytes.toFixed(2).toString()+' MB/s';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1499
// final mb to gb
// final mb to gb
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1500
return (bytes / 1024).toFixed(2).toString()+' GB/s';
return (bytes / 1024).toFixed(2).toString()+' GB/s';
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1501
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1502
// create read write line chart
// create read write line chart
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1503
function createReadWriteChart(chart_id, read_lable, write_lable){
function createReadWriteChart(chart_id, read_lable, write_lable){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1504
var ctx = document.getElementById(chart_id);
var ctx = document.getElementById(chart_id);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1505
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1506
var dataNet = {
var dataNet = {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1507
labels: [],
labels: [],
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1508
datasets: [{
datasets: [{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1509
label: read_lable,
label: read_lable,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1510
backgroundColor: "rgba(41, 187, 239, 0.3)",
backgroundColor: "rgba(41, 187, 239, 0.3)",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1511
borderColor: "rgba(41, 187, 239, 0.6)",
borderColor: "rgba(41, 187, 239, 0.6)",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1512
pointRadius: 1,
pointRadius: 1,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1513
pointHitRadius: 6,
pointHitRadius: 6,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1514
borderWidth: 2,
borderWidth: 2,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1515
fill: true,
fill: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1516
tension: 0.2,
tension: 0.2,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1517
data: []
data: []
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1518
}, {
}, {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1519
label: write_lable,
label: write_lable,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1520
backgroundColor: "rgba(239, 60, 41, 0.3)",
backgroundColor: "rgba(239, 60, 41, 0.3)",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1521
borderColor: "rgba(239, 60, 41, 0.6)",
borderColor: "rgba(239, 60, 41, 0.6)",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1522
pointRadius: 1,
pointRadius: 1,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1523
pointHitRadius: 6,
pointHitRadius: 6,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1524
borderWidth: 2,
borderWidth: 2,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1525
fill: true,
fill: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1526
tension: 0.2,
tension: 0.2,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1527
data: []
data: []
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1528
}]
}]
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1529
};
};
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1530
var optionsNet = {
var optionsNet = {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1531
interaction: {
interaction: {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1532
mode: 'index'
mode: 'index'
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1533
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1534
scales: {
scales: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1535
yAxis: {
yAxis: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1536
min: 0,
min: 0,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1537
grid: {
grid: {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1538
display: false
display: false
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1539
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1540
ticks: {
ticks: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1541
callback: function(i, index, ticks) {
callback: function(i, index, ticks) {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1542
return formatBytes(i);
return formatBytes(i);
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1543
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1544
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1545
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1546
xAxis: {
xAxis: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1547
grid: {
grid: {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1548
display: false
display: false
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1549
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1550
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1551
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1552
};
};
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1553
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1554
return new Chart(ctx, {
return new Chart(ctx, {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1555
type: 'line',
type: 'line',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1556
data: dataNet,
data: dataNet,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1557
options: optionsNet
options: optionsNet
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1558
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1559
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1560
// add to read write line chart
// add to read write line chart
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1561
function addReadWriteChart(chart_context, read_point, write_point, time, limit = 30){
function addReadWriteChart(chart_context, read_point, write_point, time, limit = 30){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1562
// push time label for x-axis
// push time label for x-axis
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1563
chart_context.data.labels.push(time);
chart_context.data.labels.push(time);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1564
if (chart_context.data.labels.length > limit) chart_context.data.labels.shift();
if (chart_context.data.labels.length > limit) chart_context.data.labels.shift();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1565
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1566
// push datapoints
// push datapoints
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1567
chart_context.data.datasets[0].data.push(read_point);
chart_context.data.datasets[0].data.push(read_point);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1568
chart_context.data.datasets[1].data.push(write_point);
chart_context.data.datasets[1].data.push(write_point);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1569
// shift data if more than 20 entires exists
// shift data if more than 20 entires exists
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1570
if (chart_context.data.datasets[0].data.length > limit) chart_context.data.datasets[0].data.shift();
if (chart_context.data.datasets[0].data.length > limit) chart_context.data.datasets[0].data.shift();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1571
if (chart_context.data.datasets[1].data.length > limit) chart_context.data.datasets[1].data.shift();
if (chart_context.data.datasets[1].data.length > limit) chart_context.data.datasets[1].data.shift();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1572
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1573
chart_context.update();
chart_context.update();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1574
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1575
// create host cpu and mem chart
// create host cpu and mem chart
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1576
function createHostCpuAndMemChart(){
function createHostCpuAndMemChart(){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1577
var cpu_ctx = document.getElementById("host_cpu_chart");
var cpu_ctx = document.getElementById("host_cpu_chart");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1578
var mem_ctx = document.getElementById("host_mem_chart");
var mem_ctx = document.getElementById("host_mem_chart");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1579
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1580
var dataCpu = {
var dataCpu = {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1581
labels: [],
labels: [],
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1582
datasets: [{
datasets: [{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1583
label: "CPU %",
label: "CPU %",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1584
backgroundColor: "rgba(41, 187, 239, 0.3)",
backgroundColor: "rgba(41, 187, 239, 0.3)",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1585
borderColor: "rgba(41, 187, 239, 0.6)",
borderColor: "rgba(41, 187, 239, 0.6)",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1586
pointRadius: 1,
pointRadius: 1,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1587
pointHitRadius: 6,
pointHitRadius: 6,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1588
borderWidth: 2,
borderWidth: 2,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1589
fill: true,
fill: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1590
tension: 0.2,
tension: 0.2,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1591
data: []
data: []
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1592
}]
}]
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1593
};
};
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1594
var optionsCpu = {
var optionsCpu = {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1595
interaction: {
interaction: {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1596
mode: 'index'
mode: 'index'
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1597
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1598
scales: {
scales: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1599
yAxis: {
yAxis: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1600
min: 0,
min: 0,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1601
grid: {
grid: {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1602
display: false
display: false
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1603
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1604
ticks: {
ticks: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1605
callback: function(i, index, ticks) {
callback: function(i, index, ticks) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1606
return i.toFixed(0).toString() + "%";
return i.toFixed(0).toString() + "%";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1607
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1608
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1609
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1610
xAxis: {
xAxis: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1611
grid: {
grid: {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1612
display: false
display: false
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1613
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1614
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1615
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1616
};
};
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1617
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1618
var dataMem = {
var dataMem = {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1619
labels: [],
labels: [],
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1620
datasets: [{
datasets: [{
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1621
label: "MEM %",
label: "MEM %",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1622
backgroundColor: "rgba(41, 187, 239, 0.3)",
backgroundColor: "rgba(41, 187, 239, 0.3)",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1623
borderColor: "rgba(41, 187, 239, 0.6)",
borderColor: "rgba(41, 187, 239, 0.6)",
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1624
pointRadius: 1,
pointRadius: 1,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1625
pointHitRadius: 6,
pointHitRadius: 6,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1626
borderWidth: 2,
borderWidth: 2,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1627
fill: true,
fill: true,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1628
tension: 0.2,
tension: 0.2,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1629
data: []
data: []
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1630
}]
}]
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1631
};
};
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1632
var optionsMem = {
var optionsMem = {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1633
interaction: {
interaction: {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1634
mode: 'index'
mode: 'index'
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1635
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1636
scales: {
scales: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1637
yAxis: {
yAxis: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1638
min: 0,
min: 0,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1639
grid: {
grid: {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1640
display: false
display: false
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1641
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1642
ticks: {
ticks: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1643
callback: function(i, index, ticks) {
callback: function(i, index, ticks) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1644
return i.toFixed(0).toString() + "%";
return i.toFixed(0).toString() + "%";
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1645
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1646
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1647
},
},
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1648
xAxis: {
xAxis: {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1649
grid: {
grid: {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1650
display: false
display: false
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1651
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1652
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1653
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1654
};
};
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1655
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1656
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1657
var net_io_chart = new Chart(cpu_ctx, {
var net_io_chart = new Chart(cpu_ctx, {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1658
type: 'line',
type: 'line',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1659
data: dataCpu,
data: dataCpu,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1660
options: optionsCpu
options: optionsCpu
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1661
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1662
var disk_io_chart = new Chart(mem_ctx, {
var disk_io_chart = new Chart(mem_ctx, {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1663
type: 'line',
type: 'line',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1664
data: dataMem,
data: dataMem,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1665
options: optionsMem
options: optionsMem
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1666
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1667
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1668
// check for mailcow updates
// check for mailcow updates
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1669
function check_update(current_version, github_repo_url){
function check_update(current_version, github_repo_url){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1670
if (!current_version || !github_repo_url) return false;
if (!current_version || !github_repo_url) return false;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1671
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1672
var github_account = github_repo_url.split("/")[3];
var github_account = github_repo_url.split("/")[3];
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1673
var github_repo_name = github_repo_url.split("/")[4];
var github_repo_name = github_repo_url.split("/")[4];
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1674
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1675
// get details about latest release
// get details about latest release
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1676
window.fetch("https://api.github.com/repos/"+github_account+"/"+github_repo_name+"/releases/latest", {method:'GET',cache:'no-cache'}).then(function(response) {
window.fetch("https://api.github.com/repos/"+github_account+"/"+github_repo_name+"/releases/latest", {method:'GET',cache:'no-cache'}).then(function(response) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1677
return response.json();
return response.json();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1678
}).then(function(latest_data) {
}).then(function(latest_data) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1679
// get details about current release
// get details about current release
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1680
window.fetch("https://api.github.com/repos/"+github_account+"/"+github_repo_name+"/releases/tags/"+current_version, {method:'GET',cache:'no-cache'}).then(function(response) {
window.fetch("https://api.github.com/repos/"+github_account+"/"+github_repo_name+"/releases/tags/"+current_version, {method:'GET',cache:'no-cache'}).then(function(response) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1681
return response.json();
return response.json();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1682
}).then(function(current_data) {
}).then(function(current_data) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1683
// compare releases
// compare releases
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1684
var date_current = new Date(current_data.created_at);
var date_current = new Date(current_data.created_at);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1685
var date_latest = new Date(latest_data.created_at);
var date_latest = new Date(latest_data.created_at);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1686
if (date_latest.getTime() <= date_current.getTime()){
if (date_latest.getTime() <= date_current.getTime()){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1687
// no update available
// no update available
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1688
$("#mailcow_update").removeClass("text-warning text-danger").addClass("text-success");
$("#mailcow_update").removeClass("text-warning text-danger").addClass("text-success");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1689
$("#mailcow_update").html("<b>" + lang_debug.no_update_available + "</b>");
$("#mailcow_update").html("<b>" + lang_debug.no_update_available + "</b>");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1690
} else {
} else {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1691
// update available
// update available
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1692
$("#mailcow_update").removeClass("text-danger text-success").addClass("text-warning");
$("#mailcow_update").removeClass("text-danger text-success").addClass("text-warning");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1693
$("#mailcow_update").html(lang_debug.update_available + ` <a href="#" id="mailcow_update_changelog">`+latest_data.tag_name+`</a>`);
$("#mailcow_update").html(lang_debug.update_available + ` <a href="#" id="mailcow_update_changelog">`+latest_data.tag_name+`</a>`);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1694
$("#mailcow_update_changelog").click(function(){
$("#mailcow_update_changelog").click(function(){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1695
if (mailcow_cc_role !== "admin" && mailcow_cc_role !== "domainadmin")
if (mailcow_cc_role !== "admin" && mailcow_cc_role !== "domainadmin")
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1696
return;
return;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1697
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1698
showVersionModal("New Release " + latest_data.tag_name, latest_data.tag_name);
showVersionModal("New Release " + latest_data.tag_name, latest_data.tag_name);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1699
})
})
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1700
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1701
}).catch(err => {
}).catch(err => {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1702
// err
// err
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1703
console.log(err);
console.log(err);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1704
$("#mailcow_update").removeClass("text-success text-warning").addClass("text-danger");
$("#mailcow_update").removeClass("text-success text-warning").addClass("text-danger");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1705
$("#mailcow_update").html("<b>"+ lang_debug.update_failed +"</b>");
$("#mailcow_update").html("<b>"+ lang_debug.update_failed +"</b>");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1706
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1707
}).catch(err => {
}).catch(err => {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1708
// err
// err
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1709
console.log(err);
console.log(err);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1710
$("#mailcow_update").removeClass("text-success text-warning").addClass("text-danger");
$("#mailcow_update").removeClass("text-success text-warning").addClass("text-danger");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1711
$("#mailcow_update").html("<b>"+ lang_debug.update_failed +"</b>");
$("#mailcow_update").html("<b>"+ lang_debug.update_failed +"</b>");
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1712
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1713
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1714
// show version changelog modal
// show version changelog modal
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1715
function showVersionModal(title, version){
function showVersionModal(title, version){
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1716
$.ajax({
$.ajax({
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1717
type: 'GET',
type: 'GET',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1718
url: 'https://api.github.com/repos/' + mailcow_info.project_owner + '/' + mailcow_info.project_repo + '/releases/tags/' + version,
url: 'https://api.github.com/repos/' + mailcow_info.project_owner + '/' + mailcow_info.project_repo + '/releases/tags/' + version,
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1719
dataType: 'json',
dataType: 'json',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1720
success: function (data) {
success: function (data) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1721
var md = window.markdownit();
var md = window.markdownit();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1722
var result = md.render(data.body);
var result = md.render(data.body);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1723
result = parseGithubMarkdownLinks(result);
result = parseGithubMarkdownLinks(result);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1724
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1725
$('#showVersionModal').find(".modal-title").html(title);
$('#showVersionModal').find(".modal-title").html(title);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1726
$('#showVersionModal').find(".modal-body").html(`
$('#showVersionModal').find(".modal-body").html(`
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1727
<h3>` + data.name + `</h3>
<h3>` + data.name + `</h3>
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1728
<span class="mt-4">` + result + `</span>
<span class="mt-4">` + result + `</span>
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1729
<span><b>Github Link:</b>
<span><b>Github Link:</b>
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1730
<a target="_blank" href="https://github.com/` + mailcow_info.project_owner + `/` + mailcow_info.project_repo + `/releases/tag/` + version + `">` + version + `</a>
<a target="_blank" href="https://github.com/` + mailcow_info.project_owner + `/` + mailcow_info.project_repo + `/releases/tag/` + version + `">` + version + `</a>
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1731
</span>
</span>
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1732
`);
`);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1733
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1734
new bootstrap.Modal(document.getElementById("showVersionModal"), {
new bootstrap.Modal(document.getElementById("showVersionModal"), {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1735
backdrop: 'static',
backdrop: 'static',
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1736
keyboard: false
keyboard: false
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1737
}).show();
}).show();
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1738
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1739
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1740
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1741
function parseGithubMarkdownLinks(inputText) {
function parseGithubMarkdownLinks(inputText) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1742
var replacedText, replacePattern1;
var replacedText, replacePattern1;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1743
FreddleSpl0it
over 2 years ago
a28ba5b
[Web] fix broken github links in changelog
- Full commit hash
a28ba5bebbf57880c03f5ea1658305144791dec8- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 1744
replacePattern1 = /(\b(https?):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])(?![^<]*>)/gim;
replacePattern1 = /(\b(https?):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])(?![^<]*>)/gim;
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1745
replacedText = inputText.replace(replacePattern1, (matched, index, original, input_string) => {
replacedText = inputText.replace(replacePattern1, (matched, index, original, input_string) => {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1746
if (matched.includes('github.com')){
if (matched.includes('github.com')){
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1747
// return short link if it's github link
// return short link if it's github link
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1748
last_uri_path = matched.split('/');
last_uri_path = matched.split('/');
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1749
last_uri_path = last_uri_path[last_uri_path.length - 1];
last_uri_path = last_uri_path[last_uri_path.length - 1];
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1750
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1751
// adjust Full Changelog link to match last git version and new git version, if link is a compare link
// adjust Full Changelog link to match last git version and new git version, if link is a compare link
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1752
if (matched.includes('/compare/') && mailcow_info.last_version_tag !== ''){
if (matched.includes('/compare/') && mailcow_info.last_version_tag !== ''){
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1753
matched = matched.replace(last_uri_path, mailcow_info.last_version_tag + '...' + mailcow_info.version_tag);
matched = matched.replace(last_uri_path, mailcow_info.last_version_tag + '...' + mailcow_info.version_tag);
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1754
last_uri_path = mailcow_info.last_version_tag + '...' + mailcow_info.version_tag;
last_uri_path = mailcow_info.last_version_tag + '...' + mailcow_info.version_tag;
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1755
}
}
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1756
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1757
return '<a href="' + matched + '" target="_blank">' + last_uri_path + '</a><br>';
return '<a href="' + matched + '" target="_blank">' + last_uri_path + '</a><br>';
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1758
};
};
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1759
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1760
// if it's not a github link, return complete link
// if it's not a github link, return complete link
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1761
return '<a href="' + matched + '" target="_blank">' + matched + '</a>';
return '<a href="' + matched + '" target="_blank">' + matched + '</a>';
Tom Udding
over 3 years ago
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1762
});
});
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1763
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1764
return replacedText;
return replacedText;
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1765
}
}
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1766
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1767
function convertTimestampToLocalFormat(timestamp) {
function convertTimestampToLocalFormat(timestamp) {
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1768
var date = new Date(timestamp ? timestamp * 1000 : 0);
var date = new Date(timestamp ? timestamp * 1000 : 0);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1769
return date.toLocaleDateString(LOCALE, DATETIME_FORMAT);
return date.toLocaleDateString(LOCALE, DATETIME_FORMAT);
same change
240b2c6
Fix timestamps not sorting in datatables
- Full commit hash
240b2c63f6d2b544782ad0c661cb589c2231fff2- Author
- Tom Udding <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1770
}
}