NobGit
public nobgit read

NobMail

Based on mailcow: dockerized

Languages

Repository composition by tracked source files.

PHP
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
Open commit View diff
1 // 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}};
Open commit View diff
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}};
same change 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() {
Open commit View diff
3 $(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
Open commit View diff
4 // 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];
Open commit View diff
5 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') {
Open commit View diff
6 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, {
Open commit View diff
7 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,
Open commit View diff
8 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],
Open commit View diff
9 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: {
Open commit View diff
10 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
Open commit View diff
11 '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],
Open commit View diff
12 '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],
Open commit View diff
13 '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],
Open commit View diff
14 '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],
Open commit View diff
15 '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],
Open commit View diff
16 '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]
Open commit View diff
17 '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
      },
Open commit View diff
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
    });
Open commit View diff
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');
Open commit View diff
20 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'];
Open commit View diff
21 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++) {
Open commit View diff
22 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]);
Open commit View diff
23 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
    }
Open commit View diff
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) {
Open commit View diff
25 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);
Open commit View diff
26 $('.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);
Open commit View diff
27 $('.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);
Open commit View diff
28 $('.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));
Open commit View diff
29 $('#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
    });
Open commit View diff
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
  }
Open commit View diff
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
Open commit View diff
32 // 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) {
Open commit View diff
33 $('#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');
Open commit View diff
34 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({
Open commit View diff
35 $.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',
Open commit View diff
36 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 },
Open commit View diff
37 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',
Open commit View diff
38 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){
Open commit View diff
39 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);
Open commit View diff
40 $(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
      },
Open commit View diff
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) {
Open commit View diff
42 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);
Open commit View diff
43 $(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
      }
Open commit View diff
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
    });
Open commit View diff
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
  });
Open commit View diff
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"); });
Open commit View diff
47 $(".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); });
Open commit View diff
48 $("#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
Open commit View diff
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
});
Open commit View diff
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($){
Open commit View diff
51 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
Open commit View diff
52 // 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 = {
Open commit View diff
53 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
  '&': '&amp;',
Open commit View diff
54 '&': '&amp;',
same change 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
  '<': '&lt;',
Open commit View diff
55 '<': '&lt;',
same change 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
  '>': '&gt;',
Open commit View diff
56 '>': '&gt;',
same change 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
  '"': '&quot;',
Open commit View diff
57 '"': '&quot;',
same change 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
  "'": '&#39;',
Open commit View diff
58 "'": '&#39;',
same change 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
  '/': '&#x2F;',
Open commit View diff
59 '/': '&#x2F;',
same change 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
  '`': '&#x60;',
Open commit View diff
60 '`': '&#x60;',
same change 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
  '=': '&#x3D;'
Open commit View diff
61 '=': '&#x3D;'
same change 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
  };
Open commit View diff
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) {
Open commit View diff
63 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) {
Open commit View diff
64 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];
Open commit View diff
65 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
    });
Open commit View diff
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
  }
Open commit View diff
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
Open commit View diff
68 // 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) {
Open commit View diff
69 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,}))$/;
Open commit View diff
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,}))$/;
same change 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);
Open commit View diff
71 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
  }
Open commit View diff
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) {
Open commit View diff
73 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);
Open commit View diff
74 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"});
Open commit View diff
75 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
  }
