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/admin.js

Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.

admin.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
jQuery(function($){
Open commit View diff
3 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
4
  // http://stackoverflow.com/questions/24816/escaping-html-strings-with-jquery
Open commit View diff
4 // 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
5
  var entityMap={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;","/":"&#x2F;","`":"&#x60;","=":"&#x3D;"};
Open commit View diff
5 var entityMap={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;","/":"&#x2F;","`":"&#x60;","=":"&#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
6
  function jq(myid) {return "#" + myid.replace( /(:|\.|\[|\]|,|=|@)/g, "\\$1" );}
Open commit View diff
6 function jq(myid) {return "#" + myid.replace( /(:|\.|\[|\]|,|=|@)/g, "\\$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
7
  function escapeHtml(n){return String(n).replace(/[&<>"'`=\/]/g,function(n){return entityMap[n]})}
Open commit View diff
7 function escapeHtml(n){return String(n).replace(/[&<>"'`=\/]/g,function(n){return entityMap[n]})}
same change 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
  function validateRegex(e){var t=e.split("/"),n=e,r="";t.length>1&&(n=t[1],r=t[2]);try{return new RegExp(n,r),!0}catch(e){return!1}}
Open commit View diff
8 function validateRegex(e){var t=e.split("/"),n=e,r="";t.length>1&&(n=t[1],r=t[2]);try{return new RegExp(n,r),!0}catch(e){return!1}}
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
9
  function humanFileSize(i){if(Math.abs(i)<1024)return i+" B";var B=["KiB","MiB","GiB","TiB","PiB","EiB","ZiB","YiB"],e=-1;do{i/=1024,++e}while(Math.abs(i)>=1024&&e<B.length-1);return i.toFixed(1)+" "+B[e]}
Open commit View diff
9 function humanFileSize(i){if(Math.abs(i)<1024)return i+" B";var B=["KiB","MiB","GiB","TiB","PiB","EiB","ZiB","YiB"],e=-1;do{i/=1024,++e}while(Math.abs(i)>=1024&&e<B.length-1);return i.toFixed(1)+" "+B[e]}
same change 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
  function hashCode(t){for(var n=0,r=0;r<t.length;r++)n=t.charCodeAt(r)+((n<<5)-n);return n}
Open commit View diff
10 function hashCode(t){for(var n=0,r=0;r<t.length;r++)n=t.charCodeAt(r)+((n<<5)-n);return n}
same change 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
  function intToRGB(t){var n=(16777215&t).toString(16).toUpperCase();return"00000".substring(0,6-n.length)+n}
Open commit View diff
11 function intToRGB(t){var n=(16777215&t).toString(16).toUpperCase();return"00000".substring(0,6-n.length)+n}
same change 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
  $("#dkim_missing_keys").on('click', function(e) {
Open commit View diff
12 $("#dkim_missing_keys").on('click', 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
13
    e.preventDefault();
Open commit View diff
13 e.preventDefault();
same change 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
     var domains = [];
Open commit View diff
14 var domains = [];
same change 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
     $('.dkim_missing').each(function() {
Open commit View diff
15 $('.dkim_missing').each(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
16
       domains.push($(this).val());
Open commit View diff
16 domains.push($(this).val());
same change 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
     });
Open commit View diff
17 });
same change 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
     $('#dkim_add_domains').val(domains);
Open commit View diff
18 $('#dkim_add_domains').val(domains);
same change 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
  $(".arrow-toggle").on('click', function(e) { e.preventDefault(); $(this).find('.arrow').toggleClass("animation"); });
Open commit View diff
20 $(".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
21
  $("#mass_exclude").change(function(){ $("#mass_include").selectpicker('deselectAll'); });
Open commit View diff
21 $("#mass_exclude").change(function(){ $("#mass_include").selectpicker('deselectAll'); });
same change 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
  $("#mass_include").change(function(){ $("#mass_exclude").selectpicker('deselectAll'); });
Open commit View diff
22 $("#mass_include").change(function(){ $("#mass_exclude").selectpicker('deselectAll'); });
same change 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
  $("#mass_disarm").click(function() { $("#mass_send").attr("disabled", !this.checked); });
Open commit View diff
23 $("#mass_disarm").click(function() { $("#mass_send").attr("disabled", !this.checked); });
same change 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
  $(".admin-ays-dialog").click(function() { return confirm(lang.ays); });
Open commit View diff
24 $(".admin-ays-dialog").click(function() { return confirm(lang.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
25
  $(".validate_rspamd_regex").click(function( event ) {
Open commit View diff
25 $(".validate_rspamd_regex").click(function( event ) {
same change 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
    event.preventDefault();
Open commit View diff
26 event.preventDefault();
same change 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
    var regex_map_id = $(this).data('regex-map');
Open commit View diff
27 var regex_map_id = $(this).data('regex-map');
same change 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
    var regex_data = $(jq(regex_map_id)).val().split(/\r?\n/);
Open commit View diff
28 var regex_data = $(jq(regex_map_id)).val().split(/\r?\n/);
same change 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
    var regex_valid = true;
Open commit View diff
29 var regex_valid = 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
30
    for(var i = 0;i < regex_data.length;i++){
Open commit View diff
30 for(var i = 0;i < regex_data.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
31
      if(regex_data[i].startsWith('#') || !regex_data[i]){
Open commit View diff
31 if(regex_data[i].startsWith('#') || !regex_data[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
32
        continue;
Open commit View diff
32 continue;
same change 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
      }
Open commit View diff
33 }
same change 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
      if(!validateRegex(regex_data[i])) {
Open commit View diff
34 if(!validateRegex(regex_data[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
35
        mailcow_alert_box('Cannot build regex from line ' + (i+1), 'danger');
Open commit View diff
35 mailcow_alert_box('Cannot build regex from line ' + (i+1), 'danger');
same change 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
        var regex_valid = false;
Open commit View diff
36 var regex_valid = 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
37
        break;
Open commit View diff
37 break;
same change 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
      }
Open commit View diff
38 }
same change 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
      if(!regex_data[i].startsWith('/') || !/\/[ims]?$/.test(regex_data[i])){
Open commit View diff
39 if(!regex_data[i].startsWith('/') || !/\/[ims]?$/.test(regex_data[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
40
        mailcow_alert_box('Line ' + (i+1) + ' is invalid', 'danger');
Open commit View diff
40 mailcow_alert_box('Line ' + (i+1) + ' is invalid', 'danger');
same change 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
        var regex_valid = false;
Open commit View diff
41 var regex_valid = 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
42
        break;
Open commit View diff
42 break;
same change 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
      }
Open commit View diff
43 }
same change 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
    if (regex_valid) {
Open commit View diff
45 if (regex_valid) {
same change 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
      mailcow_alert_box('Regex OK', 'success');
Open commit View diff
46 mailcow_alert_box('Regex OK', '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
47
      $('button[data-id="' + regex_map_id + '"]').attr({"disabled": false});
Open commit View diff
47 $('button[data-id="' + regex_map_id + '"]').attr({"disabled": 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
48
    }
Open commit View diff
48 }
same change 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
  $('.textarea-code').on('keyup', function() {
Open commit View diff
50 $('.textarea-code').on('keyup', 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
51
    $('.submit_rspamd_regex').attr({"disabled": true});
Open commit View diff
51 $('.submit_rspamd_regex').attr({"disabled": 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
52
  });
Open commit View diff
52 });
same change 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
  $("#show_rspamd_global_filters").click(function() {
Open commit View diff
53 $("#show_rspamd_global_filters").click(function() {
FreddleSpl0it over 1 year ago b96a5b1

[Web] Fix AJAX urls to absolute path

Full commit hash
b96a5b1efd50f95711c630e7f26e5636a6fd8850
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
54
    $.get("/inc/ajax/show_rspamd_global_filters.php");
Open commit View diff
54 $.get("/inc/ajax/show_rspamd_global_filters.php");
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
55
    $("#confirm_show_rspamd_global_filters").hide();
Open commit View diff
55 $("#confirm_show_rspamd_global_filters").hide();
same change 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
    $("#rspamd_global_filters").removeClass("d-none");
Open commit View diff
56 $("#rspamd_global_filters").removeClass("d-none");
DerLinkman 7 months ago 1fe4cd0

ui: fix global filters ui tickbox reappearing (#6966)

Full commit hash
1fe4cd03e9c657d2d5f80c30d7d364969b9cba8c
Author
DerLinkman <[email protected]>
Date
7 months ago
Selected line
57
    localStorage.setItem('rspamd_global_filters_confirmed', 'true');
Open commit View diff
57 localStorage.setItem('rspamd_global_filters_confirmed', '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
58
  });
Open commit View diff
58 });
DerLinkman 7 months ago 1fe4cd0

ui: fix global filters ui tickbox reappearing (#6966)

Full commit hash
1fe4cd03e9c657d2d5f80c30d7d364969b9cba8c
Author
DerLinkman <[email protected]>
Date
7 months ago
Selected line
59
  
Open commit View diff
59
same change 1fe4cd0

ui: fix global filters ui tickbox reappearing (#6966)

Full commit hash
1fe4cd03e9c657d2d5f80c30d7d364969b9cba8c
Author
DerLinkman <[email protected]>
Date
7 months ago
Selected line
60
  $(document).ready(function() {
Open commit View diff
60 $(document).ready(function() {
same change 1fe4cd0

ui: fix global filters ui tickbox reappearing (#6966)

Full commit hash
1fe4cd03e9c657d2d5f80c30d7d364969b9cba8c
Author
DerLinkman <[email protected]>
Date
7 months ago
Selected line
61
    if (localStorage.getItem('rspamd_global_filters_confirmed') === 'true') {
Open commit View diff
61 if (localStorage.getItem('rspamd_global_filters_confirmed') === 'true') {
same change 1fe4cd0

ui: fix global filters ui tickbox reappearing (#6966)

Full commit hash
1fe4cd03e9c657d2d5f80c30d7d364969b9cba8c
Author
DerLinkman <[email protected]>
Date
7 months ago
Selected line
62
      $("#confirm_show_rspamd_global_filters").hide();
Open commit View diff
62 $("#confirm_show_rspamd_global_filters").hide();
same change 1fe4cd0

ui: fix global filters ui tickbox reappearing (#6966)

Full commit hash
1fe4cd03e9c657d2d5f80c30d7d364969b9cba8c
Author
DerLinkman <[email protected]>
Date
7 months ago
Selected line
63
      $("#rspamd_global_filters").removeClass("d-none");
Open commit View diff
63 $("#rspamd_global_filters").removeClass("d-none");
same change 1fe4cd0

ui: fix global filters ui tickbox reappearing (#6966)

Full commit hash
1fe4cd03e9c657d2d5f80c30d7d364969b9cba8c
Author
DerLinkman <[email protected]>
Date
7 months ago
Selected line
64
    }
Open commit View diff
64 }
same change 1fe4cd0

ui: fix global filters ui tickbox reappearing (#6966)

Full commit hash
1fe4cd03e9c657d2d5f80c30d7d364969b9cba8c
Author
DerLinkman <[email protected]>
Date
7 months ago
Selected line
65
  });
Open commit View diff
65 });
same change 1fe4cd0

ui: fix global filters ui tickbox reappearing (#6966)

Full commit hash
1fe4cd03e9c657d2d5f80c30d7d364969b9cba8c
Author
DerLinkman <[email protected]>
Date
7 months ago
Selected line
66
  
Open commit View diff
66
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
67
  $("#super_delete").click(function() { return confirm(lang.queue_ays); });
Open commit View diff
67 $("#super_delete").click(function() { return confirm(lang.queue_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
68
Open commit View diff
68
same change 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
  $(".refresh_table").on('click', function(e) {
Open commit View diff
69 $(".refresh_table").on('click', 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
70
    e.preventDefault();
Open commit View diff
70 e.preventDefault();
same change 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
    var table_name = $(this).data('table');
Open commit View diff
71 var table_name = $(this).data('table');
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
72
    $('#' + table_name).DataTable().ajax.reload();
Open commit View diff
72 $('#' + table_name).DataTable().ajax.reload();
same change 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
  });
Open commit View diff
73 });
same change 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
  function draw_domain_admins() {
Open commit View diff
74 function draw_domain_admins() {
same change 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
    // just recalc width if instance already exists
Open commit View diff
75 // 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
76
    if ($.fn.DataTable.isDataTable('#domainadminstable') ) {
Open commit View diff
76 if ($.fn.DataTable.isDataTable('#domainadminstable') ) {
same change 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
      $('#domainadminstable').DataTable().columns.adjust().responsive.recalc();
Open commit View diff
77 $('#domainadminstable').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
78
      return;
Open commit View diff
78 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
79
    }
Open commit View diff
79 }
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
80
Open commit View diff
80
same change 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
    $('#domainadminstable').DataTable({
Open commit View diff
81 $('#domainadminstable').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
82
      responsive: true,
Open commit View diff
82 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
83
      processing: true,
Open commit View diff
83 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
84
      serverSide: false,
Open commit View diff
84 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
85
      stateSave: true,
Open commit View diff
85 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
86
      pageLength: pagination_size,
Open commit View diff
86 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
87
      dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
Open commit View diff
87 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
88
           "tr" +
Open commit View diff
88 "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
89
           "<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Open commit View diff
89 "<'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
90
      language: lang_datatables,
Open commit View diff
90 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
91
      ajax: {
Open commit View diff
91 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
92
        type: "GET",
Open commit View diff
92 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
93
        url: "/api/v1/get/domain-admin/all",
Open commit View diff
93 url: "/api/v1/get/domain-admin/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
94
        dataSrc: function(data){
Open commit View diff
94 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
95
          return process_table_data(data, 'domainadminstable');
Open commit View diff
95 return process_table_data(data, 'domainadminstable');
same change 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
        }
Open commit View diff
96 }
same change 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
      },
Open commit View diff
97 },
same change 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
      columns: [
Open commit View diff
98 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
99
        {
Open commit View diff
99 {
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
100
          // placeholder, so checkbox will not block child row toggle
Open commit View diff
100 // 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
101
          title: '',
Open commit View diff
101 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
102
          data: null,
Open commit View diff
102 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
103
          searchable: false,
Open commit View diff
103 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
104
          orderable: false,
Open commit View diff
104 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
105
          defaultContent: ''
Open commit View diff
105 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
106
        },
Open commit View diff
106 },
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
107
        {
Open commit View diff
107 {
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
108
          title: '',
Open commit View diff
108 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
109
          data: 'chkbox',
Open commit View diff
109 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
110
          searchable: false,
Open commit View diff
110 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
111
          orderable: false,
Open commit View diff
111 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
112
          defaultContent: ''
Open commit View diff
112 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
113
        },
Open commit View diff
113 },
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
114
        {
Open commit View diff
114 {
same change 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
          title: lang.username,
Open commit View diff
115 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
116
          data: 'username',
Open commit View diff
116 data: '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
117
          defaultContent: ''
Open commit View diff
117 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
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
          title: lang.admin_domains,
Open commit View diff
120 title: lang.admin_domains,
same change 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
          data: 'selected_domains',
Open commit View diff
121 data: 'selected_domains',
same change 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
          defaultContent: '',
Open commit View diff
122 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
123
        },
Open commit View diff
123 },
same change 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
        {
Open commit View diff
124 {
same change 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
          title: "TFA",
Open commit View diff
125 title: "TFA",
same change 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
          data: 'tfa_active',
Open commit View diff
126 data: 'tfa_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
127
          defaultContent: '',
Open commit View diff
127 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
128
            render: function (data, type) {
Open commit View diff
128 render: function (data, type) {
goodygh over 3 years ago d9dfe15

Fix sorting for active and tla on domain-admins

Full commit hash
d9dfe15253ccadfd2df4ba388507ee090d56c035
Author
goodygh <[email protected]>
Date
over 3 years ago
Selected line
129
            if(data == 1) return '<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>';
Open commit View diff
129 if(data == 1) return '<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>';
same change d9dfe15

Fix sorting for active and tla on domain-admins

Full commit hash
d9dfe15253ccadfd2df4ba388507ee090d56c035
Author
goodygh <[email protected]>
Date
over 3 years ago
Selected line
130
            else return '<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
Open commit View diff
130 else return '<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
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
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
          title: lang.active,
Open commit View diff
134 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
135
          data: 'active',
Open commit View diff
135 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
136
          defaultContent: '',
Open commit View diff
136 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
137
          render: function (data, type) {
Open commit View diff
137 render: function (data, type) {
goodygh over 3 years ago d9dfe15

Fix sorting for active and tla on domain-admins

Full commit hash
d9dfe15253ccadfd2df4ba388507ee090d56c035
Author
goodygh <[email protected]>
Date
over 3 years ago
Selected line
138
            if(data == 1) return '<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>';
Open commit View diff
138 if(data == 1) return '<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>';
same change d9dfe15

Fix sorting for active and tla on domain-admins

Full commit hash
d9dfe15253ccadfd2df4ba388507ee090d56c035
Author
goodygh <[email protected]>
Date
over 3 years ago
Selected line
139
            else return '<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
Open commit View diff
139 else return '<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
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
140
          }
Open commit View diff
140 }
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
141
        },
Open commit View diff
141 },
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
142
        {
Open commit View diff
142 {
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
143
          title: lang.action,
Open commit View diff
143 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
144
          data: 'action',
Open commit View diff
144 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
145
          className: 'dt-sm-head-hidden dt-text-right',
Open commit View diff
145 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
146
          defaultContent: ''
Open commit View diff
146 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
147
        },
Open commit View diff
147 },
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
148
      ],
Open commit View diff
148 ],
same change 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
      initComplete: function(settings, json){
Open commit View diff
149 initComplete: function(settings, 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
150
      }
Open commit View diff
150 }
same change 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
    });
Open commit View diff
151 });
same change 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
  }
Open commit View diff
152 }
same change 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
  function draw_oauth2_clients() {
Open commit View diff
153 function draw_oauth2_clients() {
same change 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
    // just recalc width if instance already exists
Open commit View diff
154 // 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
155
    if ($.fn.DataTable.isDataTable('#oauth2clientstable') ) {
Open commit View diff
155 if ($.fn.DataTable.isDataTable('#oauth2clientstable') ) {
same change 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
      $('#oauth2clientstable').DataTable().columns.adjust().responsive.recalc();
Open commit View diff
156 $('#oauth2clientstable').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
157
      return;
Open commit View diff
157 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
158
    }
Open commit View diff
158 }
same change 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
Open commit View diff
159
same change 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
    $('#oauth2clientstable').DataTable({
Open commit View diff
160 $('#oauth2clientstable').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
161
      responsive: true,
Open commit View diff
161 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
162
      processing: true,
Open commit View diff
162 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
163
      serverSide: false,
Open commit View diff
163 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
164
      stateSave: true,
Open commit View diff
164 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
165
      pageLength: pagination_size,
Open commit View diff
165 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
166
      dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
Open commit View diff
166 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
167
           "tr" +
Open commit View diff
167 "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
168
           "<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Open commit View diff
168 "<'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
169
      language: lang_datatables,
Open commit View diff
169 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
170
      ajax: {
Open commit View diff
170 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
171
        type: "GET",
Open commit View diff
171 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
172
        url: "/api/v1/get/oauth2-client/all",
Open commit View diff
172 url: "/api/v1/get/oauth2-client/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
173
        dataSrc: function(data){
Open commit View diff
173 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
174
          return process_table_data(data, 'oauth2clientstable');
Open commit View diff
174 return process_table_data(data, 'oauth2clientstable');
same change 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
        }
Open commit View diff
175 }
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
176
      },
Open commit View diff
176 },
same change 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
      columns: [
Open commit View diff
177 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
178
        {
Open commit View diff
178 {
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
179
          // placeholder, so checkbox will not block child row toggle
Open commit View diff
179 // 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
180
          title: '',
Open commit View diff
180 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
181
          data: null,
Open commit View diff
181 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
182
          searchable: false,
Open commit View diff
182 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
183
          orderable: false,
Open commit View diff
183 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
184
          defaultContent: ''
Open commit View diff
184 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
185
        },
Open commit View diff
185 },
same change 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
          title: '',
Open commit View diff
187 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
188
          data: 'chkbox',
Open commit View diff
188 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
189
          searchable: false,
Open commit View diff
189 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
190
          orderable: false,
Open commit View diff
190 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
191
          defaultContent: ''
Open commit View diff
191 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
192
        },
Open commit View diff
192 },
same change 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
          title: 'ID',
Open commit View diff
194 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
195
          data: 'id',
Open commit View diff
195 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
196
          defaultContent: ''
Open commit View diff
196 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
197
        },
Open commit View diff
197 },
same change 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
        {
Open commit View diff
198 {
same change 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
          title: lang.oauth2_client_id,
Open commit View diff
199 title: lang.oauth2_client_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
200
          data: 'client_id',
Open commit View diff
200 data: 'client_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
201
          defaultContent: ''
Open commit View diff
201 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
202
        },
Open commit View diff
202 },
same change 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
        {
Open commit View diff
203 {
same change 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
          title: lang.oauth2_client_secret,
Open commit View diff
204 title: lang.oauth2_client_secret,
same change 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
          data: 'client_secret',
Open commit View diff
205 data: 'client_secret',
same change 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.oauth2_redirect_uri,
Open commit View diff
209 title: lang.oauth2_redirect_uri,
same change 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: 'redirect_uri',
Open commit View diff
210 data: 'redirect_uri',
same change 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 },
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
213
        {
Open commit View diff
213 {
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
214
          title: lang.action,
Open commit View diff
214 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
215
          data: 'action',
Open commit View diff
215 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
216
          className: 'dt-sm-head-hidden dt-text-right',
Open commit View diff
216 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
217
          defaultContent: ''
Open commit View diff
217 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
218
        },
Open commit View diff
218 },
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
219
      ]
Open commit View diff
219 ]
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
220
    });
Open commit View diff
220 });
same change 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
  function draw_admins() {
Open commit View diff
222 function draw_admins() {
same change 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
    // just recalc width if instance already exists
Open commit View diff
223 // 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
224
    if ($.fn.DataTable.isDataTable('#adminstable') ) {
Open commit View diff
224 if ($.fn.DataTable.isDataTable('#adminstable') ) {
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
225
      $('#adminstable').DataTable().columns.adjust().responsive.recalc();
Open commit View diff
225 $('#adminstable').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
226
      return;
Open commit View diff
226 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
227
    }
Open commit View diff
227 }
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
228
Open commit View diff
228
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
229
    $('#adminstable').DataTable({
Open commit View diff
229 $('#adminstable').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
230
      responsive: true,
Open commit View diff
230 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
231
      processing: true,
Open commit View diff
231 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
232
      serverSide: false,
Open commit View diff
232 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
233
      stateSave: true,
Open commit View diff
233 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
234
      pageLength: pagination_size,
Open commit View diff
234 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
235
      dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
Open commit View diff
235 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
236
           "tr" +
Open commit View diff
236 "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
237
           "<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Open commit View diff
237 "<'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
238
      language: lang_datatables,
Open commit View diff
238 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
239
      ajax: {
Open commit View diff
239 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
240
        type: "GET",
Open commit View diff
240 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
241
        url: "/api/v1/get/admin/all",
Open commit View diff
241 url: "/api/v1/get/admin/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
242
        dataSrc: function(data){
Open commit View diff
242 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
243
          return process_table_data(data, 'adminstable');
Open commit View diff
243 return process_table_data(data, 'adminstable');
same change 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
        }
Open commit View diff
244 }
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
245
      },
Open commit View diff
245 },
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
246
      columns: [
Open commit View diff
246 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
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
          // placeholder, so checkbox will not block child row toggle
Open commit View diff
248 // 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
249
          title: '',
Open commit View diff
249 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
250
          data: null,
Open commit View diff
250 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
251
          searchable: false,
Open commit View diff
251 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
252
          orderable: false,
Open commit View diff
252 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
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
          title: '',
Open commit View diff
256 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
257
          data: 'chkbox',
Open commit View diff
257 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
258
          searchable: false,
Open commit View diff
258 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
259
          orderable: false,
Open commit View diff
259 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
260
          defaultContent: ''
Open commit View diff
260 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
261
        },
Open commit View diff
261 },
same change 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
        {
Open commit View diff
262 {
same change 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
          title: lang.username,
Open commit View diff
263 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
264
          data: 'username',
Open commit View diff
264 data: '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
265
          defaultContent: ''
Open commit View diff
265 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
266
        },
Open commit View diff
266 },
same change 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
        {
Open commit View diff
267 {
same change 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
          title: "TFA",
Open commit View diff
268 title: "TFA",
same change 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
          data: 'tfa_active',
Open commit View diff
269 data: 'tfa_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
270
          defaultContent: '',
Open commit View diff
270 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
271
          render: function (data, type) {
Open commit View diff
271 render: function (data, type) {
goodygh over 3 years ago 7bfef57

Fix sorting for active and tla on admins

Full commit hash
7bfef57894df79731f3c3c530a924ebfc3d64516
Author
goodygh <[email protected]>
Date
over 3 years ago
Selected line
272
            if(data == 1) return '<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>';
Open commit View diff
272 if(data == 1) return '<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>';
same change 7bfef57

Fix sorting for active and tla on admins

Full commit hash
7bfef57894df79731f3c3c530a924ebfc3d64516
Author
goodygh <[email protected]>
Date
over 3 years ago
Selected line
273
            else return '<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
Open commit View diff
273 else return '<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
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
274
          }
Open commit View diff
274 }
same change 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
        },
Open commit View diff
275 },
same change 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
        {
Open commit View diff
276 {
same change 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
          title: lang.active,
Open commit View diff
277 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
278
          data: 'active',
Open commit View diff
278 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
279
          defaultContent: '',
Open commit View diff
279 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
280
          render: function (data, type) {
Open commit View diff
280 render: function (data, type) {
goodygh over 3 years ago 7bfef57

Fix sorting for active and tla on admins

Full commit hash
7bfef57894df79731f3c3c530a924ebfc3d64516
Author
goodygh <[email protected]>
Date
over 3 years ago
Selected line
281
            if(data == 1) return '<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>';
Open commit View diff
281 if(data == 1) return '<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>';
same change 7bfef57

Fix sorting for active and tla on admins

Full commit hash
7bfef57894df79731f3c3c530a924ebfc3d64516
Author
goodygh <[email protected]>
Date
over 3 years ago
Selected line
282
            else return '<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
Open commit View diff
282 else return '<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
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
283
          }
Open commit View diff
283 }
same change 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
        },
Open commit View diff
284 },
same change 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
        {
Open commit View diff
285 {
same change 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
          title: lang.action,
Open commit View diff
286 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
287
          data: 'action',
Open commit View diff
287 data: '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
288
          defaultContent: '',
Open commit View diff
288 defaultContent: '',
FreddleSpl0it over 3 years ago 72e8180

[Web] datatable adjustment

Full commit hash
72e8180c6be0f8ae9444e4ae10129ffa830c0c9b
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
289
          className: 'dt-sm-head-hidden dt-text-right'
Open commit View diff
289 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
290
        },
Open commit View diff
290 },
same change 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
      ]
Open commit View diff
291 ]
same change 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
    });
Open commit View diff
292 });
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
293
  }
Open commit View diff
293 }
same change 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
  function draw_fwd_hosts() {
Open commit View diff
294 function draw_fwd_hosts() {
same change 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
    // just recalc width if instance already exists
Open commit View diff
295 // 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
296
    if ($.fn.DataTable.isDataTable('#forwardinghoststable') ) {
Open commit View diff
296 if ($.fn.DataTable.isDataTable('#forwardinghoststable') ) {
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
297
      $('#forwardinghoststable').DataTable().columns.adjust().responsive.recalc();
Open commit View diff
297 $('#forwardinghoststable').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
298
      return;
Open commit View diff
298 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
299
    }
Open commit View diff
299 }
same change 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
Open commit View diff
300
same change 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
    $('#forwardinghoststable').DataTable({
Open commit View diff
301 $('#forwardinghoststable').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
302
      responsive: true,
Open commit View diff
302 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
303
      processing: true,
Open commit View diff
303 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
304
      serverSide: false,
Open commit View diff
304 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
305
      stateSave: true,
Open commit View diff
305 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
306
      pageLength: pagination_size,
Open commit View diff
306 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
307
      dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
Open commit View diff
307 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
308
           "tr" +
Open commit View diff
308 "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
309
           "<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Open commit View diff
309 "<'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
310
      language: lang_datatables,
Open commit View diff
310 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
311
      ajax: {
Open commit View diff
311 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
312
        type: "GET",
Open commit View diff
312 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
313
        url: "/api/v1/get/fwdhost/all",
Open commit View diff
313 url: "/api/v1/get/fwdhost/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
314
        dataSrc: function(data){
Open commit View diff
314 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
315
          return process_table_data(data, 'forwardinghoststable');
Open commit View diff
315 return process_table_data(data, 'forwardinghoststable');
same change 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
        }
Open commit View diff
316 }
same change 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
      columns: [
Open commit View diff
318 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
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
          // placeholder, so checkbox will not block child row toggle
Open commit View diff
320 // 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
321
          title: '',
Open commit View diff
321 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
322
          data: null,
Open commit View diff
322 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
323
          searchable: false,
Open commit View diff
323 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
324
          orderable: false,
Open commit View diff
324 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
325
          defaultContent: ''
Open commit View diff
325 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
326
        },
Open commit View diff
326 },
same change 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
        {
Open commit View diff
327 {
same change 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
          title: '',
Open commit View diff
328 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
329
          data: 'chkbox',
Open commit View diff
329 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
330
          searchable: false,
Open commit View diff
330 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
331
          orderable: false,
Open commit View diff
331 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
332
          defaultContent: ''
Open commit View diff
332 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
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: lang.host,
Open commit View diff
335 title: lang.host,
same change 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: 'host',
Open commit View diff
336 data: 'host',
same change 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
          defaultContent: ''
Open commit View diff
337 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
338
        },
Open commit View diff
338 },
same change 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
        {
Open commit View diff
339 {
same change 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
          title: lang.source,
Open commit View diff
340 title: lang.source,
same change 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
          data: 'source',
Open commit View diff
341 data: 'source',
same change 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
          defaultContent: ''
Open commit View diff
342 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
343
        },
Open commit View diff
343 },
same change 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
        {
Open commit View diff
344 {
same change 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
          title: lang.spamfilter,
Open commit View diff
345 title: lang.spamfilter,
same change 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
          data: 'keep_spam',
Open commit View diff
346 data: 'keep_spam',
same change 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
          defaultContent: '',
Open commit View diff
347 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
348
          render: function(data, type){
Open commit View diff
348 render: function(data, type){
goodygh over 3 years ago 99739ea

Fix sorting for active fowrardinghoststable

Full commit hash
99739eada05b3304f727c6ee7148187a3161c301
Author
goodygh <[email protected]>
Date
over 3 years ago
Selected line
349
            return 'yes'==data?'<i class="bi bi-x-lg"><span class="sorting-value">yes</span></i>':'no'==data&&'<i class="bi bi-check-lg"><span class="sorting-value">no</span></i>';
Open commit View diff
349 return 'yes'==data?'<i class="bi bi-x-lg"><span class="sorting-value">yes</span></i>':'no'==data&&'<i class="bi bi-check-lg"><span class="sorting-value">no</span></i>';
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
350
          }
Open commit View diff
350 }
same change 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
        },
Open commit View diff
351 },
same change 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
          title: lang.action,
Open commit View diff
353 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
354
          data: 'action',
Open commit View diff
354 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
355
          className: 'dt-sm-head-hidden dt-text-right',
Open commit View diff
355 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
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
        },
Open commit View diff
357 },
same change 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
  }
Open commit View diff
360 }
same change 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
  function draw_relayhosts() {
Open commit View diff
361 function draw_relayhosts() {
same change 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
    // just recalc width if instance already exists
Open commit View diff
362 // 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
363
    if ($.fn.DataTable.isDataTable('#relayhoststable') ) {
Open commit View diff
363 if ($.fn.DataTable.isDataTable('#relayhoststable') ) {
same change 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
      $('#relayhoststable').DataTable().columns.adjust().responsive.recalc();
Open commit View diff
364 $('#relayhoststable').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
365
      return;
Open commit View diff
365 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
366
    }
Open commit View diff
366 }
same change 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
Open commit View diff
367
same change 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
    $('#relayhoststable').DataTable({
Open commit View diff
368 $('#relayhoststable').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
369
      responsive: true,
Open commit View diff
369 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
370
      processing: true,
Open commit View diff
370 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
371
      serverSide: false,
Open commit View diff
371 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
372
      stateSave: true,
Open commit View diff
372 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
373
      pageLength: pagination_size,
Open commit View diff
373 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
374
      dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
Open commit View diff
374 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
375
           "tr" +
Open commit View diff
375 "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
376
           "<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Open commit View diff
376 "<'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
377
      language: lang_datatables,
Open commit View diff
377 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
378
      ajax: {
Open commit View diff
378 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
379
        type: "GET",
Open commit View diff
379 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
380
        url: "/api/v1/get/relayhost/all",
Open commit View diff
380 url: "/api/v1/get/relayhost/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
381
        dataSrc: function(data){
Open commit View diff
381 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
382
          return process_table_data(data, 'relayhoststable');
Open commit View diff
382 return process_table_data(data, 'relayhoststable');
same change 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
        }
Open commit View diff
383 }
same change 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
      },
Open commit View diff
384 },
same change 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
      columns: [
Open commit View diff
385 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
386
        {
Open commit View diff
386 {
same change 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
          // placeholder, so checkbox will not block child row toggle
Open commit View diff
387 // 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
388
          title: '',
Open commit View diff
388 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
389
          data: null,
Open commit View diff
389 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
390
          searchable: false,
Open commit View diff
390 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
391
          orderable: false,
Open commit View diff
391 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
392
          defaultContent: ''
Open commit View diff
392 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
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
        {
Open commit View diff
394 {
same change 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
          title: '',
Open commit View diff
395 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
396
          data: 'chkbox',
Open commit View diff
396 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
397
          searchable: false,
Open commit View diff
397 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
398
          orderable: false,
Open commit View diff
398 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
399
          defaultContent: ''
Open commit View diff
399 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
400
        },
Open commit View diff
400 },
same change 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
        {
Open commit View diff
401 {
same change 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
          title: 'ID',
Open commit View diff
402 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
403
          data: 'id',
Open commit View diff
403 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
404
          defaultContent: ''
Open commit View diff
404 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
405
        },
Open commit View diff
405 },
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
406
        {
Open commit View diff
406 {
same change 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
          title: lang.host,
Open commit View diff
407 title: lang.host,
same change 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
          data: 'hostname',
Open commit View diff
408 data: 'hostname',
FreddleSpl0it about 2 years ago efb2572

[Web] escapeHtml in relayhosts table

Full commit hash
efb2572f0fa57628ad98a76a4ae884a10cac0a1a
Author
FreddleSpl0it <[email protected]>
Date
about 2 years ago
Selected line
409
          defaultContent: '',
Open commit View diff
409 defaultContent: '',
same change efb2572

[Web] escapeHtml in relayhosts table

Full commit hash
efb2572f0fa57628ad98a76a4ae884a10cac0a1a
Author
FreddleSpl0it <[email protected]>
Date
about 2 years ago
Selected line
410
          render: function (data, type) {
Open commit View diff
410 render: function (data, type) {
same change efb2572

[Web] escapeHtml in relayhosts table

Full commit hash
efb2572f0fa57628ad98a76a4ae884a10cac0a1a
Author
FreddleSpl0it <[email protected]>
Date
about 2 years ago
Selected line
411
            return escapeHtml(data);
Open commit View diff
411 return escapeHtml(data);
same change efb2572

[Web] escapeHtml in relayhosts table

Full commit hash
efb2572f0fa57628ad98a76a4ae884a10cac0a1a
Author
FreddleSpl0it <[email protected]>
Date
about 2 years ago
Selected line
412
          }
Open commit View diff
412 }
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
413
        },
Open commit View diff
413 },
same change 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
        {
Open commit View diff
414 {
same change 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
          title: lang.username,
Open commit View diff
415 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
416
          data: 'username',
Open commit View diff
416 data: '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
417
          defaultContent: ''
Open commit View diff
417 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
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
          title: lang.in_use_by,
Open commit View diff
420 title: lang.in_use_by,
same change 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
          data: 'in_use_by',
Open commit View diff
421 data: 'in_use_by',
same change 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
          defaultContent: ''
Open commit View diff
422 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
423
        },
Open commit View diff
423 },
same change 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
        {
Open commit View diff
424 {
same change 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
          title: lang.active,
Open commit View diff
425 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
426
          data: 'active',
Open commit View diff
426 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
427
          defaultContent: '',
Open commit View diff
427 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
428
          render: function (data, type) {
Open commit View diff
428 render: function (data, type) {
goodygh over 3 years ago 3510d56

Fix sorting for active relayhost

Full commit hash
3510d5617d8f82d4dcf785aa71e78d7a8e949d2a
Author
goodygh <[email protected]>
Date
over 3 years ago
Selected line
429
            if(data == 1) return '<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>';
Open commit View diff
429 if(data == 1) return '<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>';
same change 3510d56

Fix sorting for active relayhost

Full commit hash
3510d5617d8f82d4dcf785aa71e78d7a8e949d2a
Author
goodygh <[email protected]>
Date
over 3 years ago
Selected line
430
            else return '<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
Open commit View diff
430 else return '<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
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
431
          }
Open commit View diff
431 }
same change 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
        },
Open commit View diff
432 },
same change 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
        {
Open commit View diff
433 {
same change 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
          title: lang.action,
Open commit View diff
434 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
435
          data: 'action',
Open commit View diff
435 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
436
          className: 'dt-sm-head-hidden dt-text-right',
Open commit View diff
436 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
437
          defaultContent: ''
Open commit View diff
437 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
438
        },
Open commit View diff
438 },
same change 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
      ]
Open commit View diff
439 ]
same change 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
    });
Open commit View diff
440 });
same change 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
  }
Open commit View diff
441 }
same change 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
  function draw_transport_maps() {
Open commit View diff
442 function draw_transport_maps() {
same change 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
    // just recalc width if instance already exists
Open commit View diff
443 // 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
444
    if ($.fn.DataTable.isDataTable('#transportstable') ) {
Open commit View diff
444 if ($.fn.DataTable.isDataTable('#transportstable') ) {
same change 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
      $('#transportstable').DataTable().columns.adjust().responsive.recalc();
Open commit View diff
445 $('#transportstable').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
446
      return;
Open commit View diff
446 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
447
    }
Open commit View diff
447 }
same change 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
Open commit View diff
448
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
449
    $('#transportstable').DataTable({
Open commit View diff
449 $('#transportstable').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
450
      responsive: true,
Open commit View diff
450 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
451
      processing: true,
Open commit View diff
451 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
452
      serverSide: false,
Open commit View diff
452 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
453
      stateSave: true,
Open commit View diff
453 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
454
      pageLength: pagination_size,
Open commit View diff
454 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
455
      dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
Open commit View diff
455 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
456
           "tr" +
Open commit View diff
456 "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
457
           "<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
Open commit View diff
457 "<'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
458
      language: lang_datatables,
Open commit View diff
458 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
459
      ajax: {
Open commit View diff
459 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
460
        type: "GET",
Open commit View diff
460 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
461
        url: "/api/v1/get/transport/all",
Open commit View diff
461 url: "/api/v1/get/transport/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
462
        dataSrc: function(data){
Open commit View diff
462 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
463
          return process_table_data(data, 'transportstable');
Open commit View diff
463 return process_table_data(data, 'transportstable');
same change 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
        }
Open commit View diff
464 }
same change 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
      },
Open commit View diff
465 },
same change 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
      columns: [
Open commit View diff
466 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
467
        {
Open commit View diff
467 {
same change 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
          // placeholder, so checkbox will not block child row toggle
Open commit View diff
468 // 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
469
          title: '',
Open commit View diff
469 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
470
          data: null,
Open commit View diff
470 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
471
          searchable: false,
Open commit View diff
471 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
472
          orderable: false,
Open commit View diff
472 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
473
          defaultContent: ''
Open commit View diff
473 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
474
        },
Open commit View diff
474 },
same change 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
          title: '',
Open commit View diff
476 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
477
          data: 'chkbox',
Open commit View diff
477 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
478
          searchable: false,
Open commit View diff
478 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
479
          orderable: false,
Open commit View diff
479 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
480
          defaultContent: ''
Open commit View diff
480 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
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
        {
Open commit View diff
482 {
same change 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
          title: 'ID',
Open commit View diff
483 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
484
          data: 'id',
Open commit View diff
484 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
485
          defaultContent: ''
Open commit View diff
485 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
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
        {
Open commit View diff
487 {
same change 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
          title: lang.destination,
Open commit View diff
488 title: lang.destination,
same change 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
          data: 'destination',
Open commit View diff
489 data: 'destination',
same change 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
          defaultContent: ''
Open commit View diff
490 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
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
        {
Open commit View diff
492 {
same change 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
          title: lang.nexthop,
Open commit View diff
493 title: lang.nexthop,
same change 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
          data: 'nexthop',
Open commit View diff
494 data: 'nexthop',
same change 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
          defaultContent: ''
Open commit View diff
495 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
496
        },
Open commit View diff
496 },
same change 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
          title: lang.username,
Open commit View diff
498 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
499
          data: 'username',
Open commit View diff
499 data: '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
500
          defaultContent: ''
Open commit View diff
500 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
501
        },
Open commit View diff
501 },
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
502
        {
Open commit View diff
502 {
same change 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
          title: lang.active,
Open commit View diff
503 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
504
          data: 'active',
Open commit View diff
504 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
505
          defaultContent: '',
Open commit View diff
505 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
506
          render: function (data, type) {
Open commit View diff
506 render: function (data, type) {
goodygh over 3 years ago 236d627

Fix sorting for active transport map

Full commit hash
236d627fbd6eef3e7559d77b4329ee6db6a02bde
Author
goodygh <[email protected]>
Date
over 3 years ago
Selected line
507
            if(data == 1) return '<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>';
Open commit View diff
507 if(data == 1) return '<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>';
same change 236d627

Fix sorting for active transport map

Full commit hash
236d627fbd6eef3e7559d77b4329ee6db6a02bde
Author
goodygh <[email protected]>
Date
over 3 years ago
Selected line
508
            else return '<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
Open commit View diff
508 else return '<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
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
509
          }
Open commit View diff
509 }
same change 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
        },
Open commit View diff
510 },
same change 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
        {
Open commit View diff
511 {
same change 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
          title: lang.action,
Open commit View diff
512 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
513
          data: 'action',
Open commit View diff
513 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
514
          className: 'dt-sm-head-hidden dt-text-right',
Open commit View diff
514 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
515
          defaultContent: ''
Open commit View diff
515 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
516
        },
Open commit View diff
516 },
same change 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
      ]
Open commit View diff
517 ]
same change 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
    });
Open commit View diff
518 });
same change 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
  }
Open commit View diff
519 }
same change 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
Open commit View diff
520
same change 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
  function process_table_data(data, table) {
Open commit View diff
521 function process_table_data(data, table) {
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
522
    if (table == 'relayhoststable') {
Open commit View diff
522 if (table == 'relayhoststable') {
same change 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
      $.each(data, function (i, item) {
Open commit View diff
523 $.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
524
        item.action = '<div class="btn-group">' +
Open commit View diff
524 item.action = '<div class="btn-group">' +
Kristian Feldsam almost 3 years ago 871ae5d

[Web] mobile devices styling fixes and enhancements

Full commit hash
871ae5d7d285b216021e782ab57ab403d2dfd194
Author
Kristian Feldsam <[email protected]>
Date
almost 3 years ago
Selected line
525
          '<a href="#" data-bs-toggle="modal" data-bs-target="#testTransportModal" data-transport-id="' + encodeURI(item.id) + '" data-transport-type="sender-dependent" class="btn btn-xs btn-xs-lg btn-xs-third btn-secondary"><i class="bi bi-caret-right-fill"></i> Test</a>' +
Open commit View diff
525 '<a href="#" data-bs-toggle="modal" data-bs-target="#testTransportModal" data-transport-id="' + encodeURI(item.id) + '" data-transport-type="sender-dependent" class="btn btn-xs btn-xs-lg btn-xs-third btn-secondary"><i class="bi bi-caret-right-fill"></i> Test</a>' +
same change 871ae5d

[Web] mobile devices styling fixes and enhancements

Full commit hash
871ae5d7d285b216021e782ab57ab403d2dfd194
Author
Kristian Feldsam <[email protected]>
Date
almost 3 years ago
Selected line
526
          '<a href="/edit/relayhost/' + encodeURI(item.id) + '" class="btn btn-xs btn-xs-lg btn-xs-third btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
Open commit View diff
526 '<a href="/edit/relayhost/' + encodeURI(item.id) + '" class="btn btn-xs btn-xs-lg btn-xs-third btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
same change 871ae5d

[Web] mobile devices styling fixes and enhancements

Full commit hash
871ae5d7d285b216021e782ab57ab403d2dfd194
Author
Kristian Feldsam <[email protected]>
Date
almost 3 years ago
Selected line
527
          '<a href="#" data-action="delete_selected" data-id="single-rlyhost" data-api-url="delete/relayhost" data-item="' + encodeURI(item.id) + '" class="btn btn-xs btn-xs-lg btn-xs-third btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
Open commit View diff
527 '<a href="#" data-action="delete_selected" data-id="single-rlyhost" data-api-url="delete/relayhost" data-item="' + encodeURI(item.id) + '" class="btn btn-xs btn-xs-lg btn-xs-third btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
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
528
          '</div>';
Open commit View diff
528 '</div>';
same change 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
        if (item.used_by_mailboxes == '') { item.in_use_by = item.used_by_domains; }
Open commit View diff
529 if (item.used_by_mailboxes == '') { item.in_use_by = item.used_by_domains; }
same change 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
        else if (item.used_by_domains == '') { item.in_use_by = item.used_by_mailboxes; }
Open commit View diff
530 else if (item.used_by_domains == '') { item.in_use_by = item.used_by_mailboxes; }
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
531
        else { item.in_use_by = item.used_by_mailboxes + '<hr style="margin:5px 0px 5px 0px;">' + item.used_by_domains; }
Open commit View diff
531 else { item.in_use_by = item.used_by_mailboxes + '<hr style="margin:5px 0px 5px 0px;">' + item.used_by_domains; }
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
532
        item.chkbox = '<input type="checkbox" class="form-check-input" data-id="rlyhosts" name="multi_select" value="' + item.id + '" />';
Open commit View diff
532 item.chkbox = '<input type="checkbox" class="form-check-input" data-id="rlyhosts" 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
533
      });
Open commit View diff
533 });
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
534
    } else if (table == 'transportstable') {
Open commit View diff
534 } else if (table == 'transportstable') {
same change 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
      $.each(data, function (i, item) {
Open commit View diff
535 $.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
536
        if (item.is_mx_based) {
Open commit View diff
536 if (item.is_mx_based) {
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
537
          item.destination = '<i class="bi bi-info-circle-fill text-info mx-info" data-bs-toggle="tooltip" title="' + lang.is_mx_based + '"></i> <code>' + item.destination + '</code>';
Open commit View diff
537 item.destination = '<i class="bi bi-info-circle-fill text-info mx-info" data-bs-toggle="tooltip" title="' + lang.is_mx_based + '"></i> <code>' + item.destination + '</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
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
        if (item.username) {
Open commit View diff
539 if (item.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
540
          item.username = '<i style="color:#' + intToRGB(hashCode(item.nexthop)) + ';" class="bi bi-square-fill"></i> ' + item.username;
Open commit View diff
540 item.username = '<i style="color:#' + intToRGB(hashCode(item.nexthop)) + ';" class="bi bi-square-fill"></i> ' + item.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
541
        }
Open commit View diff
541 }
same change 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
        item.action = '<div class="btn-group">' +
Open commit View diff
542 item.action = '<div class="btn-group">' +
Kristian Feldsam almost 3 years ago 871ae5d

[Web] mobile devices styling fixes and enhancements

Full commit hash
871ae5d7d285b216021e782ab57ab403d2dfd194
Author
Kristian Feldsam <[email protected]>
Date
almost 3 years ago
Selected line
543
          '<a href="#" data-bs-toggle="modal" data-bs-target="#testTransportModal" data-transport-id="' + encodeURI(item.id) + '" data-transport-type="transport-map" class="btn btn-xs btn-xs-lg btn-xs-third btn-secondary"><i class="bi bi-caret-right-fill"></i> Test</a>' +
Open commit View diff
543 '<a href="#" data-bs-toggle="modal" data-bs-target="#testTransportModal" data-transport-id="' + encodeURI(item.id) + '" data-transport-type="transport-map" class="btn btn-xs btn-xs-lg btn-xs-third btn-secondary"><i class="bi bi-caret-right-fill"></i> Test</a>' +
same change 871ae5d

[Web] mobile devices styling fixes and enhancements

Full commit hash
871ae5d7d285b216021e782ab57ab403d2dfd194
Author
Kristian Feldsam <[email protected]>
Date
almost 3 years ago
Selected line
544
          '<a href="/edit/transport/' + encodeURI(item.id) + '" class="btn btn-xs btn-xs-lg btn-xs-third btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
Open commit View diff
544 '<a href="/edit/transport/' + encodeURI(item.id) + '" class="btn btn-xs btn-xs-lg btn-xs-third btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
same change 871ae5d

[Web] mobile devices styling fixes and enhancements

Full commit hash
871ae5d7d285b216021e782ab57ab403d2dfd194
Author
Kristian Feldsam <[email protected]>
Date
almost 3 years ago
Selected line
545
          '<a href="#" data-action="delete_selected" data-id="single-transport" data-api-url="delete/transport" data-item="' + encodeURI(item.id) + '" class="btn btn-xs btn-xs-lg btn-xs-third btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
Open commit View diff
545 '<a href="#" data-action="delete_selected" data-id="single-transport" data-api-url="delete/transport" data-item="' + encodeURI(item.id) + '" class="btn btn-xs btn-xs-lg btn-xs-third btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
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
546
          '</div>';
Open commit View diff
546 '</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
547
        item.chkbox = '<input type="checkbox" class="form-check-input" data-id="transports" name="multi_select" value="' + item.id + '" />';
Open commit View diff
547 item.chkbox = '<input type="checkbox" class="form-check-input" data-id="transports" 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
548
      });
Open commit View diff
548 });
same change 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
    } else if (table == 'queuetable') {
Open commit View diff
549 } else if (table == 'queuetable') {
same change 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
      $.each(data, function (i, item) {
Open commit View diff
550 $.each(data, function (i, item) {
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
551
        item.chkbox = '<input type="checkbox" class="form-check-input" data-id="mailqitems" name="multi_select" value="' + item.queue_id + '" />';
Open commit View diff
551 item.chkbox = '<input type="checkbox" class="form-check-input" data-id="mailqitems" name="multi_select" value="' + item.queue_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
552
        rcpts = $.map(item.recipients, function(i) {
Open commit View diff
552 rcpts = $.map(item.recipients, function(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
553
          return escapeHtml(i);
Open commit View diff
553 return escapeHtml(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
554
        });
Open commit View diff
554 });
same change 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
        item.recipients = rcpts.join('<hr style="margin:1px!important">');
Open commit View diff
555 item.recipients = rcpts.join('<hr style="margin:1px!important">');
same change 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
        item.action = '<div class="btn-group">' +
Open commit View diff
556 item.action = '<div class="btn-group">' +
Kristian Feldsam almost 3 years ago 871ae5d

[Web] mobile devices styling fixes and enhancements

Full commit hash
871ae5d7d285b216021e782ab57ab403d2dfd194
Author
Kristian Feldsam <[email protected]>
Date
almost 3 years ago
Selected line
557
          '<a href="#" data-bs-toggle="modal" data-bs-target="#showQueuedMsg" data-queue-id="' + encodeURI(item.queue_id) + '" class="btn btn-xs btn-xs-lg btn-secondary">' + lang.queue_show_message + '</a>' +
Open commit View diff
557 '<a href="#" data-bs-toggle="modal" data-bs-target="#showQueuedMsg" data-queue-id="' + encodeURI(item.queue_id) + '" class="btn btn-xs btn-xs-lg btn-secondary">' + lang.queue_show_message + '</a>' +
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
558
          '</div>';
Open commit View diff
558 '</div>';
same change 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
    } else if (table == 'forwardinghoststable') {
Open commit View diff
560 } else if (table == 'forwardinghoststable') {
same change 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
      $.each(data, function (i, item) {
Open commit View diff
561 $.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
562
        item.action = '<div class="btn-group">' +
Open commit View diff
562 item.action = '<div class="btn-group">' +
Kristian Feldsam almost 3 years ago 871ae5d

[Web] mobile devices styling fixes and enhancements

Full commit hash
871ae5d7d285b216021e782ab57ab403d2dfd194
Author
Kristian Feldsam <[email protected]>
Date
almost 3 years ago
Selected line
563
          '<a href="#" data-action="delete_selected" data-id="single-fwdhost" data-api-url="delete/fwdhost" data-item="' + encodeURI(item.host) + '" class="btn btn-xs btn-xs-lg btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
Open commit View diff
563 '<a href="#" data-action="delete_selected" data-id="single-fwdhost" data-api-url="delete/fwdhost" data-item="' + encodeURI(item.host) + '" class="btn btn-xs btn-xs-lg btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
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
564
          '</div>';
Open commit View diff
564 '</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
565
        item.chkbox = '<input type="checkbox" class="form-check-input" data-id="fwdhosts" name="multi_select" value="' + item.host + '" />';
Open commit View diff
565 item.chkbox = '<input type="checkbox" class="form-check-input" data-id="fwdhosts" name="multi_select" value="' + item.host + '" />';
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
566
      });
Open commit View diff
566 });
same change 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
    } else if (table == 'oauth2clientstable') {
Open commit View diff
567 } else if (table == 'oauth2clientstable') {
same change 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
      $.each(data, function (i, item) {
Open commit View diff
568 $.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
569
        item.action = '<div class="btn-group">' +
Open commit View diff
569 item.action = '<div class="btn-group">' +
Habetdin over 1 year ago 0d3e8dd

Update legacy admin dashboard links

Full commit hash
0d3e8dd73896dfe87a4a652f56a37a74df28bdc6
Author
Habetdin <[email protected]>
Date
over 1 year ago
Selected line
570
          '<a href="/edit/oauth2client/' + encodeURI(item.id) + '" class="btn btn-xs btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
Open commit View diff
570 '<a href="/edit/oauth2client/' + encodeURI(item.id) + '" class="btn btn-xs btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
Kristian Feldsam almost 3 years ago 871ae5d

[Web] mobile devices styling fixes and enhancements

Full commit hash
871ae5d7d285b216021e782ab57ab403d2dfd194
Author
Kristian Feldsam <[email protected]>
Date
almost 3 years ago
Selected line
571
          '<a href="#" data-action="delete_selected" data-id="single-oauth2-client" data-api-url="delete/oauth2-client" data-item="' + encodeURI(item.id) + '" class="btn btn-xs btn-xs-lg btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
Open commit View diff
571 '<a href="#" data-action="delete_selected" data-id="single-oauth2-client" data-api-url="delete/oauth2-client" data-item="' + encodeURI(item.id) + '" class="btn btn-xs btn-xs-lg btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
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
572
          '</div>';
Open commit View diff
572 '</div>';
same change 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
        item.scope = "profile";
Open commit View diff
573 item.scope = "profile";
same change 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
        item.grant_types = 'refresh_token password authorization_code';
Open commit View diff
574 item.grant_types = 'refresh_token password authorization_code';
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
575
        item.chkbox = '<input type="checkbox" class="form-check-input" data-id="oauth2_clients" name="multi_select" value="' + item.id + '" />';
Open commit View diff
575 item.chkbox = '<input type="checkbox" class="form-check-input" data-id="oauth2_clients" 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
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
    } else if (table == 'domainadminstable') {
Open commit View diff
577 } else if (table == 'domainadminstable') {
same change 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
      $.each(data, function (i, item) {
Open commit View diff
578 $.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
579
        item.selected_domains = escapeHtml(item.selected_domains);
Open commit View diff
579 item.selected_domains = escapeHtml(item.selected_domains);
same change 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
        item.selected_domains = item.selected_domains.toString().replace(/,/g, "<br>");
Open commit View diff
580 item.selected_domains = item.selected_domains.toString().replace(/,/g, "<br>");
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
581
        item.chkbox = '<input type="checkbox" class="form-check-input" data-id="domain_admins" name="multi_select" value="' + item.username + '" />';
Open commit View diff
581 item.chkbox = '<input type="checkbox" class="form-check-input" data-id="domain_admins" name="multi_select" value="' + item.username + '" />';
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
582
        item.action = '<div class="btn-group">' +
Open commit View diff
582 item.action = '<div class="btn-group">' +
Kristian Feldsam almost 3 years ago 871ae5d

[Web] mobile devices styling fixes and enhancements

Full commit hash
871ae5d7d285b216021e782ab57ab403d2dfd194
Author
Kristian Feldsam <[email protected]>
Date
almost 3 years ago
Selected line
583
          '<a href="/edit/domainadmin/' + encodeURI(item.username) + '" class="btn btn-xs btn-xs-lg btn-xs-third btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
Open commit View diff
583 '<a href="/edit/domainadmin/' + encodeURI(item.username) + '" class="btn btn-xs btn-xs-lg btn-xs-third btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
same change 871ae5d

[Web] mobile devices styling fixes and enhancements

Full commit hash
871ae5d7d285b216021e782ab57ab403d2dfd194
Author
Kristian Feldsam <[email protected]>
Date
almost 3 years ago
Selected line
584
          '<a href="#" data-action="delete_selected" data-id="single-domain-admin" data-api-url="delete/domain-admin" data-item="' + encodeURI(item.username) + '" class="btn btn-xs btn-xs-lg btn-xs-third btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
Open commit View diff
584 '<a href="#" data-action="delete_selected" data-id="single-domain-admin" data-api-url="delete/domain-admin" data-item="' + encodeURI(item.username) + '" class="btn btn-xs btn-xs-lg btn-xs-third btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
Habetdin over 1 year ago 0d3e8dd

Update legacy admin dashboard links

Full commit hash
0d3e8dd73896dfe87a4a652f56a37a74df28bdc6
Author
Habetdin <[email protected]>
Date
over 1 year ago
Selected line
585
          '<a href="/domainadmin/?duallogin=' + encodeURIComponent(item.username) + '" class="btn btn-xs btn-xs-lg btn-xs-third btn-success"><i class="bi bi-person-fill"></i> Login</a>' +
Open commit View diff
585 '<a href="/domainadmin/?duallogin=' + encodeURIComponent(item.username) + '" class="btn btn-xs btn-xs-lg btn-xs-third btn-success"><i class="bi bi-person-fill"></i> Login</a>' +
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
586
          '</div>';
Open commit View diff
586 '</div>';
same change 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
      });
Open commit View diff
587 });
same change 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
    } else if (table == 'adminstable') {
Open commit View diff
588 } else if (table == 'adminstable') {
same change 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
      $.each(data, function (i, item) {
Open commit View diff
589 $.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
590
        if (admin_username.toLowerCase() == item.username.toLowerCase()) {
Open commit View diff
590 if (admin_username.toLowerCase() == item.username.toLowerCase()) {
same change 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
          item.usr = '<i class="bi bi-person-check"></i> ' + item.username;
Open commit View diff
591 item.usr = '<i class="bi bi-person-check"></i> ' + item.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
592
        } else {
Open commit View diff
592 } 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
593
          item.usr = item.username;
Open commit View diff
593 item.usr = item.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
594
        }
Open commit View diff
594 }
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
595
        item.chkbox = '<input type="checkbox" class="form-check-input" data-id="admins" name="multi_select" value="' + item.username + '" />';
Open commit View diff
595 item.chkbox = '<input type="checkbox" class="form-check-input" data-id="admins" name="multi_select" value="' + item.username + '" />';
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
596
        item.action = '<div class="btn-group">' +
Open commit View diff
596 item.action = '<div class="btn-group">' +
Kristian Feldsam almost 3 years ago 871ae5d

[Web] mobile devices styling fixes and enhancements

Full commit hash
871ae5d7d285b216021e782ab57ab403d2dfd194
Author
Kristian Feldsam <[email protected]>
Date
almost 3 years ago
Selected line
597
          '<a href="/edit/admin/' + encodeURI(item.username) + '" class="btn btn-xs btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
Open commit View diff
597 '<a href="/edit/admin/' + encodeURI(item.username) + '" class="btn btn-xs btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
same change 871ae5d

[Web] mobile devices styling fixes and enhancements

Full commit hash
871ae5d7d285b216021e782ab57ab403d2dfd194
Author
Kristian Feldsam <[email protected]>
Date
almost 3 years ago
Selected line
598
          '<a href="#" data-action="delete_selected" data-id="single-admin" data-api-url="delete/admin" data-item="' + encodeURI(item.username) + '" class="btn btn-xs btn-xs-lg btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
Open commit View diff
598 '<a href="#" data-action="delete_selected" data-id="single-admin" data-api-url="delete/admin" data-item="' + encodeURI(item.username) + '" class="btn btn-xs btn-xs-lg btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
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
599
          '</div>';
Open commit View diff
599 '</div>';
same change 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
      });
Open commit View diff
600 });
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
601
    }
Open commit View diff
601 }
same change 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
    return data
Open commit View diff
602 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
603
  };
Open commit View diff
603 };
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
604
Open commit View diff
604
same change 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
  // detect element visibility changes
Open commit View diff
605 // 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
606
  function onVisible(element, callback) {
Open commit View diff
606 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
607
    $(document).ready(function() {
Open commit View diff
607 $(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
608
      element_object = document.querySelector(element);
Open commit View diff
608 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
609
      if (element_object === null) return;
Open commit View diff
609 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
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
      new IntersectionObserver((entries, observer) => {
Open commit View diff
611 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
612
        entries.forEach(entry => {
Open commit View diff
612 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
613
          if(entry.intersectionRatio > 0) {
Open commit View diff
613 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
614
            callback(element_object);
Open commit View diff
614 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
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
        });
Open commit View diff
616 });
same change 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
      }).observe(element_object);
Open commit View diff
617 }).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
618
    });
Open commit View diff
618 });
same change 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
  }
Open commit View diff
619 }
same change 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
  // Draw Table if tab is active
Open commit View diff
620 // Draw Table if tab is 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
621
  onVisible("[id^=adminstable]", () => draw_admins());
Open commit View diff
621 onVisible("[id^=adminstable]", () => draw_admins());
same change 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
  onVisible("[id^=domainadminstable]", () => draw_domain_admins());
Open commit View diff
622 onVisible("[id^=domainadminstable]", () => draw_domain_admins());
same change 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
  onVisible("[id^=oauth2clientstable]", () => draw_oauth2_clients());
Open commit View diff
623 onVisible("[id^=oauth2clientstable]", () => draw_oauth2_clients());
same change 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
  onVisible("[id^=forwardinghoststable]", () => draw_fwd_hosts());
Open commit View diff
624 onVisible("[id^=forwardinghoststable]", () => draw_fwd_hosts());
same change 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
  onVisible("[id^=relayhoststable]", () => draw_relayhosts());
Open commit View diff
625 onVisible("[id^=relayhoststable]", () => draw_relayhosts());
same change 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
  onVisible("[id^=transportstable]", () => draw_transport_maps());
Open commit View diff
626 onVisible("[id^=transportstable]", () => draw_transport_maps());
same change 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
Open commit View diff
627
same change 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
Open commit View diff
628
same change 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
  $('body').on('click', 'span.footable-toggle', function () {
Open commit View diff
629 $('body').on('click', 'span.footable-toggle', 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
630
    event.stopPropagation();
Open commit View diff
630 event.stopPropagation();
same change 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
  })
Open commit View diff
631 })
same change 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
Open commit View diff
632
same change 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
  // API IP check toggle
Open commit View diff
633 // API IP check 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
634
  $("#skip_ip_check_ro").click(function( event ) {
Open commit View diff
634 $("#skip_ip_check_ro").click(function( event ) {
same change 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
   $("#skip_ip_check_ro").not(this).prop('checked', false);
Open commit View diff
635 $("#skip_ip_check_ro").not(this).prop('checked', 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
636
    if ($("#skip_ip_check_ro:checked").length > 0) {
Open commit View diff
636 if ($("#skip_ip_check_ro:checked").length > 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
637
      $('#allow_from_ro').prop('disabled', true);
Open commit View diff
637 $('#allow_from_ro').prop('disabled', 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
638
    }
Open commit View diff
638 }
same change 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
    else {
Open commit View diff
639 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
640
      $("#allow_from_ro").removeAttr('disabled');
Open commit View diff
640 $("#allow_from_ro").removeAttr('disabled');
same change 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
    }
Open commit View diff
641 }
same change 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
  });
Open commit View diff
642 });
same change 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
  $("#skip_ip_check_rw").click(function( event ) {
Open commit View diff
643 $("#skip_ip_check_rw").click(function( event ) {
same change 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
   $("#skip_ip_check_rw").not(this).prop('checked', false);
Open commit View diff
644 $("#skip_ip_check_rw").not(this).prop('checked', 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
645
    if ($("#skip_ip_check_rw:checked").length > 0) {
Open commit View diff
645 if ($("#skip_ip_check_rw:checked").length > 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
646
      $('#allow_from_rw').prop('disabled', true);
Open commit View diff
646 $('#allow_from_rw').prop('disabled', 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
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
    else {
Open commit View diff
648 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
649
      $("#allow_from_rw").removeAttr('disabled');
Open commit View diff
649 $("#allow_from_rw").removeAttr('disabled');
same change 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
    }
Open commit View diff
650 }
same change 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
  });
Open commit View diff
651 });
same change 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
  // Relayhost
Open commit View diff
652 // Relayhost
same change 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
  $('#testRelayhostModal').on('show.bs.modal', function (e) {
Open commit View diff
653 $('#testRelayhostModal').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
654
    $('#test_relayhost_result').text("-");
Open commit View diff
654 $('#test_relayhost_result').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
655
    button = $(e.relatedTarget)
Open commit View diff
655 button = $(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
656
    if (button != null) {
Open commit View diff
656 if (button != 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
657
      $('#relayhost_id').val(button.data('relayhost-id'));
Open commit View diff
657 $('#relayhost_id').val(button.data('relayhost-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
658
    }
Open commit View diff
658 }
same change 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
  })
Open commit View diff
659 })
same change 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
  $('#test_relayhost').on('click', function (e) {
Open commit View diff
660 $('#test_relayhost').on('click', 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
661
    e.preventDefault();
Open commit View diff
661 e.preventDefault();
same change 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
    prev = $('#test_relayhost').text();
Open commit View diff
662 prev = $('#test_relayhost').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
663
    $(this).prop("disabled",true);
Open commit View diff
663 $(this).prop("disabled",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
664
    $(this).html('<i class="bi bi-arrow-repeat icon-spin"></i> ');
Open commit View diff
664 $(this).html('<i class="bi bi-arrow-repeat icon-spin"></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
665
    $.ajax({
Open commit View diff
665 $.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
666
      type: 'GET',
Open commit View diff
666 type: 'GET',
FreddleSpl0it over 1 year ago b96a5b1

[Web] Fix AJAX urls to absolute path

Full commit hash
b96a5b1efd50f95711c630e7f26e5636a6fd8850
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
667
      url: '/inc/ajax/relay_check.php',
Open commit View diff
667 url: '/inc/ajax/relay_check.php',
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
668
      dataType: 'text',
Open commit View diff
668 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
669
      data: $('#test_relayhost_form').serialize(),
Open commit View diff
669 data: $('#test_relayhost_form').serialize(),
same change 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
      complete: function (data) {
Open commit View diff
670 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
671
        $('#test_relayhost_result').html(data.responseText);
Open commit View diff
671 $('#test_relayhost_result').html(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
672
        $('#test_relayhost').prop("disabled",false);
Open commit View diff
672 $('#test_relayhost').prop("disabled",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
673
        $('#test_relayhost').text(prev);
Open commit View diff
673 $('#test_relayhost').text(prev);
same change 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
  // Transport
Open commit View diff
677 // Transport
same change 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
  $('#testTransportModal').on('show.bs.modal', function (e) {
Open commit View diff
678 $('#testTransportModal').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
679
    $('#test_transport_result').text("-");
Open commit View diff
679 $('#test_transport_result').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
680
    button = $(e.relatedTarget)
Open commit View diff
680 button = $(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
681
    if (button != null) {
Open commit View diff
681 if (button != 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
682
      $('#transport_id').val(button.data('transport-id'));
Open commit View diff
682 $('#transport_id').val(button.data('transport-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
683
      $('#transport_type').val(button.data('transport-type'));
Open commit View diff
683 $('#transport_type').val(button.data('transport-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
684
    }
Open commit View diff
684 }
same change 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
  })
Open commit View diff
685 })
same change 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
  $('#test_transport').on('click', function (e) {
Open commit View diff
686 $('#test_transport').on('click', 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
687
    e.preventDefault();
Open commit View diff
687 e.preventDefault();
same change 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
    prev = $('#test_transport').text();
Open commit View diff
688 prev = $('#test_transport').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
689
    $(this).prop("disabled",true);
Open commit View diff
689 $(this).prop("disabled",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
690
    $(this).html('<div class="spinner-border" role="status"><span class="visually-hidden">Loading...</span></div> ');
Open commit View diff
690 $(this).html('<div class="spinner-border" role="status"><span class="visually-hidden">Loading...</span></div> ');
same change 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
    $.ajax({
Open commit View diff
691 $.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
692
      type: 'GET',
Open commit View diff
692 type: 'GET',
FreddleSpl0it over 1 year ago ceeabde

[Web] Fix transport routing test

Full commit hash
ceeabded73c66c8022eeac69721908f3f1c90d46
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
693
      url: '/inc/ajax/transport_check.php',
Open commit View diff
693 url: '/inc/ajax/transport_check.php',
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
694
      dataType: 'text',
Open commit View diff
694 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
695
      data: $('#test_transport_form').serialize(),
Open commit View diff
695 data: $('#test_transport_form').serialize(),
same change 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
      complete: function (data) {
Open commit View diff
696 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
697
        $('#test_transport_result').html(data.responseText);
Open commit View diff
697 $('#test_transport_result').html(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
698
        $('#test_transport').prop("disabled",false);
Open commit View diff
698 $('#test_transport').prop("disabled",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
699
        $('#test_transport').text(prev);
Open commit View diff
699 $('#test_transport').text(prev);
same change 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
      }
Open commit View diff
700 }
same change 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
    });
Open commit View diff
701 });
same change 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
  })
Open commit View diff
702 })
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
703
  // DKIM private key modal
Open commit View diff
703 // DKIM private key 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
704
  $('#showDKIMprivKey').on('show.bs.modal', function (e) {
Open commit View diff
704 $('#showDKIMprivKey').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
705
    $('#priv_key_pre').text("-");
Open commit View diff
705 $('#priv_key_pre').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
706
    p_related = $(e.relatedTarget)
Open commit View diff
706 p_related = $(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
707
    if (p_related != null) {
Open commit View diff
707 if (p_related != 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
708
      var decoded_key = Base64.decode((p_related.data('priv-key')));
Open commit View diff
708 var decoded_key = Base64.decode((p_related.data('priv-key')));
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
709
      $('#priv_key_pre').text(decoded_key);
Open commit View diff
709 $('#priv_key_pre').text(decoded_key);
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
710
    }
Open commit View diff
710 }
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
711
  })
Open commit View diff
711 })
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
712
  // FIDO2 friendly name modal
Open commit View diff
712 // 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
713
  $('#fido2ChangeFn').on('show.bs.modal', function (e) {
Open commit View diff
713 $('#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
714
    rename_link = $(e.relatedTarget)
Open commit View diff
714 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
715
    if (rename_link != null) {
Open commit View diff
715 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
716
      $('#fido2_cid').val(rename_link.data('cid'));
Open commit View diff
716 $('#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
717
      $('#fido2_subject_desc').text(Base64.decode(rename_link.data('subject')));
Open commit View diff
717 $('#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
718
    }
Open commit View diff
718 }
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
719
  })
Open commit View diff
719 })
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
720
  // App links
Open commit View diff
720 // App links
FreddleSpl0it over 3 years ago 6e35574

[Web] add app hide option

Full commit hash
6e35574c721971216aa10da1ba6ace663ad4ca13
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
721
  // setup eventlistener
Open commit View diff
721 // setup eventlistener
same change 6e35574

[Web] add app hide option

Full commit hash
6e35574c721971216aa10da1ba6ace663ad4ca13
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
722
  setAppHideEvent();
Open commit View diff
722 setAppHideEvent();
FreddleSpl0it over 1 year ago 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
723
  function setAppHideEvent(){
Open commit View diff
723 function setAppHideEvent(){
FreddleSpl0it over 3 years ago 6e35574

[Web] add app hide option

Full commit hash
6e35574c721971216aa10da1ba6ace663ad4ca13
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
724
    $('.app_hide').off('change');
Open commit View diff
724 $('.app_hide').off('change');
same change 6e35574

[Web] add app hide option

Full commit hash
6e35574c721971216aa10da1ba6ace663ad4ca13
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
725
    $('.app_hide').on('change', function (e) {
Open commit View diff
725 $('.app_hide').on('change', function (e) {
same change 6e35574

[Web] add app hide option

Full commit hash
6e35574c721971216aa10da1ba6ace663ad4ca13
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
726
      var value = $(this).is(':checked') ? '1' : '0';
Open commit View diff
726 var value = $(this).is(':checked') ? '1' : '0';
same change 6e35574

[Web] add app hide option

Full commit hash
6e35574c721971216aa10da1ba6ace663ad4ca13
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
727
      $(this).parent().children(':first-child').val(value);
Open commit View diff
727 $(this).parent().children(':first-child').val(value);
same change 6e35574

[Web] add app hide option

Full commit hash
6e35574c721971216aa10da1ba6ace663ad4ca13
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
728
    })
Open commit View diff
728 })
same change 6e35574

[Web] add app hide option

Full commit hash
6e35574c721971216aa10da1ba6ace663ad4ca13
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
729
  }
Open commit View diff
729 }
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
730
  function add_table_row(table_id, type) {
Open commit View diff
730 function add_table_row(table_id, 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
731
    var row = $('<tr />');
Open commit View diff
731 var row = $('<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
732
    if (type == "app_link") {
Open commit View diff
732 if (type == "app_link") {
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
733
      cols = '<td><input class="input-sm input-xs-lg form-control" data-id="app_links" type="text" name="app" required></td>';
Open commit View diff
733 cols = '<td><input class="input-sm input-xs-lg form-control" data-id="app_links" type="text" name="app" required></td>';
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
734
      cols += '<td><input class="input-sm input-xs-lg form-control" data-id="app_links" type="text" name="href" required></td>';
Open commit View diff
734 cols += '<td><input class="input-sm input-xs-lg form-control" data-id="app_links" type="text" name="href" required></td>';
FreddleSpl0it over 3 years ago 415c1d0

[Web] add seperate link for logged in users

Full commit hash
415c1d057499a4f927d4eb4edbca467785fee6a7
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
735
      cols += '<td><input class="input-sm input-xs-lg form-control" data-id="app_links" type="text" name="user_href" required></td>';
Open commit View diff
735 cols += '<td><input class="input-sm input-xs-lg form-control" data-id="app_links" type="text" name="user_href" required></td>';
FreddleSpl0it over 3 years ago 6e35574

[Web] add app hide option

Full commit hash
6e35574c721971216aa10da1ba6ace663ad4ca13
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
736
      cols += '<td><div class="d-flex align-items-center justify-content-center" style="height: 33.5px"><input data-id="app_links" type="hidden" name="hide" value="0"><input class="form-check-input app_hide" type="checkbox" value="1"></div></td>';
Open commit View diff
736 cols += '<td><div class="d-flex align-items-center justify-content-center" style="height: 33.5px"><input data-id="app_links" type="hidden" name="hide" value="0"><input class="form-check-input app_hide" type="checkbox" value="1"></div></td>';
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
737
      cols += '<td><a href="#" role="button" class="btn btn-sm btn-xs-lg btn-secondary h-100 w-100" type="button">' + lang.remove_row + '</a></td>';
Open commit View diff
737 cols += '<td><a href="#" role="button" class="btn btn-sm btn-xs-lg btn-secondary h-100 w-100" type="button">' + lang.remove_row + '</a></td>';
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
738
    } else if (type == "f2b_regex") {
Open commit View diff
738 } else if (type == "f2b_regex") {
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
739
      cols = '<td><input style="text-align:center" class="input-sm input-xs-lg form-control" data-id="f2b_regex" type="text" value="+" disabled></td>';
Open commit View diff
739 cols = '<td><input style="text-align:center" class="input-sm input-xs-lg form-control" data-id="f2b_regex" type="text" value="+" disabled></td>';
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
740
      cols += '<td><input class="input-sm input-xs-lg form-control regex-input" data-id="f2b_regex" type="text" name="regex" required></td>';
Open commit View diff
740 cols += '<td><input class="input-sm input-xs-lg form-control regex-input" data-id="f2b_regex" type="text" name="regex" required></td>';
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
741
      cols += '<td><a href="#" role="button" class="btn btn-sm btn-xs-lg btn-secondary h-100 w-100" type="button">' + lang.remove_row + '</a></td>';
Open commit View diff
741 cols += '<td><a href="#" role="button" class="btn btn-sm btn-xs-lg btn-secondary h-100 w-100" type="button">' + lang.remove_row + '</a></td>';
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
742
    }
Open commit View diff
742 }
FreddleSpl0it over 3 years ago 6e35574

[Web] add app hide option

Full commit hash
6e35574c721971216aa10da1ba6ace663ad4ca13
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
743
Open commit View diff
743
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
744
    row.append(cols);
Open commit View diff
744 row.append(cols);
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
745
    table_id.append(row);
Open commit View diff
745 table_id.append(row);
FreddleSpl0it over 3 years ago 6e35574

[Web] add app hide option

Full commit hash
6e35574c721971216aa10da1ba6ace663ad4ca13
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
746
    if (type == "app_link")
Open commit View diff
746 if (type == "app_link")
same change 6e35574

[Web] add app hide option

Full commit hash
6e35574c721971216aa10da1ba6ace663ad4ca13
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
747
      setAppHideEvent();
Open commit View diff
747 setAppHideEvent();
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
748
  }
Open commit View diff
748 }
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
749
  $('#app_link_table').on('click', 'tr a', function (e) {
Open commit View diff
749 $('#app_link_table').on('click', 'tr a', 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
750
    e.preventDefault();
Open commit View diff
750 e.preventDefault();
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
751
    $(this).parents('tr').remove();
Open commit View diff
751 $(this).parents('tr').remove();
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
752
  });
Open commit View diff
752 });
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
753
  $('#f2b_regex_table').on('click', 'tr a', function (e) {
Open commit View diff
753 $('#f2b_regex_table').on('click', 'tr a', 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
754
    e.preventDefault();
Open commit View diff
754 e.preventDefault();
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
755
    $(this).parents('tr').remove();
Open commit View diff
755 $(this).parents('tr').remove();
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
756
  });
Open commit View diff
756 });
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
757
  $('#add_app_link_row').click(function() {
Open commit View diff
757 $('#add_app_link_row').click(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
758
    add_table_row($('#app_link_table'), "app_link");
Open commit View diff
758 add_table_row($('#app_link_table'), "app_link");
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
759
  });
Open commit View diff
759 });
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
760
  $('#add_f2b_regex_row').click(function() {
Open commit View diff
760 $('#add_f2b_regex_row').click(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
761
    add_table_row($('#f2b_regex_table'), "f2b_regex");
Open commit View diff
761 add_table_row($('#f2b_regex_table'), "f2b_regex");
same change 6ff3f3f

[Web] Set pageLength to pagination_size + repect savedState...

Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977
Author
realizelol <[email protected]>
Date
over 3 years ago
Selected line
762
  });
Open commit View diff
762 });
FreddleSpl0it over 3 years ago 6e9980b

[Web] add manage identity provider

Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
763
  // IAM test connection
Open commit View diff
763 // IAM test connection
FreddleSpl0it about 3 years ago 28679eb

[Web] add generic-oidc provider

Full commit hash
28679eb916e143c1ebf855e76f33d1812fe7ee2f
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
764
  $('.iam_test_connection').click(async function(e){
Open commit View diff
764 $('.iam_test_connection').click(async function(e){
FreddleSpl0it over 3 years ago 6e9980b

[Web] add manage identity provider

Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
765
    e.preventDefault();
Open commit View diff
765 e.preventDefault();
FreddleSpl0it about 3 years ago 28679eb

[Web] add generic-oidc provider

Full commit hash
28679eb916e143c1ebf855e76f33d1812fe7ee2f
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
766
    var data = { attr: $('form[data-id="' + $(this).data('id') + '"]').serializeObject() };
Open commit View diff
766 var data = { attr: $('form[data-id="' + $(this).data('id') + '"]').serializeObject() };
FreddleSpl0it over 1 year ago 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
767
    var res = await fetch("/api/v1/edit/identity-provider-test", {
Open commit View diff
767 var res = await fetch("/api/v1/edit/identity-provider-test", {
FreddleSpl0it over 3 years ago 3c62a7f

[Web] IAM - add delete option & fix test connection

Full commit hash
3c62a7fd9f67592371f2334e04cf7dbcfa328073
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
768
      headers: {
Open commit View diff
768 headers: {
same change 3c62a7f

[Web] IAM - add delete option & fix test connection

Full commit hash
3c62a7fd9f67592371f2334e04cf7dbcfa328073
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
769
        "Content-Type": "application/json",
Open commit View diff
769 "Content-Type": "application/json",
same change 3c62a7f

[Web] IAM - add delete option & fix test connection

Full commit hash
3c62a7fd9f67592371f2334e04cf7dbcfa328073
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
770
      },
Open commit View diff
770 },
FreddleSpl0it over 1 year ago 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
771
      method:'POST',
Open commit View diff
771 method:'POST',
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
772
      cache:'no-cache',
Open commit View diff
772 cache:'no-cache',
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
773
      body: JSON.stringify(data)
Open commit View diff
773 body: JSON.stringify(data)
FreddleSpl0it over 3 years ago 3c62a7f

[Web] IAM - add delete option & fix test connection

Full commit hash
3c62a7fd9f67592371f2334e04cf7dbcfa328073
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
774
    });
Open commit View diff
774 });
FreddleSpl0it over 3 years ago 6e9980b

[Web] add manage identity provider

Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
775
    res = await res.json();
Open commit View diff
775 res = await res.json();
same change 6e9980b

[Web] add manage identity provider

Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
776
    if (res.type === 'success'){
Open commit View diff
776 if (res.type === 'success'){
same change 6e9980b

[Web] add manage identity provider

Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
777
      return mailcow_alert_box(lang_success.iam_test_connection, 'success');
Open commit View diff
777 return mailcow_alert_box(lang_success.iam_test_connection, 'success');
same change 6e9980b

[Web] add manage identity provider

Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
778
    }
Open commit View diff
778 }
same change 6e9980b

[Web] add manage identity provider

Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
779
    return mailcow_alert_box(lang_danger.iam_test_connection, 'danger');
Open commit View diff
779 return mailcow_alert_box(lang_danger.iam_test_connection, 'danger');
same change 6e9980b

[Web] add manage identity provider

Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
780
  });
Open commit View diff
780 });
FreddleSpl0it over 3 years ago 3c62a7f

[Web] IAM - add delete option & fix test connection

Full commit hash
3c62a7fd9f67592371f2334e04cf7dbcfa328073
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
781
Open commit View diff
781
FreddleSpl0it about 3 years ago 3725473

[Web] improve identity-provider template

Full commit hash
37254738e207ec2ef5f2921081b6ced19703432a
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
782
  $('.iam_rolemap_add_keycloak').click(async function(e){
Open commit View diff
782 $('.iam_rolemap_add_keycloak').click(async function(e){
FreddleSpl0it over 1 year ago 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
783
    addAttributeMappingRow('#iam_keycloak_mapping_list', '.iam_keycloak_rolemap_del', e);
Open commit View diff
783 addAttributeMappingRow('#iam_keycloak_mapping_list', '.iam_keycloak_rolemap_del', e);
FreddleSpl0it over 3 years ago 6e9980b

[Web] add manage identity provider

Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
784
  });
Open commit View diff
784 });
FreddleSpl0it about 3 years ago 3725473

[Web] improve identity-provider template

Full commit hash
37254738e207ec2ef5f2921081b6ced19703432a
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
785
  $('.iam_rolemap_add_generic').click(async function(e){
Open commit View diff
785 $('.iam_rolemap_add_generic').click(async function(e){
FreddleSpl0it over 1 year ago 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
786
    addAttributeMappingRow('#iam_generic_mapping_list', '.iam_generic_rolemap_del', e);
Open commit View diff
786 addAttributeMappingRow('#iam_generic_mapping_list', '.iam_generic_rolemap_del', e);
FreddleSpl0it about 3 years ago 3725473

[Web] improve identity-provider template

Full commit hash
37254738e207ec2ef5f2921081b6ced19703432a
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
787
  });
Open commit View diff
787 });
FreddleSpl0it over 2 years ago a06c783

[Web] add ldap idp

Full commit hash
a06c78362a29eba6c5ecf1e4a2a6a65362301e1f
Author
FreddleSpl0it <[email protected]>
Date
over 2 years ago
Selected line
788
  $('.iam_rolemap_add_ldap').click(async function(e){
Open commit View diff
788 $('.iam_rolemap_add_ldap').click(async function(e){
FreddleSpl0it over 1 year ago 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
789
    addAttributeMappingRow('#iam_ldap_mapping_list', '.iam_ldap_rolemap_del', e);
Open commit View diff
789 addAttributeMappingRow('#iam_ldap_mapping_list', '.iam_ldap_rolemap_del', e);
FreddleSpl0it over 2 years ago a06c783

[Web] add ldap idp

Full commit hash
a06c78362a29eba6c5ecf1e4a2a6a65362301e1f
Author
FreddleSpl0it <[email protected]>
Date
over 2 years ago
Selected line
790
  });
Open commit View diff
790 });
FreddleSpl0it about 3 years ago 3725473

[Web] improve identity-provider template

Full commit hash
37254738e207ec2ef5f2921081b6ced19703432a
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
791
  $('.iam_keycloak_rolemap_del').click(async function(e){
Open commit View diff
791 $('.iam_keycloak_rolemap_del').click(async function(e){
FreddleSpl0it over 1 year ago 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
792
    deleteAttributeMappingRow(this, e);
Open commit View diff
792 deleteAttributeMappingRow(this, e);
FreddleSpl0it about 3 years ago 3725473

[Web] improve identity-provider template

Full commit hash
37254738e207ec2ef5f2921081b6ced19703432a
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
793
  });
Open commit View diff
793 });
same change 3725473

[Web] improve identity-provider template

Full commit hash
37254738e207ec2ef5f2921081b6ced19703432a
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
794
  $('.iam_generic_rolemap_del').click(async function(e){
Open commit View diff
794 $('.iam_generic_rolemap_del').click(async function(e){
FreddleSpl0it over 1 year ago 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
795
    deleteAttributeMappingRow(this, e);
Open commit View diff
795 deleteAttributeMappingRow(this, e);
FreddleSpl0it over 3 years ago 6e9980b

[Web] add manage identity provider

Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79
Author
FreddleSpl0it <[email protected]>
Date
over 3 years ago
Selected line
796
  });
Open commit View diff
796 });
FreddleSpl0it over 2 years ago a06c783

[Web] add ldap idp

Full commit hash
a06c78362a29eba6c5ecf1e4a2a6a65362301e1f
Author
FreddleSpl0it <[email protected]>
Date
over 2 years ago
Selected line
797
  $('.iam_ldap_rolemap_del').click(async function(e){
Open commit View diff
797 $('.iam_ldap_rolemap_del').click(async function(e){
FreddleSpl0it over 1 year ago 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
798
    deleteAttributeMappingRow(this, e);
Open commit View diff
798 deleteAttributeMappingRow(this, e);
FreddleSpl0it over 2 years ago a06c783

[Web] add ldap idp

Full commit hash
a06c78362a29eba6c5ecf1e4a2a6a65362301e1f
Author
FreddleSpl0it <[email protected]>
Date
over 2 years ago
Selected line
799
  });
Open commit View diff
799 });
PseudoResonance over 1 year ago 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
800
  $('.iam_redirect_add_keycloak').click(async function(e){
Open commit View diff
800 $('.iam_redirect_add_keycloak').click(async function(e){
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
801
    addRedirectUrlRow('#iam_keycloak_redirect_list', '.iam_keycloak_redirect_del', e);
Open commit View diff
801 addRedirectUrlRow('#iam_keycloak_redirect_list', '.iam_keycloak_redirect_del', e);
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
802
  });
Open commit View diff
802 });
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
803
  $('.iam_redirect_add_generic').click(async function(e){
Open commit View diff
803 $('.iam_redirect_add_generic').click(async function(e){
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
804
    addRedirectUrlRow('#iam_generic_redirect_list', '.iam_generic_redirect_del', e);
Open commit View diff
804 addRedirectUrlRow('#iam_generic_redirect_list', '.iam_generic_redirect_del', e);
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
805
  });
Open commit View diff
805 });
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
806
  $('.iam_keycloak_redirect_del').click(async function(e){
Open commit View diff
806 $('.iam_keycloak_redirect_del').click(async function(e){
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
807
    deleteRedirectUrlRow(this, e);
Open commit View diff
807 deleteRedirectUrlRow(this, e);
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
808
  });
Open commit View diff
808 });
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
809
  $('.iam_generic_redirect_del').click(async function(e){
Open commit View diff
809 $('.iam_generic_redirect_del').click(async function(e){
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
810
    deleteRedirectUrlRow(this, e);
Open commit View diff
810 deleteRedirectUrlRow(this, e);
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
811
  });
Open commit View diff
811 });
FreddleSpl0it about 3 years ago 28679eb

[Web] add generic-oidc provider

Full commit hash
28679eb916e143c1ebf855e76f33d1812fe7ee2f
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
812
  // selecting identity provider
Open commit View diff
812 // selecting identity provider
same change 28679eb

[Web] add generic-oidc provider

Full commit hash
28679eb916e143c1ebf855e76f33d1812fe7ee2f
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
813
  $('#iam_provider').on('change', function(){
Open commit View diff
813 $('#iam_provider').on('change', function(){
same change 28679eb

[Web] add generic-oidc provider

Full commit hash
28679eb916e143c1ebf855e76f33d1812fe7ee2f
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
814
    // toggle password fields
Open commit View diff
814 // toggle password fields
same change 28679eb

[Web] add generic-oidc provider

Full commit hash
28679eb916e143c1ebf855e76f33d1812fe7ee2f
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
815
    if (this.value === 'keycloak'){
Open commit View diff
815 if (this.value === 'keycloak'){
same change 28679eb

[Web] add generic-oidc provider

Full commit hash
28679eb916e143c1ebf855e76f33d1812fe7ee2f
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
816
      $('#keycloak_settings').removeClass('d-none');
Open commit View diff
816 $('#keycloak_settings').removeClass('d-none');
same change 28679eb

[Web] add generic-oidc provider

Full commit hash
28679eb916e143c1ebf855e76f33d1812fe7ee2f
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
817
      $('#generic_oidc_settings').addClass('d-none');
Open commit View diff
817 $('#generic_oidc_settings').addClass('d-none');
FreddleSpl0it over 2 years ago a06c783

[Web] add ldap idp

Full commit hash
a06c78362a29eba6c5ecf1e4a2a6a65362301e1f
Author
FreddleSpl0it <[email protected]>
Date
over 2 years ago
Selected line
818
      $('#ldap_settings').addClass('d-none');
Open commit View diff
818 $('#ldap_settings').addClass('d-none');
FreddleSpl0it about 3 years ago 28679eb

[Web] add generic-oidc provider

Full commit hash
28679eb916e143c1ebf855e76f33d1812fe7ee2f
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
819
    } else if (this.value === 'generic-oidc') {
Open commit View diff
819 } else if (this.value === 'generic-oidc') {
same change 28679eb

[Web] add generic-oidc provider

Full commit hash
28679eb916e143c1ebf855e76f33d1812fe7ee2f
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
820
      $('#generic_oidc_settings').removeClass('d-none');
Open commit View diff
820 $('#generic_oidc_settings').removeClass('d-none');
FreddleSpl0it over 2 years ago a06c783

[Web] add ldap idp

Full commit hash
a06c78362a29eba6c5ecf1e4a2a6a65362301e1f
Author
FreddleSpl0it <[email protected]>
Date
over 2 years ago
Selected line
821
      $('#keycloak_settings').addClass('d-none');
Open commit View diff
821 $('#keycloak_settings').addClass('d-none');
same change a06c783

[Web] add ldap idp

Full commit hash
a06c78362a29eba6c5ecf1e4a2a6a65362301e1f
Author
FreddleSpl0it <[email protected]>
Date
over 2 years ago
Selected line
822
      $('#ldap_settings').addClass('d-none');
Open commit View diff
822 $('#ldap_settings').addClass('d-none');
same change a06c783

[Web] add ldap idp

Full commit hash
a06c78362a29eba6c5ecf1e4a2a6a65362301e1f
Author
FreddleSpl0it <[email protected]>
Date
over 2 years ago
Selected line
823
    } else if (this.value === 'ldap') {
Open commit View diff
823 } else if (this.value === 'ldap') {
same change a06c783

[Web] add ldap idp

Full commit hash
a06c78362a29eba6c5ecf1e4a2a6a65362301e1f
Author
FreddleSpl0it <[email protected]>
Date
over 2 years ago
Selected line
824
      $('#ldap_settings').removeClass('d-none');
Open commit View diff
824 $('#ldap_settings').removeClass('d-none');
same change a06c783

[Web] add ldap idp

Full commit hash
a06c78362a29eba6c5ecf1e4a2a6a65362301e1f
Author
FreddleSpl0it <[email protected]>
Date
over 2 years ago
Selected line
825
      $('#generic_oidc_settings').addClass('d-none');
Open commit View diff
825 $('#generic_oidc_settings').addClass('d-none');
same change a06c783

[Web] add ldap idp

Full commit hash
a06c78362a29eba6c5ecf1e4a2a6a65362301e1f
Author
FreddleSpl0it <[email protected]>
Date
over 2 years ago
Selected line
826
      $('#keycloak_settings').addClass('d-none');
Open commit View diff
826 $('#keycloak_settings').addClass('d-none');
FreddleSpl0it about 3 years ago 28679eb

[Web] add generic-oidc provider

Full commit hash
28679eb916e143c1ebf855e76f33d1812fe7ee2f
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
827
    }
Open commit View diff
827 }
same change 28679eb

[Web] add generic-oidc provider

Full commit hash
28679eb916e143c1ebf855e76f33d1812fe7ee2f
Author
FreddleSpl0it <[email protected]>
Date
about 3 years ago
Selected line
828
  });
Open commit View diff
828 });
FreddleSpl0it over 1 year ago 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
829
  function addAttributeMappingRow(list_id, del_class, e) {
Open commit View diff
829 function addAttributeMappingRow(list_id, del_class, e) {
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
830
    e.preventDefault();
Open commit View diff
830 e.preventDefault();
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
831
Open commit View diff
831
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
832
    var parent = $(list_id)
Open commit View diff
832 var parent = $(list_id)
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
833
    $(parent).children().last().clone().appendTo(parent);
Open commit View diff
833 $(parent).children().last().clone().appendTo(parent);
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
834
    var newChild = $(parent).children().last();
Open commit View diff
834 var newChild = $(parent).children().last();
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
835
    $(newChild).find('input').val('');
Open commit View diff
835 $(newChild).find('input').val('');
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
836
    $(newChild).find('input').val('').prop('required', true);
Open commit View diff
836 $(newChild).find('input').val('').prop('required', true);
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
837
    $(newChild).find('.dropdown-toggle').remove();
Open commit View diff
837 $(newChild).find('.dropdown-toggle').remove();
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
838
    $(newChild).find('.dropdown-menu').remove();
Open commit View diff
838 $(newChild).find('.dropdown-menu').remove();
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
839
    $(newChild).find('.bs-title-option').remove();
Open commit View diff
839 $(newChild).find('.bs-title-option').remove();
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
840
    $(newChild).find('select').selectpicker('destroy');
Open commit View diff
840 $(newChild).find('select').selectpicker('destroy');
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
841
    $(newChild).find('select').selectpicker();
Open commit View diff
841 $(newChild).find('select').selectpicker();
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
842
    $(newChild).find('select').selectpicker().prop('required', true);
Open commit View diff
842 $(newChild).find('select').selectpicker().prop('required', true);
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
843
Open commit View diff
843
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
844
    $(del_class).off('click');
Open commit View diff
844 $(del_class).off('click');
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
845
    $(del_class).click(async function(e){
Open commit View diff
845 $(del_class).click(async function(e){
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
846
      deleteAttributeMappingRow(this, e);
Open commit View diff
846 deleteAttributeMappingRow(this, e);
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
847
    });
Open commit View diff
847 });
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
848
  }
Open commit View diff
848 }
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
849
  function deleteAttributeMappingRow(elem, e) {
Open commit View diff
849 function deleteAttributeMappingRow(elem, e) {
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
850
    e.preventDefault();
Open commit View diff
850 e.preventDefault();
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
851
    if(!$(elem).parent().parent().parent().find('select').prop('required'))
Open commit View diff
851 if(!$(elem).parent().parent().parent().find('select').prop('required'))
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
852
      return true;
Open commit View diff
852 return true;
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
853
    if ($(elem).parent().parent().parent().parent().children().length > 1)
Open commit View diff
853 if ($(elem).parent().parent().parent().parent().children().length > 1)
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
854
      $(elem).parent().parent().parent().remove();
Open commit View diff
854 $(elem).parent().parent().parent().remove();
same change 887b711

Add default template for IdP attribute mapping

Full commit hash
887b7114a8bdd74a81f9ce7a6c5e006e28e135c0
Author
FreddleSpl0it <[email protected]>
Date
over 1 year ago
Selected line
855
  }
Open commit View diff
855 }
PseudoResonance over 1 year ago 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
856
  function addRedirectUrlRow(list_id, del_class, e) {
Open commit View diff
856 function addRedirectUrlRow(list_id, del_class, e) {
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
857
    e.preventDefault();
Open commit View diff
857 e.preventDefault();
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
858
Open commit View diff
858
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
859
    var parent = $(list_id)
Open commit View diff
859 var parent = $(list_id)
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
860
    $(parent).children().last().clone().appendTo(parent);
Open commit View diff
860 $(parent).children().last().clone().appendTo(parent);
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
861
    var newChild = $(parent).children().last();
Open commit View diff
861 var newChild = $(parent).children().last();
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
862
    $(newChild).find('input').val('');
Open commit View diff
862 $(newChild).find('input').val('');
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
863
Open commit View diff
863
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
864
    $(del_class).off('click');
Open commit View diff
864 $(del_class).off('click');
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
865
    $(del_class).click(async function(e){
Open commit View diff
865 $(del_class).click(async function(e){
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
866
      deleteRedirectUrlRow(this, e);
Open commit View diff
866 deleteRedirectUrlRow(this, e);
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
867
    });
Open commit View diff
867 });
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
868
  }
Open commit View diff
868 }
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
869
  function deleteRedirectUrlRow(elem, e) {
Open commit View diff
869 function deleteRedirectUrlRow(elem, e) {
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
870
    e.preventDefault();
Open commit View diff
870 e.preventDefault();
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
871
    if ($(elem).parent().parent().parent().parent().children().length > 2)
Open commit View diff
871 if ($(elem).parent().parent().parent().parent().children().length > 2)
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
872
      $(elem).parent().parent().parent().remove();
Open commit View diff
872 $(elem).parent().parent().parent().remove();
same change 692355a

Allow additional domains in OAuth2 redirect URLs

Full commit hash
692355a08ad935b147ef8e877635d247a0e5aac3
Author
PseudoResonance <[email protected]>
Date
over 1 year ago
Selected line
873
  }
Open commit View diff
873 }
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
874
});
Open commit View diff
874 });