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/user.js
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
user.js
on main
Author
Date
Commit
Line
Code
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
- 1
// Base64 functions
// Base64 functions
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
- 2
var Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encode:function(r){var t,e,o,a,h,n,c,d="",C=0;for(r=Base64._utf8_encode(r);C<r.length;)a=(t=r.charCodeAt(C++))>>2,h=(3&t)<<4|(e=r.charCodeAt(C++))>>4,n=(15&e)<<2|(o=r.charCodeAt(C++))>>6,c=63&o,isNaN(e)?n=c=64:isNaN(o)&&(c=64),d=d+this._keyStr.charAt(a)+this._keyStr.charAt(h)+this._keyStr.charAt(n)+this._keyStr.charAt(c);return d},decode:function(r){var t,e,o,a,h,n,c="",d=0;for(r=r.replace(/[^A-Za-z0-9\+\/\=]/g,"");d<r.length;)t=this._keyStr.indexOf(r.charAt(d++))<<2|(a=this._keyStr.indexOf(r.charAt(d++)))>>4,e=(15&a)<<4|(h=this._keyStr.indexOf(r.charAt(d++)))>>2,o=(3&h)<<6|(n=this._keyStr.indexOf(r.charAt(d++))),c+=String.fromCharCode(t),64!=h&&(c+=String.fromCharCode(e)),64!=n&&(c+=String.fromCharCode(o));return c=Base64._utf8_decode(c)},_utf8_encode:function(r){r=r.replace(/\r\n/g,"\n");for(var t="",e=0;e<r.length;e++){var o=r.charCodeAt(e);o<128?t+=String.fromCharCode(o):o>127&&o<2048?(t+=String.fromCharCode(o>>6|192),t+=String.fromCharCode(63&o|128)):(t+=String.fromCharCode(o>>12|224),t+=String.fromCharCode(o>>6&63|128),t+=String.fromCharCode(63&o|128))}return t},_utf8_decode:function(r){for(var t="",e=0,o=c1=c2=0;e<r.length;)(o=r.charCodeAt(e))<128?(t+=String.fromCharCode(o),e++):o>191&&o<224?(c2=r.charCodeAt(e+1),t+=String.fromCharCode((31&o)<<6|63&c2),e+=2):(c2=r.charCodeAt(e+1),c3=r.charCodeAt(e+2),t+=String.fromCharCode((15&o)<<12|(63&c2)<<6|63&c3),e+=3);return t}};
var Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encode:function(r){var t,e,o,a,h,n,c,d="",C=0;for(r=Base64._utf8_encode(r);C<r.length;)a=(t=r.charCodeAt(C++))>>2,h=(3&t)<<4|(e=r.charCodeAt(C++))>>4,n=(15&e)<<2|(o=r.charCodeAt(C++))>>6,c=63&o,isNaN(e)?n=c=64:isNaN(o)&&(c=64),d=d+this._keyStr.charAt(a)+this._keyStr.charAt(h)+this._keyStr.charAt(n)+this._keyStr.charAt(c);return d},decode:function(r){var t,e,o,a,h,n,c="",d=0;for(r=r.replace(/[^A-Za-z0-9\+\/\=]/g,"");d<r.length;)t=this._keyStr.indexOf(r.charAt(d++))<<2|(a=this._keyStr.indexOf(r.charAt(d++)))>>4,e=(15&a)<<4|(h=this._keyStr.indexOf(r.charAt(d++)))>>2,o=(3&h)<<6|(n=this._keyStr.indexOf(r.charAt(d++))),c+=String.fromCharCode(t),64!=h&&(c+=String.fromCharCode(e)),64!=n&&(c+=String.fromCharCode(o));return c=Base64._utf8_decode(c)},_utf8_encode:function(r){r=r.replace(/\r\n/g,"\n");for(var t="",e=0;e<r.length;e++){var o=r.charCodeAt(e);o<128?t+=String.fromCharCode(o):o>127&&o<2048?(t+=String.fromCharCode(o>>6|192),t+=String.fromCharCode(63&o|128)):(t+=String.fromCharCode(o>>12|224),t+=String.fromCharCode(o>>6&63|128),t+=String.fromCharCode(63&o|128))}return t},_utf8_decode:function(r){for(var t="",e=0,o=c1=c2=0;e<r.length;)(o=r.charCodeAt(e))<128?(t+=String.fromCharCode(o),e++):o>191&&o<224?(c2=r.charCodeAt(e+1),t+=String.fromCharCode((31&o)<<6|63&c2),e+=2):(c2=r.charCodeAt(e+1),c3=r.charCodeAt(e+2),t+=String.fromCharCode((15&o)<<12|(63&c2)<<6|63&c3),e+=3);return t}};
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
- 3
$(document).ready(function() {
$(document).ready(function() {
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
- 4
// Spam score slider
// Spam score slider
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
- 5
var spam_slider = $('#spam_score')[0];
var spam_slider = $('#spam_score')[0];
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
- 6
if (typeof spam_slider !== 'undefined') {
if (typeof spam_slider !== 'undefined') {
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
- 7
noUiSlider.create(spam_slider, {
noUiSlider.create(spam_slider, {
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
- 8
start: user_spam_score,
start: user_spam_score,
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
- 9
connect: [true, true, true],
connect: [true, true, true],
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
- 10
range: {
range: {
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
- 11
'min': [0], //stepsize is 50.000
'min': [0], //stepsize is 50.000
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
- 12
'50%': [10],
'50%': [10],
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
- 13
'70%': [20, 5],
'70%': [20, 5],
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
- 14
'80%': [50, 10],
'80%': [50, 10],
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
- 15
'90%': [100, 100],
'90%': [100, 100],
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
- 16
'95%': [1000, 1000],
'95%': [1000, 1000],
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
- 17
'max': [5000]
'max': [5000]
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
- 18
},
},
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
- 19
});
});
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
- 20
var connect = spam_slider.querySelectorAll('.noUi-connect');
var connect = spam_slider.querySelectorAll('.noUi-connect');
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
- 21
var classes = ['c-1-color', 'c-2-color', 'c-3-color'];
var classes = ['c-1-color', 'c-2-color', 'c-3-color'];
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
- 22
for (var i = 0; i < connect.length; i++) {
for (var i = 0; i < connect.length; i++) {
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
- 23
connect[i].classList.add(classes[i]);
connect[i].classList.add(classes[i]);
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
- 24
}
}
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
- 25
spam_slider.noUiSlider.on('update', function (values, handle) {
spam_slider.noUiSlider.on('update', function (values, handle) {
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
- 26
$('.spam-ham-score').text('< ' + Math.round(values[0] * 10) / 10);
$('.spam-ham-score').text('< ' + Math.round(values[0] * 10) / 10);
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
- 27
$('.spam-spam-score').text(Math.round(values[0] * 10) / 10 + ' - ' + Math.round(values[1] * 10) / 10);
$('.spam-spam-score').text(Math.round(values[0] * 10) / 10 + ' - ' + Math.round(values[1] * 10) / 10);
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
- 28
$('.spam-reject-score').text('> ' + Math.round(values[1] * 10) / 10);
$('.spam-reject-score').text('> ' + Math.round(values[1] * 10) / 10);
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
- 29
$('#spam_score_value').val((Math.round(values[0] * 10) / 10) + ',' + (Math.round(values[1] * 10) / 10));
$('#spam_score_value').val((Math.round(values[0] * 10) / 10) + ',' + (Math.round(values[1] * 10) / 10));
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
- 30
});
});
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
- 31
}
}
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
- 32
// syncjobLogModal
// syncjobLogModal
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
- 33
$('#syncjobLogModal').on('show.bs.modal', function(e) {
$('#syncjobLogModal').on('show.bs.modal', function(e) {
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
- 34
var syncjob_id = $(e.relatedTarget).data('syncjob-id');
var syncjob_id = $(e.relatedTarget).data('syncjob-id');
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
- 35
$.ajax({
$.ajax({
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
- 36
url: '/inc/ajax/syncjob_logs.php',
url: '/inc/ajax/syncjob_logs.php',
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
- 37
data: { id: syncjob_id },
data: { id: syncjob_id },
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
- 38
dataType: 'text',
dataType: 'text',
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
- 39
success: function(data){
success: function(data){
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
- 40
$(e.currentTarget).find('#logText').text(data);
$(e.currentTarget).find('#logText').text(data);
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
- 41
},
},
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
- 42
error: function(xhr, status, error) {
error: function(xhr, status, error) {
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
- 43
$(e.currentTarget).find('#logText').text(xhr.responseText);
$(e.currentTarget).find('#logText').text(xhr.responseText);
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
- 44
}
}
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
- 45
});
});
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
- 46
});
});
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
- 47
$(".arrow-toggle").on('click', function(e) { e.preventDefault(); $(this).find('.arrow').toggleClass("animation"); });
$(".arrow-toggle").on('click', function(e) { e.preventDefault(); $(this).find('.arrow').toggleClass("animation"); });
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
- 48
$("#pushover_delete").click(function() { return confirm(lang.delete_ays); });
$("#pushover_delete").click(function() { return confirm(lang.delete_ays); });
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
- 49
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
- 50
});
});
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
- 51
jQuery(function($){
jQuery(function($){
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
- 52
// http://stackoverflow.com/questions/24816/escaping-html-strings-with-jquery
// http://stackoverflow.com/questions/24816/escaping-html-strings-with-jquery
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
- 53
var entityMap = {
var entityMap = {
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
- 54
'&': '&',
'&': '&',
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
- 55
'<': '<',
'<': '<',
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
- 56
'>': '>',
'>': '>',
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
- 57
'"': '"',
'"': '"',
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
- 58
"'": ''',
"'": ''',
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
- 59
'/': '/',
'/': '/',
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
- 60
'`': '`',
'`': '`',
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
- 61
'=': '='
'=': '='
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
- 62
};
};
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
- 63
function escapeHtml(string) {
function escapeHtml(string) {
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
- 64
return String(string).replace(/[&<>"'`=\/]/g, function (s) {
return String(string).replace(/[&<>"'`=\/]/g, function (s) {
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
- 65
return entityMap[s];
return entityMap[s];
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
- 66
});
});
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
- 67
}
}
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
- 68
// http://stackoverflow.com/questions/46155/validate-email-address-in-javascript
// http://stackoverflow.com/questions/46155/validate-email-address-in-javascript
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
- 69
function validateEmail(email) {
function validateEmail(email) {
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
- 70
var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
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
- 71
return re.test(email);
return re.test(email);
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
- 72
}
}
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
- 73
function unix_time_format(tm) {
function unix_time_format(tm) {
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
- 74
var date = new Date(tm ? tm * 1000 : 0);
var date = new Date(tm ? tm * 1000 : 0);
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
- 75
return date.toLocaleDateString(undefined, {year: "numeric", month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit", second: "2-digit"});
return date.toLocaleDateString(undefined, {year: "numeric", month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit", second: "2-digit"});
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
- 76
}
}
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
- 77
acl_data = JSON.parse(acl);
acl_data = JSON.parse(acl);
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
- 78
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
- 79
$('.clear-last-logins').on('click', function () {if (confirm(lang.delete_ays)) {last_logins('reset');}})
$('.clear-last-logins').on('click', function () {if (confirm(lang.delete_ays)) {last_logins('reset');}})
FreddleSpl0it
over 3 years ago
56a9f1a
[Web] organize user landing
- Full commit hash
56a9f1a4115194c63d37ee8c451c7e432a3291c5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 80
$(".login-history").on('click', function(e) {e.preventDefault(); last_logins('get', $(this).data('days'));$(this).parent().find('li a').removeClass('active');$(this).children(':first-child').addClass('active')});
$(".login-history").on('click', function(e) {e.preventDefault(); last_logins('get', $(this).data('days'));$(this).parent().find('li a').removeClass('active');$(this).children(':first-child').addClass('active')});
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
- 81
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
- 82
function last_logins(action, days = 7) {
function last_logins(action, days = 7) {
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
- 83
if (action == 'get') {
if (action == 'get') {
FreddleSpl0it
over 3 years ago
56a9f1a
[Web] organize user landing
- Full commit hash
56a9f1a4115194c63d37ee8c451c7e432a3291c5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 84
$('#spinner-last-login').removeClass('d-none');
$('#spinner-last-login').removeClass('d-none');
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
- 85
$.ajax({
$.ajax({
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
- 86
dataType: 'json',
dataType: 'json',
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
- 87
url: '/api/v1/get/last-login/' + encodeURIComponent(mailcow_cc_username) + '/' + days,
url: '/api/v1/get/last-login/' + encodeURIComponent(mailcow_cc_username) + '/' + days,
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
- 88
jsonp: false,
jsonp: false,
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
- 89
error: function () {
error: function () {
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
- 90
console.log('error reading last logins');
console.log('error reading last logins');
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
- 91
},
},
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
- 92
success: function (data) {
success: function (data) {
FreddleSpl0it
over 3 years ago
56a9f1a
[Web] organize user landing
- Full commit hash
56a9f1a4115194c63d37ee8c451c7e432a3291c5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 93
$('.last-sasl-login').html('');
$('.last-sasl-login').html('');
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
- 94
if (data.sasl) {
if (data.sasl) {
FreddleSpl0it
over 3 years ago
56a9f1a
[Web] organize user landing
- Full commit hash
56a9f1a4115194c63d37ee8c451c7e432a3291c5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 95
$('.last-sasl-login').append('<ul class="list-group">');
$('.last-sasl-login').append('<ul class="list-group">');
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
- 96
$.each(data.sasl, function (i, item) {
$.each(data.sasl, function (i, item) {
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
- 97
var datetime = new Date(item.datetime.replace(/-/g, "/"));
var datetime = new Date(item.datetime.replace(/-/g, "/"));
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
- 98
var local_datetime = datetime.toLocaleDateString(undefined, {year: "numeric", month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit", second: "2-digit"});
var local_datetime = datetime.toLocaleDateString(undefined, {year: "numeric", month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit", second: "2-digit"});
FreddleSpl0it
over 3 years ago
56a9f1a
[Web] organize user landing
- Full commit hash
56a9f1a4115194c63d37ee8c451c7e432a3291c5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 99
var service = '<div class="badge bg-secondary">' + item.service.toUpperCase() + '</div>';
var service = '<div class="badge bg-secondary">' + item.service.toUpperCase() + '</div>';
Thomas Mills
10 months ago
3dcacc4
Change icon to filled key
- Full commit hash
3dcacc41873eb5676614aeb2a071a2e403025c7d- Author
- Thomas Mills <[email protected]>
- Date
- 10 months ago
- Selected line
- 100
var app_password = item.app_password ? ' <a href="/edit/app-passwd/' + item.app_password + '"><i class="bi bi-key-fill"></i><span class="ms-1">' + escapeHtml(item.app_password_name || "App") + '</span></a>' : '';
var app_password = item.app_password ? ' <a href="/edit/app-passwd/' + item.app_password + '"><i class="bi bi-key-fill"></i><span class="ms-1">' + escapeHtml(item.app_password_name || "App") + '</span></a>' : '';
FreddleSpl0it
4 months ago
84e3c32
escape HTML in last logins
- Full commit hash
84e3c32f13d397e47ea0d443ce1621742f78f401- Author
- FreddleSpl0it <[email protected]>
- Date
- 4 months ago
- Selected line
- 101
var real_rip = item.real_rip.startsWith("Web") ? escapeHtml(item.real_rip) : '<a href="https://bgp.tools/prefix/' + escapeHtml(item.real_rip) + '" target="_blank">' + escapeHtml(item.real_rip) + "</a>";
var real_rip = item.real_rip.startsWith("Web") ? escapeHtml(item.real_rip) : '<a href="https://bgp.tools/prefix/' + escapeHtml(item.real_rip) + '" target="_blank">' + escapeHtml(item.real_rip) + "</a>";
same change
84e3c32
escape HTML in last logins
- Full commit hash
84e3c32f13d397e47ea0d443ce1621742f78f401- Author
- FreddleSpl0it <[email protected]>
- Date
- 4 months ago
- Selected line
- 102
var ip_location = item.location ? ' <span class="flag-icon flag-icon-' + escapeHtml(item.location.toLowerCase()) + '"></span>' : '';
var ip_location = item.location ? ' <span class="flag-icon flag-icon-' + escapeHtml(item.location.toLowerCase()) + '"></span>' : '';
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
- 103
var ip_data = real_rip + ip_location + app_password;
var ip_data = real_rip + ip_location + app_password;
FreddleSpl0it
over 3 years ago
56a9f1a
[Web] organize user landing
- Full commit hash
56a9f1a4115194c63d37ee8c451c7e432a3291c5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 104
same change
56a9f1a
[Web] organize user landing
- Full commit hash
56a9f1a4115194c63d37ee8c451c7e432a3291c5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 105
$(".last-sasl-login").append(`
$(".last-sasl-login").append(`
same change
56a9f1a
[Web] organize user landing
- Full commit hash
56a9f1a4115194c63d37ee8c451c7e432a3291c5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 106
<li class="list-group-item d-flex justify-content-between align-items-start">
<li class="list-group-item d-flex justify-content-between align-items-start">
same change
56a9f1a
[Web] organize user landing
- Full commit hash
56a9f1a4115194c63d37ee8c451c7e432a3291c5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 107
<div class="ms-2 me-auto d-flex flex-column">
<div class="ms-2 me-auto d-flex flex-column">
Thomas Mills
10 months ago
c443a94
Move flag in front of IP
- Full commit hash
c443a9400a0ad3d3e10e54890b42e1e32e84e478- Author
- Thomas Mills <[email protected]>
- Date
- 10 months ago
- Selected line
- 108
<div class="fw-bold">` + ip_location + real_rip + `</div>
<div class="fw-bold">` + ip_location + real_rip + `</div>
Thomas Mills
10 months ago
e9414d1
Show app password for last logins
- Full commit hash
e9414d17e47d00a155382b1e200535068570f40c- Author
- Thomas Mills <[email protected]>
- Date
- 10 months ago
- Selected line
- 109
<small class="fst-italic mt-2">` + service + ` ` + local_datetime + `</small>` + app_password + `
<small class="fst-italic mt-2">` + service + ` ` + local_datetime + `</small>` + app_password + `
FreddleSpl0it
over 3 years ago
56a9f1a
[Web] organize user landing
- Full commit hash
56a9f1a4115194c63d37ee8c451c7e432a3291c5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 110
</div>
</div>
same change
56a9f1a
[Web] organize user landing
- Full commit hash
56a9f1a4115194c63d37ee8c451c7e432a3291c5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 111
</li>
</li>
same change
56a9f1a
[Web] organize user landing
- Full commit hash
56a9f1a4115194c63d37ee8c451c7e432a3291c5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 112
`);
`);
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
})
})
FreddleSpl0it
over 3 years ago
56a9f1a
[Web] organize user landing
- Full commit hash
56a9f1a4115194c63d37ee8c451c7e432a3291c5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 114
$('.last-sasl-login').append('</ul>');
$('.last-sasl-login').append('</ul>');
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
- 115
}
}
FreddleSpl0it
over 3 years ago
56a9f1a
[Web] organize user landing
- Full commit hash
56a9f1a4115194c63d37ee8c451c7e432a3291c5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 116
same change
56a9f1a
[Web] organize user landing
- Full commit hash
56a9f1a4115194c63d37ee8c451c7e432a3291c5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 117
$('#spinner-last-login').addClass('d-none');
$('#spinner-last-login').addClass('d-none');
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
- 118
}
}
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
- 119
})
})
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
- 120
} else if (action == 'reset') {
} else if (action == 'reset') {
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
- 121
$.ajax({
$.ajax({
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
- 122
dataType: 'json',
dataType: 'json',
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
- 123
url: '/api/v1/get/reset-last-login/' + encodeURIComponent(mailcow_cc_username),
url: '/api/v1/get/reset-last-login/' + encodeURIComponent(mailcow_cc_username),
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
- 124
jsonp: false,
jsonp: false,
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
- 125
error: function () {
error: function () {
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
- 126
console.log('cannot reset last logins');
console.log('cannot reset last logins');
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
- 127
},
},
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
- 128
success: function (data) {
success: function (data) {
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
- 129
last_logins('get');
last_logins('get');
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
- 130
}
}
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
- 131
})
})
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
- 132
}
}
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
- 133
}
}
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
- 134
Kristian Feldsam
almost 3 years ago
8e53230
[Web] checkbox styling
- Full commit hash
8e5323023a1ffd4f05477663f229b064a6c1e787- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 135
FreddleSpl0it
over 3 years ago
cf1cc24
[Web] Fix temporary email aliases sorting
- Full commit hash
cf1cc24e33ec0410f79be808c52507844ac4e18e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 136
function createSortableDate(td, cellData, date_string = false) {
function createSortableDate(td, cellData, date_string = false) {
same change
cf1cc24
[Web] Fix temporary email aliases sorting
- Full commit hash
cf1cc24e33ec0410f79be808c52507844ac4e18e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 137
if (date_string)
if (date_string)
same change
cf1cc24
[Web] Fix temporary email aliases sorting
- Full commit hash
cf1cc24e33ec0410f79be808c52507844ac4e18e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 138
var date = new Date(cellData);
var date = new Date(cellData);
same change
cf1cc24
[Web] Fix temporary email aliases sorting
- Full commit hash
cf1cc24e33ec0410f79be808c52507844ac4e18e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 139
else
else
same change
cf1cc24
[Web] Fix temporary email aliases sorting
- Full commit hash
cf1cc24e33ec0410f79be808c52507844ac4e18e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 140
var date = new Date(cellData ? cellData * 1000 : 0);
var date = new Date(cellData ? cellData * 1000 : 0);
same change
cf1cc24
[Web] Fix temporary email aliases sorting
- Full commit hash
cf1cc24e33ec0410f79be808c52507844ac4e18e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 141
same change
cf1cc24
[Web] Fix temporary email aliases sorting
- Full commit hash
cf1cc24e33ec0410f79be808c52507844ac4e18e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 142
var timestamp = date.getTime();
var timestamp = date.getTime();
same change
cf1cc24
[Web] Fix temporary email aliases sorting
- Full commit hash
cf1cc24e33ec0410f79be808c52507844ac4e18e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 143
$(td).attr({
$(td).attr({
same change
cf1cc24
[Web] Fix temporary email aliases sorting
- Full commit hash
cf1cc24e33ec0410f79be808c52507844ac4e18e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 144
"data-order": timestamp,
"data-order": timestamp,
same change
cf1cc24
[Web] Fix temporary email aliases sorting
- Full commit hash
cf1cc24e33ec0410f79be808c52507844ac4e18e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 145
"data-sort": timestamp
"data-sort": timestamp
same change
cf1cc24
[Web] Fix temporary email aliases sorting
- Full commit hash
cf1cc24e33ec0410f79be808c52507844ac4e18e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 146
});
});
same change
cf1cc24
[Web] Fix temporary email aliases sorting
- Full commit hash
cf1cc24e33ec0410f79be808c52507844ac4e18e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 147
$(td).html(date.toLocaleDateString(LOCALE, DATETIME_FORMAT));
$(td).html(date.toLocaleDateString(LOCALE, DATETIME_FORMAT));
same change
cf1cc24
[Web] Fix temporary email aliases sorting
- Full commit hash
cf1cc24e33ec0410f79be808c52507844ac4e18e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 148
}
}
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
- 149
function draw_tla_table() {
function draw_tla_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
- 150
// just recalc width if instance already exists
// just recalc width if instance already exists
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
- 151
if ($.fn.DataTable.isDataTable('#tla_table') ) {
if ($.fn.DataTable.isDataTable('#tla_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
- 152
$('#tla_table').DataTable().columns.adjust().responsive.recalc();
$('#tla_table').DataTable().columns.adjust().responsive.recalc();
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
- 153
return;
return;
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
- 154
}
}
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
- 155
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
- 156
$('#tla_table').DataTable({
$('#tla_table').DataTable({
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
- 157
responsive: true,
responsive: true,
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
- 158
processing: true,
processing: true,
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
- 159
serverSide: false,
serverSide: false,
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
- 160
stateSave: true,
stateSave: true,
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
- 161
pageLength: pagination_size,
pageLength: pagination_size,
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
- 162
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
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 163
"tr" +
"tr" +
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
- 164
"<'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
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 165
language: lang_datatables,
language: lang_datatables,
FreddleSpl0it
over 3 years ago
cf1cc24
[Web] Fix temporary email aliases sorting
- Full commit hash
cf1cc24e33ec0410f79be808c52507844ac4e18e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 166
order: [[4, 'desc']],
order: [[4, 'desc']],
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
- 167
ajax: {
ajax: {
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
- 168
type: "GET",
type: "GET",
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
- 169
url: "/api/v1/get/time_limited_aliases",
url: "/api/v1/get/time_limited_aliases",
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
- 170
dataSrc: function(data){
dataSrc: function(data){
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
- 171
$.each(data, function (i, item) {
$.each(data, function (i, item) {
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
- 172
if (acl_data.spam_alias === 1) {
if (acl_data.spam_alias === 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
- 173
item.action = '<div class="btn-group">' +
item.action = '<div class="btn-group">' +
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
- 174
'<a href="#" data-action="delete_selected" data-id="single-tla" data-api-url="delete/time_limited_alias" data-item="' + encodeURIComponent(item.address) + '" class="btn btn-xs btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
'<a href="#" data-action="delete_selected" data-id="single-tla" data-api-url="delete/time_limited_alias" data-item="' + encodeURIComponent(item.address) + '" class="btn btn-xs btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
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
- 175
'</div>';
'</div>';
Kristian Feldsam
almost 3 years ago
8e53230
[Web] checkbox styling
- Full commit hash
8e5323023a1ffd4f05477663f229b064a6c1e787- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 176
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="tla" name="multi_select" value="' + encodeURIComponent(item.address) + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="tla" name="multi_select" value="' + encodeURIComponent(item.address) + '" />';
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
- 177
item.address = escapeHtml(item.address);
item.address = escapeHtml(item.address);
Josh
8 months ago
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 178
item.validity = {
item.validity = {
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 179
value: item.validity,
value: item.validity,
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 180
permanent: item.permanent
permanent: item.permanent
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 181
};
};
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
- 182
}
}
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
- 183
else {
else {
Kristian Feldsam
almost 3 years ago
8e53230
[Web] checkbox styling
- Full commit hash
8e5323023a1ffd4f05477663f229b064a6c1e787- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 184
item.chkbox = '<input type="checkbox" class="form-check-input" disabled />';
item.chkbox = '<input type="checkbox" class="form-check-input" disabled />';
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
- 185
item.action = '<span>-</span>';
item.action = '<span>-</span>';
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
- 186
}
}
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
- 187
});
});
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
- 188
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
- 189
return data;
return data;
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
- 190
}
}
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
- 191
},
},
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
- 192
columns: [
columns: [
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
- 193
{
{
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
- 194
// placeholder, so checkbox will not block child row toggle
// placeholder, so checkbox will not block child row toggle
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
- 195
title: '',
title: '',
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
- 196
data: null,
data: null,
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
- 197
searchable: false,
searchable: false,
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
- 198
orderable: false,
orderable: false,
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
- 199
defaultContent: ''
defaultContent: ''
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
- 200
},
},
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
- 201
{
{
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
- 202
title: '',
title: '',
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
- 203
data: 'chkbox',
data: 'chkbox',
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
- 204
searchable: false,
searchable: false,
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
- 205
orderable: false,
orderable: false,
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
- 206
defaultContent: ''
defaultContent: ''
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
- 207
},
},
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
- 208
{
{
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
- 209
title: lang.alias,
title: lang.alias,
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
- 210
data: 'address',
data: 'address',
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
- 211
defaultContent: ''
defaultContent: ''
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
- 212
},
},
Filip Marek
almost 2 years ago
60ca250
add temporary email description
- Full commit hash
60ca25026dd194ae8f2681df761070fa9b1ce414- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 213
{
{
same change
60ca250
add temporary email description
- Full commit hash
60ca25026dd194ae8f2681df761070fa9b1ce414- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 214
title: lang.description,
title: lang.description,
same change
60ca250
add temporary email description
- Full commit hash
60ca25026dd194ae8f2681df761070fa9b1ce414- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 215
data: 'description',
data: 'description',
Filip Marek
almost 2 years ago
1a8e1a2
add escape html for description
- Full commit hash
1a8e1a2677b5bfe65206818c55ebbe29817dcb77- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 216
defaultContent: '',
defaultContent: '',
same change
1a8e1a2
add escape html for description
- Full commit hash
1a8e1a2677b5bfe65206818c55ebbe29817dcb77- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 217
render: function (data, type) {
render: function (data, type) {
same change
1a8e1a2
add escape html for description
- Full commit hash
1a8e1a2677b5bfe65206818c55ebbe29817dcb77- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 218
return escapeHtml(data);
return escapeHtml(data);
same change
1a8e1a2
add escape html for description
- Full commit hash
1a8e1a2677b5bfe65206818c55ebbe29817dcb77- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 219
}
}
Filip Marek
almost 2 years ago
60ca250
add temporary email description
- Full commit hash
60ca25026dd194ae8f2681df761070fa9b1ce414- Author
- Filip Marek <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 220
},
},
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
- 221
{
{
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
- 222
title: lang.alias_valid_until,
title: lang.alias_valid_until,
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
- 223
data: 'validity',
data: 'validity',
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
- 224
defaultContent: '',
defaultContent: '',
Josh
8 months ago
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 225
render: function (data, type) {
render: function (data, type) {
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 226
var date = new Date(data.value ? data.value * 1000 : 0);
var date = new Date(data.value ? data.value * 1000 : 0);
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 227
switch (type) {
switch (type) {
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 228
case "sort":
case "sort":
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 229
if (data.permanent) {
if (data.permanent) {
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 230
return 0;
return 0;
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 231
}
}
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 232
return date.getTime();
return date.getTime();
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 233
default:
default:
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 234
if (data.permanent) {
if (data.permanent) {
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 235
return lang.forever;
return lang.forever;
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 236
}
}
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 237
return date.toLocaleDateString(LOCALE, DATETIME_FORMAT);
return date.toLocaleDateString(LOCALE, DATETIME_FORMAT);
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 238
}
}
same change
0413d26
Allow making spam aliases permanent (#6888)
- Full commit hash
0413d268552b845916b94eda54bc3dba0ee12798- Author
- Josh <[email protected]>
- Date
- 8 months ago
- Selected line
- 239
},
},
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
- 240
},
},
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
- 241
{
{
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
- 242
title: lang.created_on,
title: lang.created_on,
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
- 243
data: 'created',
data: 'created',
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
- 244
defaultContent: '',
defaultContent: '',
FreddleSpl0it
over 3 years ago
cf1cc24
[Web] Fix temporary email aliases sorting
- Full commit hash
cf1cc24e33ec0410f79be808c52507844ac4e18e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 245
createdCell: function(td, cellData) {
createdCell: function(td, cellData) {
same change
cf1cc24
[Web] Fix temporary email aliases sorting
- Full commit hash
cf1cc24e33ec0410f79be808c52507844ac4e18e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 246
createSortableDate(td, cellData, true)
createSortableDate(td, cellData, 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
- 247
}
}
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
- 248
},
},
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
- 249
{
{
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
- 250
title: lang.action,
title: lang.action,
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
- 251
data: 'action',
data: 'action',
FreddleSpl0it
over 3 years ago
72e8180
[Web] datatable adjustment
- Full commit hash
72e8180c6be0f8ae9444e4ae10129ffa830c0c9b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 252
className: 'dt-sm-head-hidden dt-text-right',
className: 'dt-sm-head-hidden dt-text-right',
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
- 253
defaultContent: ''
defaultContent: ''
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
- 254
}
}
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
- 255
]
]
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
- 256
});
});
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
- 257
}
}
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
- 258
function draw_sync_job_table() {
function draw_sync_job_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
- 259
// just recalc width if instance already exists
// just recalc width if instance already exists
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
- 260
if ($.fn.DataTable.isDataTable('#sync_job_table') ) {
if ($.fn.DataTable.isDataTable('#sync_job_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
- 261
$('#sync_job_table').DataTable().columns.adjust().responsive.recalc();
$('#sync_job_table').DataTable().columns.adjust().responsive.recalc();
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
- 262
return;
return;
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
- 263
}
}
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
- 264
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
- 265
$('#sync_job_table').DataTable({
$('#sync_job_table').DataTable({
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
- 266
responsive: true,
responsive: true,
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
- 267
processing: true,
processing: true,
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
- 268
serverSide: false,
serverSide: false,
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
- 269
stateSave: true,
stateSave: true,
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
- 270
pageLength: pagination_size,
pageLength: pagination_size,
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
- 271
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
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 272
"tr" +
"tr" +
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
- 273
"<'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
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 274
language: lang_datatables,
language: lang_datatables,
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
- 275
ajax: {
ajax: {
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
- 276
type: "GET",
type: "GET",
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
- 277
url: '/api/v1/get/syncjobs/' + encodeURIComponent(mailcow_cc_username) + '/no_log',
url: '/api/v1/get/syncjobs/' + encodeURIComponent(mailcow_cc_username) + '/no_log',
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
- 278
dataSrc: function(data){
dataSrc: function(data){
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
- 279
$.each(data, function (i, item) {
$.each(data, function (i, item) {
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
- 280
item.user1 = escapeHtml(item.user1);
item.user1 = escapeHtml(item.user1);
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
- 281
item.log = '<a href="#syncjobLogModal" data-bs-toggle="modal" data-syncjob-id="' + item.id + '">' + lang.open_logs + '</a>'
item.log = '<a href="#syncjobLogModal" data-bs-toggle="modal" data-syncjob-id="' + item.id + '">' + lang.open_logs + '</a>'
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
- 282
if (!item.exclude > 0) {
if (!item.exclude > 0) {
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
- 283
item.exclude = '-';
item.exclude = '-';
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
- 284
} else {
} else {
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
- 285
item.exclude = '<code>' + escapeHtml(item.exclude) + '</code>';
item.exclude = '<code>' + escapeHtml(item.exclude) + '</code>';
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
- 286
}
}
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
- 287
item.server_w_port = escapeHtml(item.user1 + '@' + item.host1 + ':' + item.port1);
item.server_w_port = escapeHtml(item.user1 + '@' + item.host1 + ':' + item.port1);
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
- 288
if (acl_data.syncjobs === 1) {
if (acl_data.syncjobs === 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
- 289
item.action = '<div class="btn-group">' +
item.action = '<div class="btn-group">' +
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
- 290
'<a href="/edit/syncjob/' + item.id + '" class="btn btn-xs btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
'<a href="/edit/syncjob/' + item.id + '" class="btn btn-xs btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
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
- 291
'<a href="#" data-action="delete_selected" data-id="single-syncjob" data-api-url="delete/syncjob" data-item="' + item.id + '" class="btn btn-xs btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
'<a href="#" data-action="delete_selected" data-id="single-syncjob" data-api-url="delete/syncjob" data-item="' + item.id + '" class="btn btn-xs btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
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
- 292
'</div>';
'</div>';
Kristian Feldsam
almost 3 years ago
8e53230
[Web] checkbox styling
- Full commit hash
8e5323023a1ffd4f05477663f229b064a6c1e787- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 293
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="syncjob" name="multi_select" value="' + item.id + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="syncjob" name="multi_select" value="' + item.id + '" />';
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
- 294
}
}
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
- 295
else {
else {
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
- 296
item.action = '<span>-</span>';
item.action = '<span>-</span>';
Kristian Feldsam
almost 3 years ago
8e53230
[Web] checkbox styling
- Full commit hash
8e5323023a1ffd4f05477663f229b064a6c1e787- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 297
item.chkbox = '<input type="checkbox" class="form-check-input" disabled />';
item.chkbox = '<input type="checkbox" class="form-check-input" disabled />';
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
- 298
}
}
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
- 299
if (item.is_running == 1) {
if (item.is_running == 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
- 300
item.is_running = '<span id="active-script" class="badge fs-6 bg-success">' + lang.running + '</span>';
item.is_running = '<span id="active-script" class="badge fs-6 bg-success">' + lang.running + '</span>';
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
- 301
} else {
} else {
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
- 302
item.is_running = '<span id="inactive-script" class="badge fs-6 bg-warning">' + lang.waiting + '</span>';
item.is_running = '<span id="inactive-script" class="badge fs-6 bg-warning">' + lang.waiting + '</span>';
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
- 303
}
}
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
- 304
if (!item.last_run > 0) {
if (!item.last_run > 0) {
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
- 305
item.last_run = lang.waiting;
item.last_run = lang.waiting;
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
- 306
}
}
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
- 307
if (item.success == null) {
if (item.success == null) {
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
- 308
item.success = '-';
item.success = '-';
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
- 309
item.exit_status = '';
item.exit_status = '';
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
- 310
} else {
} else {
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
- 311
item.success = '<i class="text-' + (item.success == 1 ? 'success' : 'danger') + ' bi bi-' + (item.success == 1 ? 'check-lg' : 'x-lg') + '"></i>';
item.success = '<i class="text-' + (item.success == 1 ? 'success' : 'danger') + ' bi bi-' + (item.success == 1 ? 'check-lg' : 'x-lg') + '"></i>';
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
- 312
}
}
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
- 313
if (lang['syncjob_'+item.exit_status]) {
if (lang['syncjob_'+item.exit_status]) {
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
- 314
item.exit_status = lang['syncjob_'+item.exit_status];
item.exit_status = lang['syncjob_'+item.exit_status];
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
- 315
} else if (item.success != '-') {
} else if (item.success != '-') {
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
- 316
item.exit_status = lang.syncjob_check_log;
item.exit_status = lang.syncjob_check_log;
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
- 317
}
}
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
- 318
item.exit_status = item.success + ' ' + item.exit_status;
item.exit_status = item.success + ' ' + item.exit_status;
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
- 319
});
});
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
- 320
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
- 321
return data;
return data;
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
- 322
}
}
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
- 323
},
},
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
- 324
columns: [
columns: [
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
- 325
{
{
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
- 326
// placeholder, so checkbox will not block child row toggle
// placeholder, so checkbox will not block child row toggle
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
- 327
title: '',
title: '',
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
- 328
data: null,
data: null,
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
- 329
searchable: false,
searchable: false,
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
- 330
orderable: false,
orderable: false,
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
- 331
defaultContent: '',
defaultContent: '',
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
- 332
responsivePriority: 1
responsivePriority: 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
- 333
},
},
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
- 334
{
{
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
- 335
title: '',
title: '',
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
- 336
data: 'chkbox',
data: 'chkbox',
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
- 337
searchable: false,
searchable: false,
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
- 338
orderable: false,
orderable: false,
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
- 339
defaultContent: '',
defaultContent: '',
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
- 340
responsivePriority: 2
responsivePriority: 2
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
- 341
},
},
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
- 342
{
{
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
- 343
title: 'ID',
title: 'ID',
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
- 344
data: 'id',
data: 'id',
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
- 345
defaultContent: '',
defaultContent: '',
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
- 346
responsivePriority: 3
responsivePriority: 3
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
- 347
},
},
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
- 348
{
{
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
- 349
title: 'Server',
title: 'Server',
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
- 350
data: 'server_w_port',
data: 'server_w_port',
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
- 351
defaultContent: ''
defaultContent: ''
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
- 352
},
},
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
- 353
{
{
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
- 354
title: lang.username,
title: lang.username,
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
- 355
data: 'user1',
data: 'user1',
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
- 356
defaultContent: '',
defaultContent: '',
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
- 357
responsivePriority: 3
responsivePriority: 3
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
- 358
},
},
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
- 359
{
{
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
- 360
title: lang.last_run,
title: lang.last_run,
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
- 361
data: 'last_run',
data: 'last_run',
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
- 362
defaultContent: ''
defaultContent: ''
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
- 363
},
},
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
- 364
{
{
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
- 365
title: lang.syncjob_last_run_result,
title: lang.syncjob_last_run_result,
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
- 366
data: 'exit_status',
data: 'exit_status',
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
- 367
defaultContent: ''
defaultContent: ''
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
- 368
},
},
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
- 369
{
{
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
- 370
title: 'Log',
title: 'Log',
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
- 371
data: 'log',
data: 'log',
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
- 372
defaultContent: ''
defaultContent: ''
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
- 373
},
},
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
- 374
{
{
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
- 375
title: lang.active,
title: lang.active,
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
- 376
data: 'active',
data: 'active',
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
- 377
defaultContent: '',
defaultContent: '',
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
- 378
render: function (data, type) {
render: function (data, type) {
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
- 379
return 1==data?'<i class="bi bi-check-lg"></i>':0==data&&'<i class="bi bi-x-lg"></i>'
return 1==data?'<i class="bi bi-check-lg"></i>':0==data&&'<i class="bi bi-x-lg"></i>'
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
- 380
}
}
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
- 381
},
},
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
- 382
{
{
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
- 383
title: lang.status,
title: lang.status,
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
- 384
data: 'is_running',
data: 'is_running',
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
- 385
defaultContent: '',
defaultContent: '',
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
- 386
responsivePriority: 5
responsivePriority: 5
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
- 387
},
},
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
- 388
{
{
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
- 389
title: lang.encryption,
title: lang.encryption,
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
- 390
data: 'enc1',
data: 'enc1',
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
- 391
defaultContent: ''
defaultContent: ''
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
- 392
},
},
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
- 393
{
{
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
- 394
title: lang.excludes,
title: lang.excludes,
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
- 395
data: 'exclude',
data: 'exclude',
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
- 396
defaultContent: ''
defaultContent: ''
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
- 397
},
},
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
- 398
{
{
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
- 399
title: lang.interval + " (min)",
title: lang.interval + " (min)",
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
- 400
data: 'mins_interval',
data: 'mins_interval',
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
- 401
defaultContent: ''
defaultContent: ''
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
- 402
},
},
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
- 403
{
{
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
- 404
title: lang.action,
title: lang.action,
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
- 405
data: 'action',
data: 'action',
FreddleSpl0it
over 3 years ago
72e8180
[Web] datatable adjustment
- Full commit hash
72e8180c6be0f8ae9444e4ae10129ffa830c0c9b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 406
className: 'dt-sm-head-hidden dt-text-right',
className: 'dt-sm-head-hidden dt-text-right',
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
- 407
defaultContent: '',
defaultContent: '',
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
- 408
responsivePriority: 5
responsivePriority: 5
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
- 409
}
}
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
- 410
]
]
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
- 411
});
});
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
- 412
}
}
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
- 413
function draw_app_passwd_table() {
function draw_app_passwd_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
- 414
// just recalc width if instance already exists
// just recalc width if instance already exists
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
- 415
if ($.fn.DataTable.isDataTable('#app_passwd_table') ) {
if ($.fn.DataTable.isDataTable('#app_passwd_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
- 416
$('#app_passwd_table').DataTable().columns.adjust().responsive.recalc();
$('#app_passwd_table').DataTable().columns.adjust().responsive.recalc();
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
- 417
return;
return;
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
- 418
}
}
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
- 419
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
- 420
$('#app_passwd_table').DataTable({
$('#app_passwd_table').DataTable({
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
- 421
responsive: true,
responsive: true,
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
- 422
processing: true,
processing: true,
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
- 423
serverSide: false,
serverSide: false,
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
- 424
stateSave: true,
stateSave: true,
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
- 425
pageLength: pagination_size,
pageLength: pagination_size,
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
- 426
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
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 427
"tr" +
"tr" +
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
- 428
"<'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
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 429
language: lang_datatables,
language: lang_datatables,
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
- 430
ajax: {
ajax: {
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
- 431
type: "GET",
type: "GET",
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
- 432
url: '/api/v1/get/app-passwd/all',
url: '/api/v1/get/app-passwd/all',
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
- 433
dataSrc: function(data){
dataSrc: function(data){
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
- 434
$.each(data, function (i, item) {
$.each(data, function (i, item) {
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
- 435
item.name = escapeHtml(item.name)
item.name = escapeHtml(item.name)
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
- 436
item.protocols = []
item.protocols = []
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
- 437
if (item.imap_access == 1) { item.protocols.push("<code>IMAP</code>"); }
if (item.imap_access == 1) { item.protocols.push("<code>IMAP</code>"); }
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
- 438
if (item.smtp_access == 1) { item.protocols.push("<code>SMTP</code>"); }
if (item.smtp_access == 1) { item.protocols.push("<code>SMTP</code>"); }
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
- 439
if (item.eas_access == 1) { item.protocols.push("<code>EAS/ActiveSync</code>"); }
if (item.eas_access == 1) { item.protocols.push("<code>EAS/ActiveSync</code>"); }
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
- 440
if (item.dav_access == 1) { item.protocols.push("<code>DAV</code>"); }
if (item.dav_access == 1) { item.protocols.push("<code>DAV</code>"); }
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
- 441
if (item.pop3_access == 1) { item.protocols.push("<code>POP3</code>"); }
if (item.pop3_access == 1) { item.protocols.push("<code>POP3</code>"); }
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
- 442
if (item.sieve_access == 1) { item.protocols.push("<code>Sieve</code>"); }
if (item.sieve_access == 1) { item.protocols.push("<code>Sieve</code>"); }
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
- 443
item.protocols = item.protocols.join(" ")
item.protocols = item.protocols.join(" ")
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
- 444
if (acl_data.app_passwds === 1) {
if (acl_data.app_passwds === 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
- 445
item.action = '<div class="btn-group">' +
item.action = '<div class="btn-group">' +
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
- 446
'<a href="/edit/app-passwd/' + item.id + '" class="btn btn-xs btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
'<a href="/edit/app-passwd/' + item.id + '" class="btn btn-xs btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
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
- 447
'<a href="#" data-action="delete_selected" data-id="single-apppasswd" data-api-url="delete/app-passwd" data-item="' + item.id + '" class="btn btn-xs btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
'<a href="#" data-action="delete_selected" data-id="single-apppasswd" data-api-url="delete/app-passwd" data-item="' + item.id + '" class="btn btn-xs btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
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
- 448
'</div>';
'</div>';
Kristian Feldsam
almost 3 years ago
8e53230
[Web] checkbox styling
- Full commit hash
8e5323023a1ffd4f05477663f229b064a6c1e787- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 449
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="apppasswd" name="multi_select" value="' + item.id + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="apppasswd" name="multi_select" value="' + item.id + '" />';
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
- 450
}
}
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
- 451
else {
else {
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
- 452
item.action = '<span>-</span>';
item.action = '<span>-</span>';
Kristian Feldsam
almost 3 years ago
8e53230
[Web] checkbox styling
- Full commit hash
8e5323023a1ffd4f05477663f229b064a6c1e787- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 453
item.chkbox = '<input type="checkbox" class="form-check-input" disabled />';
item.chkbox = '<input type="checkbox" class="form-check-input" disabled />';
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
- 454
}
}
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
- 455
});
});
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
- 456
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
- 457
return data;
return data;
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
- 458
}
}
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
- 459
},
},
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
- 460
columns: [
columns: [
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
- 461
{
{
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
- 462
// placeholder, so checkbox will not block child row toggle
// placeholder, so checkbox will not block child row toggle
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
- 463
title: '',
title: '',
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
- 464
data: null,
data: null,
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
- 465
searchable: false,
searchable: false,
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
- 466
orderable: false,
orderable: false,
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
- 467
defaultContent: ''
defaultContent: ''
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
- 468
},
},
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
- 469
{
{
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
- 470
title: '',
title: '',
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
- 471
data: 'chkbox',
data: 'chkbox',
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
- 472
searchable: false,
searchable: false,
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
- 473
orderable: false,
orderable: false,
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
- 474
defaultContent: ''
defaultContent: ''
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
- 475
},
},
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
- 476
{
{
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
- 477
title: 'ID',
title: 'ID',
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
- 478
data: 'id',
data: 'id',
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
- 479
defaultContent: ''
defaultContent: ''
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
- 480
},
},
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
- 481
{
{
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
- 482
title: lang.app_name,
title: lang.app_name,
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
- 483
data: 'name',
data: 'name',
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
- 484
defaultContent: ''
defaultContent: ''
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
- 485
},
},
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
- 486
{
{
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
- 487
title: lang.allowed_protocols,
title: lang.allowed_protocols,
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
- 488
data: 'protocols',
data: 'protocols',
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
- 489
defaultContent: ''
defaultContent: ''
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
- 490
},
},
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
- 491
{
{
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
- 492
title: lang.active,
title: lang.active,
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
- 493
data: 'active',
data: 'active',
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
- 494
defaultContent: '',
defaultContent: '',
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
- 495
render: function (data, type) {
render: function (data, type) {
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
- 496
return 1==data?'<i class="bi bi-check-lg"></i>':0==data&&'<i class="bi bi-x-lg"></i>'
return 1==data?'<i class="bi bi-check-lg"></i>':0==data&&'<i class="bi bi-x-lg"></i>'
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
- 497
}
}
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
- 498
},
},
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
- 499
{
{
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
- 500
title: lang.action,
title: lang.action,
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
- 501
data: 'action',
data: 'action',
FreddleSpl0it
over 3 years ago
72e8180
[Web] datatable adjustment
- Full commit hash
72e8180c6be0f8ae9444e4ae10129ffa830c0c9b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 502
className: 'dt-sm-head-hidden dt-text-right',
className: 'dt-sm-head-hidden dt-text-right',
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
- 503
defaultContent: ''
defaultContent: ''
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
- 504
}
}
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
- 505
]
]
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
- 506
});
});
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
- 507
}
}
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
- 508
function draw_wl_policy_mailbox_table() {
function draw_wl_policy_mailbox_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
- 509
// just recalc width if instance already exists
// just recalc width if instance already exists
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
- 510
if ($.fn.DataTable.isDataTable('#wl_policy_mailbox_table') ) {
if ($.fn.DataTable.isDataTable('#wl_policy_mailbox_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
- 511
$('#wl_policy_mailbox_table').DataTable().columns.adjust().responsive.recalc();
$('#wl_policy_mailbox_table').DataTable().columns.adjust().responsive.recalc();
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
- 512
return;
return;
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
- 513
}
}
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
- 514
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
- 515
$('#wl_policy_mailbox_table').DataTable({
$('#wl_policy_mailbox_table').DataTable({
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
- 516
responsive: true,
responsive: true,
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
- 517
processing: true,
processing: true,
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
- 518
serverSide: false,
serverSide: false,
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
- 519
stateSave: true,
stateSave: true,
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
- 520
pageLength: pagination_size,
pageLength: pagination_size,
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
- 521
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
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 522
"tr" +
"tr" +
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
- 523
"<'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
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 524
language: lang_datatables,
language: lang_datatables,
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
- 525
ajax: {
ajax: {
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
- 526
type: "GET",
type: "GET",
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
- 527
url: '/api/v1/get/policy_wl_mailbox',
url: '/api/v1/get/policy_wl_mailbox',
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
- 528
dataSrc: function(data){
dataSrc: function(data){
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
- 529
$.each(data, function (i, item) {
$.each(data, function (i, item) {
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
- 530
if (validateEmail(item.object)) {
if (validateEmail(item.object)) {
Kristian Feldsam
almost 3 years ago
8e53230
[Web] checkbox styling
- Full commit hash
8e5323023a1ffd4f05477663f229b064a6c1e787- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 531
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="policy_wl_mailbox" name="multi_select" value="' + item.prefid + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="policy_wl_mailbox" name="multi_select" value="' + item.prefid + '" />';
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
- 532
}
}
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
- 533
else {
else {
Kristian Feldsam
almost 3 years ago
8e53230
[Web] checkbox styling
- Full commit hash
8e5323023a1ffd4f05477663f229b064a6c1e787- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 534
item.chkbox = '<input type="checkbox" class="form-check-input" disabled title="' + lang.spamfilter_table_domain_policy + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" disabled title="' + lang.spamfilter_table_domain_policy + '" />';
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
- 535
}
}
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
- 536
if (acl_data.spam_policy === 0) {
if (acl_data.spam_policy === 0) {
Kristian Feldsam
almost 3 years ago
8e53230
[Web] checkbox styling
- Full commit hash
8e5323023a1ffd4f05477663f229b064a6c1e787- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 537
item.chkbox = '<input type="checkbox" class="form-check-input" disabled />';
item.chkbox = '<input type="checkbox" class="form-check-input" disabled />';
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
- 538
}
}
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
- 539
});
});
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
- 540
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
- 541
return data;
return data;
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
- 542
}
}
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
- 543
},
},
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
- 544
columns: [
columns: [
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
- 545
{
{
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
- 546
// placeholder, so checkbox will not block child row toggle
// placeholder, so checkbox will not block child row toggle
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
- 547
title: '',
title: '',
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
- 548
data: null,
data: null,
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
- 549
searchable: false,
searchable: false,
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
- 550
orderable: false,
orderable: false,
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
- 551
defaultContent: ''
defaultContent: ''
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
- 552
},
},
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
- 553
{
{
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
- 554
title: '',
title: '',
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
- 555
data: 'chkbox',
data: 'chkbox',
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
- 556
searchable: false,
searchable: false,
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
- 557
orderable: false,
orderable: false,
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
- 558
defaultContent: ''
defaultContent: ''
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
- 559
},
},
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
- 560
{
{
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
- 561
title: 'ID',
title: 'ID',
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
- 562
data: 'prefid',
data: 'prefid',
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
- 563
defaultContent: ''
defaultContent: ''
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
- 564
},
},
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
- 565
{
{
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
- 566
title: lang.spamfilter_table_rule,
title: lang.spamfilter_table_rule,
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
- 567
data: 'value',
data: 'value',
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
- 568
defaultContent: ''
defaultContent: ''
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
- 569
},
},
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
- 570
{
{
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
- 571
title:'Scope',
title:'Scope',
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
- 572
data: 'object',
data: 'object',
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
- 573
defaultContent: ''
defaultContent: ''
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
- 574
}
}
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
- 575
]
]
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
- 576
});
});
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
- 577
}
}
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
- 578
function draw_bl_policy_mailbox_table() {
function draw_bl_policy_mailbox_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
- 579
// just recalc width if instance already exists
// just recalc width if instance already exists
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
- 580
if ($.fn.DataTable.isDataTable('#bl_policy_mailbox_table') ) {
if ($.fn.DataTable.isDataTable('#bl_policy_mailbox_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
- 581
$('#bl_policy_mailbox_table').DataTable().columns.adjust().responsive.recalc();
$('#bl_policy_mailbox_table').DataTable().columns.adjust().responsive.recalc();
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
- 582
return;
return;
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
- 583
}
}
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
- 584
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
- 585
$('#bl_policy_mailbox_table').DataTable({
$('#bl_policy_mailbox_table').DataTable({
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
- 586
responsive: true,
responsive: true,
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
- 587
processing: true,
processing: true,
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
- 588
serverSide: false,
serverSide: false,
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
- 589
stateSave: true,
stateSave: true,
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
- 590
pageLength: pagination_size,
pageLength: pagination_size,
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
- 591
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
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 592
"tr" +
"tr" +
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
- 593
"<'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
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 594
language: lang_datatables,
language: lang_datatables,
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
- 595
ajax: {
ajax: {
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
- 596
type: "GET",
type: "GET",
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
- 597
url: '/api/v1/get/policy_bl_mailbox',
url: '/api/v1/get/policy_bl_mailbox',
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
- 598
dataSrc: function(data){
dataSrc: function(data){
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
- 599
$.each(data, function (i, item) {
$.each(data, function (i, item) {
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
- 600
if (validateEmail(item.object)) {
if (validateEmail(item.object)) {
Kristian Feldsam
almost 3 years ago
8e53230
[Web] checkbox styling
- Full commit hash
8e5323023a1ffd4f05477663f229b064a6c1e787- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 601
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="policy_bl_mailbox" name="multi_select" value="' + item.prefid + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="policy_bl_mailbox" name="multi_select" value="' + item.prefid + '" />';
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
- 602
}
}
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
- 603
else {
else {
Kristian Feldsam
almost 3 years ago
8e53230
[Web] checkbox styling
- Full commit hash
8e5323023a1ffd4f05477663f229b064a6c1e787- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 604
item.chkbox = '<input type="checkbox" class="form-check-input" disabled tooltip="' + lang.spamfilter_table_domain_policy + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" disabled tooltip="' + lang.spamfilter_table_domain_policy + '" />';
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
- 605
}
}
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
- 606
if (acl_data.spam_policy === 0) {
if (acl_data.spam_policy === 0) {
Kristian Feldsam
almost 3 years ago
8e53230
[Web] checkbox styling
- Full commit hash
8e5323023a1ffd4f05477663f229b064a6c1e787- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 607
item.chkbox = '<input type="checkbox" class="form-check-input" disabled />';
item.chkbox = '<input type="checkbox" class="form-check-input" disabled />';
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
- 608
}
}
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
- 609
});
});
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
- 610
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
- 611
return data;
return data;
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
- 612
}
}
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
- 613
},
},
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
- 614
columns: [
columns: [
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
- 615
{
{
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
- 616
// placeholder, so checkbox will not block child row toggle
// placeholder, so checkbox will not block child row toggle
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
- 617
title: '',
title: '',
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
- 618
data: null,
data: null,
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
- 619
searchable: false,
searchable: false,
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
- 620
orderable: false,
orderable: false,
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
- 621
defaultContent: ''
defaultContent: ''
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
- 622
},
},
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
- 623
{
{
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
- 624
title: '',
title: '',
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
- 625
data: 'chkbox',
data: 'chkbox',
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
- 626
searchable: false,
searchable: false,
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
- 627
orderable: false,
orderable: false,
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
- 628
defaultContent: ''
defaultContent: ''
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
- 629
},
},
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
- 630
{
{
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
- 631
title: 'ID',
title: 'ID',
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
- 632
data: 'prefid',
data: 'prefid',
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
- 633
defaultContent: ''
defaultContent: ''
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
- 634
},
},
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
- 635
{
{
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
- 636
title: lang.spamfilter_table_rule,
title: lang.spamfilter_table_rule,
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
- 637
data: 'value',
data: 'value',
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
- 638
defaultContent: ''
defaultContent: ''
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
- 639
},
},
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
- 640
{
{
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
- 641
title:'Scope',
title:'Scope',
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
- 642
data: 'object',
data: 'object',
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
- 643
defaultContent: ''
defaultContent: ''
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
- 644
}
}
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
- 645
]
]
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
- 646
});
});
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
- 647
}
}
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
- 648
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
- 649
// FIDO2 friendly name modal
// FIDO2 friendly name modal
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
- 650
$('#fido2ChangeFn').on('show.bs.modal', function (e) {
$('#fido2ChangeFn').on('show.bs.modal', function (e) {
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
- 651
rename_link = $(e.relatedTarget)
rename_link = $(e.relatedTarget)
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
- 652
if (rename_link != null) {
if (rename_link != null) {
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
- 653
$('#fido2_cid').val(rename_link.data('cid'));
$('#fido2_cid').val(rename_link.data('cid'));
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
- 654
$('#fido2_subject_desc').text(Base64.decode(rename_link.data('subject')));
$('#fido2_subject_desc').text(Base64.decode(rename_link.data('subject')));
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
- 655
}
}
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
- 656
})
})
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
- 657
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
- 658
// Sieve data modal
// Sieve data modal
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
- 659
$('#userFilterModal').on('show.bs.modal', function(e) {
$('#userFilterModal').on('show.bs.modal', function(e) {
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
- 660
$('#user_sieve_filter').text(lang.loading);
$('#user_sieve_filter').text(lang.loading);
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
- 661
$.ajax({
$.ajax({
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
- 662
dataType: 'json',
dataType: 'json',
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
- 663
url: '/api/v1/get/active-user-sieve/' + encodeURIComponent(mailcow_cc_username),
url: '/api/v1/get/active-user-sieve/' + encodeURIComponent(mailcow_cc_username),
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
- 664
jsonp: false,
jsonp: false,
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
- 665
error: function () {
error: function () {
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
- 666
console.log('Cannot get active sieve script');
console.log('Cannot get active sieve script');
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
- 667
},
},
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
- 668
complete: function (data) {
complete: function (data) {
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
- 669
if (data.responseText == '{}') {
if (data.responseText == '{}') {
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
- 670
$('#user_sieve_filter').text(lang.no_active_filter);
$('#user_sieve_filter').text(lang.no_active_filter);
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
- 671
} else {
} else {
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
- 672
$('#user_sieve_filter').text(JSON.parse(data.responseText));
$('#user_sieve_filter').text(JSON.parse(data.responseText));
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
- 673
}
}
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
- 674
}
}
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
- 675
})
})
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
- 676
});
});
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
- 677
$('#userFilterModal').on('hidden.bs.modal', function () {
$('#userFilterModal').on('hidden.bs.modal', function () {
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
- 678
$('#user_sieve_filter').text(lang.loading);
$('#user_sieve_filter').text(lang.loading);
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
- 679
});
});
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
- 680
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
- 681
// detect element visibility changes
// detect element visibility changes
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
- 682
function onVisible(element, callback) {
function onVisible(element, callback) {
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
- 683
$(document).ready(function() {
$(document).ready(function() {
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
- 684
element_object = document.querySelector(element);
element_object = document.querySelector(element);
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
- 685
if (element_object === null) return;
if (element_object === null) return;
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
- 686
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
- 687
new IntersectionObserver((entries, observer) => {
new IntersectionObserver((entries, observer) => {
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
- 688
entries.forEach(entry => {
entries.forEach(entry => {
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
- 689
if(entry.intersectionRatio > 0) {
if(entry.intersectionRatio > 0) {
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
- 690
callback(element_object);
callback(element_object);
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
- 691
}
}
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
- 692
});
});
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
- 693
}).observe(element_object);
}).observe(element_object);
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
- 694
});
});
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
- 695
}
}
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
- 696
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
- 697
// Load only if the tab is visible
// Load only if the tab is visible
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
- 698
onVisible("[id^=tla_table]", () => draw_tla_table());
onVisible("[id^=tla_table]", () => draw_tla_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
- 699
onVisible("[id^=bl_policy_mailbox_table]", () => draw_bl_policy_mailbox_table());
onVisible("[id^=bl_policy_mailbox_table]", () => draw_bl_policy_mailbox_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
- 700
onVisible("[id^=wl_policy_mailbox_table]", () => draw_wl_policy_mailbox_table());
onVisible("[id^=wl_policy_mailbox_table]", () => draw_wl_policy_mailbox_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
- 701
onVisible("[id^=sync_job_table]", () => draw_sync_job_table());
onVisible("[id^=sync_job_table]", () => draw_sync_job_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
- 702
onVisible("[id^=app_passwd_table]", () => draw_app_passwd_table());
onVisible("[id^=app_passwd_table]", () => draw_app_passwd_table());
Pierre Pelletier
about 2 years ago
6ba2459
Fixed blocking last connection fetching
- Full commit hash
6ba2459645567f027ee00b5d0109a61328ba9462- Author
- Pierre Pelletier <[email protected]>
- Date
- about 2 years ago
- Selected line
- 703
onVisible("[id^=recent-logins]", () => last_logins('get'));
onVisible("[id^=recent-logins]", () => last_logins('get'));
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
- 704
});
});