public
nobgit
read
NobMail
Based on mailcow: dockerized
Languages
Repository composition by tracked source files.
PHP
49%
JavaScript
35%
HTML
9%
CSS
4%
Shell
2%
Python
1%
Lua
0%
Perl
0%
Ruby
0%
SCSS
0%
Create file
Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git
Trace
data/web/js/site/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
// Base64 functions
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2
var Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encode:function(r){var t,e,o,a,h,n,c,d="",C=0;for(r=Base64._utf8_encode(r);C<r.length;)a=(t=r.charCodeAt(C++))>>2,h=(3&t)<<4|(e=r.charCodeAt(C++))>>4,n=(15&e)<<2|(o=r.charCodeAt(C++))>>6,c=63&o,isNaN(e)?n=c=64:isNaN(o)&&(c=64),d=d+this._keyStr.charAt(a)+this._keyStr.charAt(h)+this._keyStr.charAt(n)+this._keyStr.charAt(c);return d},decode:function(r){var t,e,o,a,h,n,c="",d=0;for(r=r.replace(/[^A-Za-z0-9\+\/\=]/g,"");d<r.length;)t=this._keyStr.indexOf(r.charAt(d++))<<2|(a=this._keyStr.indexOf(r.charAt(d++)))>>4,e=(15&a)<<4|(h=this._keyStr.indexOf(r.charAt(d++)))>>2,o=(3&h)<<6|(n=this._keyStr.indexOf(r.charAt(d++))),c+=String.fromCharCode(t),64!=h&&(c+=String.fromCharCode(e)),64!=n&&(c+=String.fromCharCode(o));return c=Base64._utf8_decode(c)},_utf8_encode:function(r){r=r.replace(/\r\n/g,"\n");for(var t="",e=0;e<r.length;e++){var o=r.charCodeAt(e);o<128?t+=String.fromCharCode(o):o>127&&o<2048?(t+=String.fromCharCode(o>>6|192),t+=String.fromCharCode(63&o|128)):(t+=String.fromCharCode(o>>12|224),t+=String.fromCharCode(o>>6&63|128),t+=String.fromCharCode(63&o|128))}return t},_utf8_decode:function(r){for(var t="",e=0,o=c1=c2=0;e<r.length;)(o=r.charCodeAt(e))<128?(t+=String.fromCharCode(o),e++):o>191&&o<224?(c2=r.charCodeAt(e+1),t+=String.fromCharCode((31&o)<<6|63&c2),e+=2):(c2=r.charCodeAt(e+1),c3=r.charCodeAt(e+2),t+=String.fromCharCode((15&o)<<12|(63&c2)<<6|63&c3),e+=3);return t}};
var Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encode:function(r){var t,e,o,a,h,n,c,d="",C=0;for(r=Base64._utf8_encode(r);C<r.length;)a=(t=r.charCodeAt(C++))>>2,h=(3&t)<<4|(e=r.charCodeAt(C++))>>4,n=(15&e)<<2|(o=r.charCodeAt(C++))>>6,c=63&o,isNaN(e)?n=c=64:isNaN(o)&&(c=64),d=d+this._keyStr.charAt(a)+this._keyStr.charAt(h)+this._keyStr.charAt(n)+this._keyStr.charAt(c);return d},decode:function(r){var t,e,o,a,h,n,c="",d=0;for(r=r.replace(/[^A-Za-z0-9\+\/\=]/g,"");d<r.length;)t=this._keyStr.indexOf(r.charAt(d++))<<2|(a=this._keyStr.indexOf(r.charAt(d++)))>>4,e=(15&a)<<4|(h=this._keyStr.indexOf(r.charAt(d++)))>>2,o=(3&h)<<6|(n=this._keyStr.indexOf(r.charAt(d++))),c+=String.fromCharCode(t),64!=h&&(c+=String.fromCharCode(e)),64!=n&&(c+=String.fromCharCode(o));return c=Base64._utf8_decode(c)},_utf8_encode:function(r){r=r.replace(/\r\n/g,"\n");for(var t="",e=0;e<r.length;e++){var o=r.charCodeAt(e);o<128?t+=String.fromCharCode(o):o>127&&o<2048?(t+=String.fromCharCode(o>>6|192),t+=String.fromCharCode(63&o|128)):(t+=String.fromCharCode(o>>12|224),t+=String.fromCharCode(o>>6&63|128),t+=String.fromCharCode(63&o|128))}return t},_utf8_decode:function(r){for(var t="",e=0,o=c1=c2=0;e<r.length;)(o=r.charCodeAt(e))<128?(t+=String.fromCharCode(o),e++):o>191&&o<224?(c2=r.charCodeAt(e+1),t+=String.fromCharCode((31&o)<<6|63&c2),e+=2):(c2=r.charCodeAt(e+1),c3=r.charCodeAt(e+2),t+=String.fromCharCode((15&o)<<12|(63&c2)<<6|63&c3),e+=3);return t}};
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 3
jQuery(function($){
jQuery(function($){
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 4
// http://stackoverflow.com/questions/24816/escaping-html-strings-with-jquery
// http://stackoverflow.com/questions/24816/escaping-html-strings-with-jquery
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 5
var entityMap={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/","`":"`","=":"="};
var entityMap={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/","`":"`","=":"="};
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 6
function jq(myid) {return "#" + myid.replace( /(:|\.|\[|\]|,|=|@)/g, "\\$1" );}
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]})}
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}}
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]}
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}
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}
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) {
$("#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();
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 = [];
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() {
$('.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());
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
});
});
same change
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);
$('#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
});
});
same change
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"); });
$(".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'); });
$("#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'); });
$("#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); });
$("#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); });
$(".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 ) {
$(".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();
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');
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/);
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;
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++){
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]){
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;
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
}
}
same change
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])) {
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');
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;
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;
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
}
}
same change
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])){
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');
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;
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;
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
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 44
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 45
if (regex_valid) {
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');
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});
$('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
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 49
});
});
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 50
$('.textarea-code').on('keyup', function() {
$('.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});
$('.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
});
});
same change
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() {
$("#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");
$.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();
$("#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");
$("#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');
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
});
});
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
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() {
$(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') {
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();
$("#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");
$("#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
}
}
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
});
});
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
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); });
$("#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
same change
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) {
$(".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();
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');
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();
$('#' + 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
});
});
same change
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() {
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
// 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') ) {
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();
$('#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;
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
}
}
same change
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
same change
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({
$('#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,
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,
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,
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,
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,
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>>" +
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" +
"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>>",
"<'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,
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: {
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",
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",
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){
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');
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
}
}
same change
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
},
},
same change
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: [
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
{
{
same change
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
// 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: '',
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,
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,
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,
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: ''
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
},
},
same change
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
{
{
same change
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: '',
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',
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,
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,
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: ''
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
},
},
same change
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
{
{
same change
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,
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',
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: ''
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
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 119
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 120
title: lang.admin_domains,
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',
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: '',
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
},
},
same change
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
{
{
same change
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",
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',
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: '',
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) {
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>';
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>';
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
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 132
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 133
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 134
title: lang.active,
title: lang.active,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 135
data: 'active',
data: 'active',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 136
defaultContent: '',
defaultContent: '',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 137
render: function (data, type) {
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>';
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>';
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
}
}
same change
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
},
},
same change
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
{
{
same change
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,
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',
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',
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: ''
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
},
},
same change
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
],
],
same change
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){
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
}
}
same change
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
});
});
same change
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
}
}
same change
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() {
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
// 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') ) {
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();
$('#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;
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
}
}
same change
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
same change
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({
$('#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,
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,
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,
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,
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,
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>>" +
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" +
"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>>",
"<'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,
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: {
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",
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",
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){
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');
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
}
}
same change
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
},
},
same change
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: [
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
{
{
same change
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
// 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: '',
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,
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,
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,
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: ''
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
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 186
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 187
title: '',
title: '',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 188
data: 'chkbox',
data: 'chkbox',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 189
searchable: false,
searchable: false,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 190
orderable: false,
orderable: false,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 191
defaultContent: ''
defaultContent: ''
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 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
{
{
same change
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',
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',
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: ''
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
},
},
same change
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
{
{
same change
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,
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',
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: ''
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
},
},
same change
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
{
{
same change
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,
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',
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: ''
defaultContent: ''
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 207
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 208
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 209
title: lang.oauth2_redirect_uri,
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',
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: ''
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
},
},
same change
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
{
{
same change
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,
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',
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',
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: ''
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
},
},
same change
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
]
]
same change
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
});
});
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 221
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 222
function draw_admins() {
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
// 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') ) {
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();
$('#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;
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
}
}
same change
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
same change
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({
$('#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,
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,
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,
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,
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,
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>>" +
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" +
"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>>",
"<'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,
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: {
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",
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",
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){
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');
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
}
}
same change
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
},
},
same change
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: [
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
{
{
same change
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
// 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: '',
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,
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,
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,
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: ''
defaultContent: ''
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 254
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 255
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 256
title: '',
title: '',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 257
data: 'chkbox',
data: 'chkbox',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 258
searchable: false,
searchable: false,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 259
orderable: false,
orderable: false,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 260
defaultContent: ''
defaultContent: ''
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 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
{
{
same change
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,
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',
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: ''
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
},
},
same change
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
{
{
same change
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",
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',
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: '',
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) {
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>';
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>';
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
}
}
same change
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
},
},
same change
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
{
{
same change
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,
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',
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: '',
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) {
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>';
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>';
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
}
}
same change
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
},
},
same change
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
{
{
same change
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,
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',
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: '',
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'
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
},
},
same change
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
]
]
same change
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
});
});
same change
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
}
}
same change
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() {
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
// 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') ) {
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();
$('#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;
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
}
}
same change
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
same change
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({
$('#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,
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,
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,
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,
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,
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>>" +
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" +
"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>>",
"<'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,
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: {
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",
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",
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){
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');
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
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 317
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 318
columns: [
columns: [
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 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
// 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: '',
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,
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,
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,
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: ''
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
},
},
same change
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
{
{
same change
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: '',
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',
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,
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,
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: ''
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
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 334
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 335
title: lang.host,
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',
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: ''
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
},
},
same change
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
{
{
same change
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,
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',
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: ''
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
},
},
same change
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
{
{
same change
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,
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',
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: '',
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){
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>';
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
}
}
same change
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
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 352
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 353
title: lang.action,
title: lang.action,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 354
data: 'action',
data: 'action',
FreddleSpl0it
over 3 years ago
72e8180
[Web] datatable adjustment
- Full commit hash
72e8180c6be0f8ae9444e4ae10129ffa830c0c9b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 355
className: 'dt-sm-head-hidden dt-text-right',
className: 'dt-sm-head-hidden dt-text-right',
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 356
defaultContent: ''
defaultContent: ''
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 357
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 358
]
]
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 359
});
});
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 360
}
}
same change
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() {
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
// 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') ) {
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();
$('#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;
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
}
}
same change
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
same change
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({
$('#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,
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,
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,
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,
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,
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>>" +
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" +
"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>>",
"<'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,
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: {
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",
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",
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){
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');
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
}
}
same change
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
},
},
same change
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: [
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
{
{
same change
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
// 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: '',
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,
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,
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,
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: ''
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
},
},
same change
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
{
{
same change
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: '',
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',
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,
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,
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: ''
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
},
},
same change
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
{
{
same change
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',
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',
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: ''
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
},
},
same change
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
{
{
same change
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,
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',
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: '',
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) {
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);
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
}
}
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
},
},
same change
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
{
{
same change
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,
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',
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: ''
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
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 419
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 420
title: lang.in_use_by,
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',
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: ''
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
},
},
same change
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
{
{
same change
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,
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',
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: '',
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) {
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>';
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>';
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
}
}
same change
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
},
},
same change
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
{
{
same change
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,
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',
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',
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: ''
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
},
},
same change
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
]
]
same change
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
});
});
same change
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
}
}
same change
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() {
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
// 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') ) {
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();
$('#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;
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
}
}
same change
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
same change
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({
$('#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,
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,
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,
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,
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,
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>>" +
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" +
"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>>",
"<'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,
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: {
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",
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",
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){
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');
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
}
}
same change
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
},
},
same change
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: [
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
{
{
same change
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
// 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: '',
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,
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,
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,
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: ''
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
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 475
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 476
title: '',
title: '',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 477
data: 'chkbox',
data: 'chkbox',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 478
searchable: false,
searchable: false,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 479
orderable: false,
orderable: false,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 480
defaultContent: ''
defaultContent: ''
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 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
{
{
same change
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',
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',
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: ''
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
},
},
same change
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
{
{
same change
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,
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',
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: ''
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
},
},
same change
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
{
{
same change
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,
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',
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: ''
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
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 497
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 498
title: lang.username,
title: lang.username,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 499
data: 'username',
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: ''
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
},
},
same change
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
{
{
same change
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,
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',
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: '',
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) {
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>';
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>';
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
}
}
same change
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
},
},
same change
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
{
{
same change
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,
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',
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',
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: ''
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
},
},
same change
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
]
]
same change
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
});
});
same change
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
}
}
same change
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
same change
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) {
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') {
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) {
$.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">' +
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>' +
'<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>' +
'<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>' +
'<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>';
'</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; }
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; }
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; }
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 + '" />';
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
});
});
same change
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') {
} 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) {
$.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) {
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>';
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
}
}
same change
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) {
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;
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
}
}
same change
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">' +
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>' +
'<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>' +
'<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>' +
'<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>';
'</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 + '" />';
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
});
});
same change
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') {
} 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) {
$.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 + '" />';
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) {
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);
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
});
});
same change
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">');
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">' +
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>' +
'<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>';
'</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
});
});
same change
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') {
} 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) {
$.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">' +
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>' +
'<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>';
'</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 + '" />';
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
});
});
same change
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') {
} 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) {
$.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">' +
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>' +
'<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>' +
'<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>';
'</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";
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';
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 + '" />';
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
});
});
same change
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') {
} 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) {
$.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);
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>");
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 + '" />';
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">' +
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>' +
'<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>' +
'<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>' +
'<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>';
'</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
});
});
same change
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') {
} 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) {
$.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()) {
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;
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 {
} 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;
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
}
}
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 + '" />';
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">' +
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>' +
'<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>' +
'<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>';
'</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
});
});
same change
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
}
}
same change
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
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
};
};
same change
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
same change
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
// 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) {
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() {
$(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);
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;
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
same change
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) => {
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 => {
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) {
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);
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
}
}
same change
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
});
});
same change
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);
}).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
});
});
same change
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
}
}
same change
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
// 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());
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());
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());
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());
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());
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());
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
same change
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
same change
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 () {
$('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();
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
})
})
same change
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
same change
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
// 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 ) {
$("#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);
$("#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) {
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);
$('#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
}
}
same change
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 {
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');
$("#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
}
}
same change
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
});
});
same change
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 ) {
$("#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);
$("#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) {
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);
$('#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
}
}
same change
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 {
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');
$("#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
}
}
same change
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
});
});
same change
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
// 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) {
$('#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("-");
$('#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)
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) {
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'));
$('#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
}
}
same change
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
})
})
same change
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) {
$('#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();
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();
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);
$(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> ');
$(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({
$.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',
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',
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',
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(),
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) {
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);
$('#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);
$('#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);
$('#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
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 675
});
});
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 676
})
})
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 677
// Transport
// 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) {
$('#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("-");
$('#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)
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) {
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'));
$('#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'));
$('#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
}
}
same change
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
})
})
same change
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) {
$('#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();
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();
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);
$(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> ');
$(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({
$.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',
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',
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',
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(),
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) {
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);
$('#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);
$('#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);
$('#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
}
}
same change
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
});
});
same change
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
})
})
same change
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
// 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) {
$('#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("-");
$('#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)
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) {
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')));
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);
$('#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
}
}
same change
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
})
})
same change
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
// 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) {
$('#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)
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) {
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'));
$('#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')));
$('#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
}
}
same change
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
})
})
same change
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
// 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
// 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();
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(){
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');
$('.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) {
$('.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';
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);
$(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
})
})
same change
6e35574
[Web] add app hide option
- Full commit hash
6e35574c721971216aa10da1ba6ace663ad4ca13- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 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) {
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 />');
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") {
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>';
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>';
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>';
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>';
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>';
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") {
} 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>';
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>';
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>';
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
}
}
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
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);
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);
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")
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();
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
}
}
same change
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) {
$('#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();
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();
$(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
});
});
same change
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) {
$('#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();
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();
$(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
});
});
same change
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() {
$('#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");
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
});
});
same change
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() {
$('#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");
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
});
});
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
// 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){
$('.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();
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() };
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", {
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: {
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",
"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
},
},
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',
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',
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)
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
});
});
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();
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'){
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');
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
}
}
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');
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
});
});
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
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){
$('.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);
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
});
});
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){
$('.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);
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
});
});
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){
$('.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);
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
});
});
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){
$('.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);
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
});
});
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){
$('.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);
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
});
});
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){
$('.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);
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
});
});
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){
$('.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);
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
});
});
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){
$('.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);
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
});
});
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){
$('.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);
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
});
});
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){
$('.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);
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
});
});
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
// 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(){
$('#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
// 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'){
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');
$('#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');
$('#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');
$('#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') {
} 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');
$('#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');
$('#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');
$('#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') {
} 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');
$('#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');
$('#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');
$('#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
}
}
same change
28679eb
[Web] add generic-oidc provider
- Full commit hash
28679eb916e143c1ebf855e76f33d1812fe7ee2f- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 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) {
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();
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
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)
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);
$(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();
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('');
$(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);
$(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();
$(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();
$(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();
$(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');
$(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();
$(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);
$(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
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');
$(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){
$(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);
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
});
});
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
}
}
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) {
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();
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'))
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;
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)
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();
$(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
}
}
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) {
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();
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
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)
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);
$(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();
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('');
$(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
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');
$(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){
$(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);
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
});
});
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
}
}
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) {
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();
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)
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();
$(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
}
}
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
});
});