Open commit View diff
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);
Open commit View diff
77 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
Open commit View diff
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');}})
Open commit View diff
79 $('.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')});
Open commit View diff
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')});
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
Open commit View diff
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) {
Open commit View diff
82 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') {
Open commit View diff
83 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');
Open commit View diff
84 $('#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({
Open commit View diff
85 $.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',
Open commit View diff
86 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,
Open commit View diff
87 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,
Open commit View diff
88 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 () {
Open commit View diff
89 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');
Open commit View diff
90 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
        },
Open commit View diff
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) {
Open commit View diff
92 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('');
Open commit View diff
93 $('.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) {
Open commit View diff
94 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">');
Open commit View diff
95 $('.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) {
Open commit View diff
96 $.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, "/"));
Open commit View diff
97 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"});
Open commit View diff
98 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>';
Open commit View diff
99 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>' : '';
Open commit View diff
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>' : '';
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>";
Open commit View diff
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>";
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>' : '';
Open commit View diff
102 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;
Open commit View diff
103 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
Open commit View diff
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(`
Open commit View diff
105 $(".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">
Open commit View diff
106 <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">
Open commit View diff
107 <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>
Open commit View diff
108 <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 + `
Open commit View diff
109 <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>
Open commit View diff
110 </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>
Open commit View diff
111 </li>
same change 56a9f1a

[Web] organize user landing

Full commit hash
56a9f1a4115194c63d37ee8c451c7e432a3291c5
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
112
              `);
Open commit View diff
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
            })
Open commit View diff
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>');
Open commit View diff
114 $('.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
          }
Open commit View diff
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
Open commit View diff
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');
Open commit View diff
117 $('#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
        }
Open commit View diff
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
      })
Open commit View diff
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') {
Open commit View diff
120 } 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({
Open commit View diff
121 $.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',
Open commit View diff
122 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),
Open commit View diff
123 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,
Open commit View diff
124 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 () {
Open commit View diff
125 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');
Open commit View diff
126 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
        },
Open commit View diff
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) {
Open commit View diff
128 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');
Open commit View diff
129 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
        }
Open commit View diff
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
      })
Open commit View diff
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
    }
Open commit View diff
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
  }
Open commit View diff
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
Open commit View diff
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
Open commit View diff
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) {
Open commit View diff
136 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)
Open commit View diff
137 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);
Open commit View diff
138 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
Open commit View diff
139 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);
Open commit View diff
140 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
Open commit View diff
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();
Open commit View diff
142 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({
Open commit View diff
143 $(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,
Open commit View diff
144 "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
Open commit View diff
145 "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
    });
Open commit View diff
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));
Open commit View diff
147 $(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
  }
Open commit View diff
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() {
Open commit View diff
149 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
Open commit View diff
150 // 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') ) {
Open commit View diff
151 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();
Open commit View diff
152 $('#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;
Open commit View diff
153 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
    }
Open commit View diff
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
Open commit View diff
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({
Open commit View diff
156 $('#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,
Open commit View diff
157 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,
Open commit View diff
158 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,
Open commit View diff
159 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,
Open commit View diff
160 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,
Open commit View diff
161 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>>" +
Open commit View diff
162 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" +
Open commit View diff
163 "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>>",
Open commit View diff
164 "<'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,
Open commit View diff
165 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']],
Open commit View diff
166 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: {
Open commit View diff
167 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",
Open commit View diff
168 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",
Open commit View diff
169 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){
Open commit View diff
170 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) {
Open commit View diff
171 $.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) {
Open commit View diff
172 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">' +
Open commit View diff
173 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>' +
Open commit View diff
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>' +
same change 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>';
Open commit View diff
175 '</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) + '" />';
Open commit View diff
176 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);
Open commit View diff
177 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 = {
Open commit View diff
178 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,
Open commit View diff
179 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
Open commit View diff
180 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
              };
Open commit View diff
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
            }
Open commit View diff
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 {
Open commit View diff
183 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 />';
Open commit View diff
184 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>';
Open commit View diff
185 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
            }
Open commit View diff
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
          });
Open commit View diff
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
Open commit View diff
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;
Open commit View diff
189 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
        }
Open commit View diff
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
      },
Open commit View diff
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: [
Open commit View diff
192 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
        {
Open commit View diff
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
Open commit View diff
194 // 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: '',
Open commit View diff
195 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,
Open commit View diff
196 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,
Open commit View diff
197 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,
Open commit View diff
198 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: ''
Open commit View diff
199 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
        },
Open commit View diff
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
        {
Open commit View diff
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: '',
Open commit View diff
202 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',
Open commit View diff
203 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,
Open commit View diff
204 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,
Open commit View diff
205 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: ''
Open commit View diff
206 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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
209 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',
Open commit View diff
210 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: ''
Open commit View diff
211 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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
214 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',
Open commit View diff
215 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: '',
Open commit View diff
216 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) {
Open commit View diff
217 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);
Open commit View diff
218 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
          }
Open commit View diff
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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
222 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',
Open commit View diff
223 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: '',
Open commit View diff
224 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) {
Open commit View diff
225 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);
Open commit View diff
226 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) {
Open commit View diff
227 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":
Open commit View diff
228 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) {
Open commit View diff
229 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;
Open commit View diff
230 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
                }
Open commit View diff
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();
Open commit View diff
232 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:
Open commit View diff
233 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) {
Open commit View diff
234 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;
Open commit View diff
235 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
                }
Open commit View diff
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);
Open commit View diff
237 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
            }
Open commit View diff
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
          },
Open commit View diff
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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
242 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',
Open commit View diff
243 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: '',
Open commit View diff
244 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) {
Open commit View diff
245 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)
Open commit View diff
246 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
          }
Open commit View diff
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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
250 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',
Open commit View diff
251 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',
Open commit View diff
252 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: ''
Open commit View diff
253 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
        }
Open commit View diff
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
      ]
Open commit View diff
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
    });
Open commit View diff
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
  }
Open commit View diff
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() {
Open commit View diff
258 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
Open commit View diff
259 // 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') ) {
Open commit View diff
260 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();
Open commit View diff
261 $('#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;
Open commit View diff
262 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
    }
Open commit View diff
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
Open commit View diff
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({
Open commit View diff
265 $('#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,
Open commit View diff
266 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,
Open commit View diff
267 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,
Open commit View diff
268 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,
Open commit View diff
269 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,
Open commit View diff
270 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>>" +
Open commit View diff
271 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" +
Open commit View diff
272 "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>>",
Open commit View diff
273 "<'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,
Open commit View diff
274 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: {
Open commit View diff
275 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",
Open commit View diff
276 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',
Open commit View diff
277 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){
Open commit View diff
278 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) {
Open commit View diff
279 $.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);
Open commit View diff
280 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>'
Open commit View diff
281 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) {
Open commit View diff
282 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 = '-';
Open commit View diff
283 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 {
Open commit View diff
284 } 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>';
Open commit View diff
285 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
            }
Open commit View diff
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);
Open commit View diff
287 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) {
Open commit View diff
288 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">' +
Open commit View diff
289 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>' +
Open commit View diff
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>' +
same change 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>' +
Open commit View diff
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>' +
same change 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>';
Open commit View diff
292 '</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 + '" />';
Open commit View diff
293 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
            }
Open commit View diff
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 {
Open commit View diff
295 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>';
Open commit View diff
296 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 />';
Open commit View diff
297 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
            }
Open commit View diff
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) {
Open commit View diff
299 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>';
Open commit View diff
300 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 {
Open commit View diff
301 } 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>';
Open commit View diff
302 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
            }
Open commit View diff
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) {
Open commit View diff
304 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;
Open commit View diff
305 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
            }
Open commit View diff
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) {
Open commit View diff
307 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 = '-';
Open commit View diff
308 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 = '';
Open commit View diff
309 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 {
Open commit View diff
310 } 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>';
Open commit View diff
311 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
            }
Open commit View diff
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]) {
Open commit View diff
313 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];
Open commit View diff
314 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 != '-') {
Open commit View diff
315 } 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;
Open commit View diff
316 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
            }
Open commit View diff
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;
Open commit View diff
318 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
          });
Open commit View diff
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
Open commit View diff
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;
Open commit View diff
321 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
        }
Open commit View diff
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
      },
Open commit View diff
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: [
Open commit View diff
324 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
        {
Open commit View diff
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
Open commit View diff
326 // 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: '',
Open commit View diff
327 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,
Open commit View diff
328 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,
Open commit View diff
329 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,
Open commit View diff
330 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: '',
Open commit View diff
331 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
Open commit View diff
332 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
        },
Open commit View diff
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
        {
Open commit View diff
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: '',
Open commit View diff
335 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',
Open commit View diff
336 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,
Open commit View diff
337 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,
Open commit View diff
338 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: '',
Open commit View diff
339 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
Open commit View diff
340 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
        },
Open commit View diff
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
        {
Open commit View diff
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',
Open commit View diff
343 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',
Open commit View diff
344 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: '',
Open commit View diff
345 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
Open commit View diff
346 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
        },
Open commit View diff
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
        {
Open commit View diff
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',
Open commit View diff
349 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',
Open commit View diff
350 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: ''
Open commit View diff
351 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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
354 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',
Open commit View diff
355 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: '',
Open commit View diff
356 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
Open commit View diff
357 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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
360 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',
Open commit View diff
361 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: ''
Open commit View diff
362 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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
365 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',
Open commit View diff
366 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: ''
Open commit View diff
367 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
        },
Open commit View diff
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
        {
Open commit View diff
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',
Open commit View diff
370 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',
Open commit View diff
371 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: ''
Open commit View diff
372 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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
375 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',
Open commit View diff
376 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: '',
Open commit View diff
377 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) {
Open commit View diff
378 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>'
Open commit View diff
379 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
          }
Open commit View diff
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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
383 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',
Open commit View diff
384 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: '',
Open commit View diff
385 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
Open commit View diff
386 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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
389 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',
Open commit View diff
390 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: ''
Open commit View diff
391 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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
394 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',
Open commit View diff
395 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: ''
Open commit View diff
396 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
        },
Open commit View diff
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
        {
Open commit View diff
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)",
Open commit View diff
399 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',
Open commit View diff
400 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: ''
Open commit View diff
401 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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
404 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',
Open commit View diff
405 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',
Open commit View diff
406 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: '',
Open commit View diff
407 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
Open commit View diff
408 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
        }
Open commit View diff
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
      ]
Open commit View diff
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
    });
Open commit View diff
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
  }
Open commit View diff
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() {
Open commit View diff
413 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
Open commit View diff
414 // 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') ) {
Open commit View diff
415 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();
Open commit View diff
416 $('#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;
Open commit View diff
417 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
    }
Open commit View diff
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
Open commit View diff
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({
Open commit View diff
420 $('#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,
Open commit View diff
421 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,
Open commit View diff
422 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,
Open commit View diff
423 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,
Open commit View diff
424 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,
Open commit View diff
425 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>>" +
Open commit View diff
426 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" +
Open commit View diff
427 "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>>",
Open commit View diff
428 "<'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,
Open commit View diff
429 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: {
Open commit View diff
430 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",
Open commit View diff
431 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',
Open commit View diff
432 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){
Open commit View diff
433 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) {
Open commit View diff
434 $.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)
Open commit View diff
435 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 = []
Open commit View diff
436 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>"); }
Open commit View diff
437 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>"); }
Open commit View diff
438 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>"); }
Open commit View diff
439 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>"); }
Open commit View diff
440 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>"); }
Open commit View diff
441 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>"); }
Open commit View diff
442 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(" ")
Open commit View diff
443 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) {
Open commit View diff
444 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">' +
Open commit View diff
445 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>' +
Open commit View diff
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>' +
same change 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>' +
Open commit View diff
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>' +
same change 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>';
Open commit View diff
448 '</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 + '" />';
Open commit View diff
449 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
            }
Open commit View diff
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 {
Open commit View diff
451 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>';
Open commit View diff
452 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 />';
Open commit View diff
453 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
            }
Open commit View diff
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
          });
Open commit View diff
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
Open commit View diff
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;
Open commit View diff
457 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
        }
Open commit View diff
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
      },
Open commit View diff
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: [
Open commit View diff
460 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
        {
Open commit View diff
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
Open commit View diff
462 // 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: '',
Open commit View diff
463 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,
Open commit View diff
464 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,
Open commit View diff
465 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,
Open commit View diff
466 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: ''
Open commit View diff
467 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
        },
Open commit View diff
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
        {
Open commit View diff
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: '',
Open commit View diff
470 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',
Open commit View diff
471 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,
Open commit View diff
472 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,
Open commit View diff
473 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: ''
Open commit View diff
474 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
        },
Open commit View diff
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
        {
Open commit View diff
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',
Open commit View diff
477 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',
Open commit View diff
478 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: ''
Open commit View diff
479 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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
482 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',
Open commit View diff
483 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: ''
Open commit View diff
484 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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
487 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',
Open commit View diff
488 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: ''
Open commit View diff
489 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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
492 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',
Open commit View diff
493 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: '',
Open commit View diff
494 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) {
Open commit View diff
495 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>'
Open commit View diff
496 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
          }
Open commit View diff
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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
500 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',
Open commit View diff
501 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',
Open commit View diff
502 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: ''
Open commit View diff
503 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
        }
Open commit View diff
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
      ]
Open commit View diff
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
    });
Open commit View diff
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
  }
Open commit View diff
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() {
Open commit View diff
508 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
Open commit View diff
509 // 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') ) {
Open commit View diff
510 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();
Open commit View diff
511 $('#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;
Open commit View diff
512 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
    }
Open commit View diff
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
Open commit View diff
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({
Open commit View diff
515 $('#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,
Open commit View diff
516 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,
Open commit View diff
517 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,
Open commit View diff
518 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,
Open commit View diff
519 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,
Open commit View diff
520 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>>" +
Open commit View diff
521 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" +
Open commit View diff
522 "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>>",
Open commit View diff
523 "<'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,
Open commit View diff
524 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: {
Open commit View diff
525 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",
Open commit View diff
526 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',
Open commit View diff
527 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){
Open commit View diff
528 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) {
Open commit View diff
529 $.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)) {
Open commit View diff
530 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 + '" />';
Open commit View diff
531 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
            }
Open commit View diff
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 {
Open commit View diff
533 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 + '" />';
Open commit View diff
534 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
            }
Open commit View diff
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) {
Open commit View diff
536 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 />';
Open commit View diff
537 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
            }
Open commit View diff
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
          });
Open commit View diff
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
Open commit View diff
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;
Open commit View diff
541 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
        }
Open commit View diff
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
      },
Open commit View diff
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: [
Open commit View diff
544 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
        {
Open commit View diff
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
Open commit View diff
546 // 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: '',
Open commit View diff
547 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,
Open commit View diff
548 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,
Open commit View diff
549 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,
Open commit View diff
550 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: ''
Open commit View diff
551 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
        },
Open commit View diff
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
        {
Open commit View diff
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: '',
Open commit View diff
554 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',
Open commit View diff
555 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,
Open commit View diff
556 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,
Open commit View diff
557 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: ''
Open commit View diff
558 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
        },
Open commit View diff
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
        {
Open commit View diff
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',
Open commit View diff
561 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',
Open commit View diff
562 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: ''
Open commit View diff
563 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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
566 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',
Open commit View diff
567 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: ''
Open commit View diff
568 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
        },
Open commit View diff
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
        {
Open commit View diff
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',
Open commit View diff
571 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',
Open commit View diff
572 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: ''
Open commit View diff
573 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
        }
Open commit View diff
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
      ]
Open commit View diff
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
    });
Open commit View diff
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
  }
Open commit View diff
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() {
Open commit View diff
578 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
Open commit View diff
579 // 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') ) {
Open commit View diff
580 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();
Open commit View diff
581 $('#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;
Open commit View diff
582 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
    }
Open commit View diff
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
Open commit View diff
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({
Open commit View diff
585 $('#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,
Open commit View diff
586 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,
Open commit View diff
587 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,
Open commit View diff
588 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,
Open commit View diff
589 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,
Open commit View diff
590 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>>" +
Open commit View diff
591 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" +
Open commit View diff
592 "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>>",
Open commit View diff
593 "<'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,
Open commit View diff
594 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: {
Open commit View diff
595 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",
Open commit View diff
596 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',
Open commit View diff
597 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){
Open commit View diff
598 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) {
Open commit View diff
599 $.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)) {
Open commit View diff
600 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 + '" />';
Open commit View diff
601 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
            }
Open commit View diff
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 {
Open commit View diff
603 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 + '" />';
Open commit View diff
604 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
            }
Open commit View diff
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) {
Open commit View diff
606 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 />';
Open commit View diff
607 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
            }
Open commit View diff
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
          });
Open commit View diff
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
Open commit View diff
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;
Open commit View diff
611 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
        }
Open commit View diff
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
      },
Open commit View diff
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: [
Open commit View diff
614 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
        {
Open commit View diff
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
Open commit View diff
616 // 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: '',
Open commit View diff
617 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,
Open commit View diff
618 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,
Open commit View diff
619 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,
Open commit View diff
620 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: ''
Open commit View diff
621 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
        },
Open commit View diff
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
        {
Open commit View diff
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: '',
Open commit View diff
624 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',
Open commit View diff
625 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,
Open commit View diff
626 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,
Open commit View diff
627 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: ''
Open commit View diff
628 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
        },
Open commit View diff
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
        {
Open commit View diff
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',
Open commit View diff
631 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',
Open commit View diff
632 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: ''
Open commit View diff
633 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
        },
Open commit View diff
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
        {
Open commit View diff
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,
Open commit View diff
636 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',
Open commit View diff
637 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: ''
Open commit View diff
638 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
        },
Open commit View diff
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
        {
Open commit View diff
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',
Open commit View diff
641 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',
Open commit View diff
642 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: ''
Open commit View diff
643 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
        }
Open commit View diff
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
      ]
Open commit View diff
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
    });
Open commit View diff
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
  }
Open commit View diff
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
Open commit View diff
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
Open commit View diff
649 // 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) {
Open commit View diff
650 $('#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)
Open commit View diff
651 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) {
Open commit View diff
652 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'));
Open commit View diff
653 $('#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')));
Open commit View diff
654 $('#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
    }
Open commit View diff
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
  })
Open commit View diff
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
Open commit View diff
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
Open commit View diff
658 // 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) {
Open commit View diff
659 $('#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);
Open commit View diff
660 $('#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({
Open commit View diff
661 $.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',
Open commit View diff
662 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),
Open commit View diff
663 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,
Open commit View diff
664 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 () {
Open commit View diff
665 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');
Open commit View diff
666 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
      },
Open commit View diff
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) {
Open commit View diff
668 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 == '{}') {
Open commit View diff
669 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);
Open commit View diff
670 $('#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 {
Open commit View diff
671 } 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));
Open commit View diff
672 $('#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
        }
Open commit View diff
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
      }
Open commit View diff
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
    })
Open commit View diff
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
  });
Open commit View diff
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 () {
Open commit View diff
677 $('#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);
Open commit View diff
678 $('#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
  });
Open commit View diff
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
Open commit View diff
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
Open commit View diff
681 // 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) {
Open commit View diff
682 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() {
Open commit View diff
683 $(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);
Open commit View diff
684 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;
Open commit View diff
685 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
Open commit View diff
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) => {
Open commit View diff
687 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 => {
Open commit View diff
688 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) {
Open commit View diff
689 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);
Open commit View diff
690 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
          }
Open commit View diff
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
        });
Open commit View diff
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);
Open commit View diff
693 }).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
    });
Open commit View diff
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
  }
Open commit View diff
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
Open commit View diff
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
Open commit View diff
697 // 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());
Open commit View diff
698 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());
Open commit View diff
699 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());
Open commit View diff
700 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());
Open commit View diff
701 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());
Open commit View diff
702 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'));
Open commit View diff
703 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
});
Open commit View diff
704 });