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/mailbox.js
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
mailbox.js
on main
Author
Date
Commit
Line
Code
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1
$(document).ready(function() {
$(document).ready(function() {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2
acl_data = JSON.parse(acl);
acl_data = JSON.parse(acl);
andryyy
over 6 years ago
26e2a12
[Web] Implement table size to quarantine, implements #3325
- Full commit hash
26e2a1230a29cbeaf028b6abcad05831eb9637fe- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 3
// Set paging
// Set paging
andryyy
over 6 years ago
ec1dce5
[Web] Minor changes
- Full commit hash
ec1dce508e1ba4d92b8b5490b9ce5f3255756944- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 4
// Clone mailbox mass actions
// Clone mailbox mass actions
same change
ec1dce5
[Web] Minor changes
- Full commit hash
ec1dce508e1ba4d92b8b5490b9ce5f3255756944- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 5
$("div").find("[data-actions-header='true'").each(function() {
$("div").find("[data-actions-header='true'").each(function() {
same change
ec1dce5
[Web] Minor changes
- Full commit hash
ec1dce508e1ba4d92b8b5490b9ce5f3255756944- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 6
$(this).html($(this).nextAll('.mass-actions-mailbox:first').html());
$(this).html($(this).nextAll('.mass-actions-mailbox:first').html());
same change
ec1dce5
[Web] Minor changes
- Full commit hash
ec1dce508e1ba4d92b8b5490b9ce5f3255756944- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 7
});
});
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 8
// Auto-fill domain quota when adding new domain
// Auto-fill domain quota when adding new domain
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 9
auto_fill_quota = function(domain) {
auto_fill_quota = function(domain) {
andryyy
over 6 years ago
fd73bbc
[Web] Show warning, when domain exhausted and only an unlimited mailbox could be created
- Full commit hash
fd73bbc201119b45d13597a01fbb6cae2885a225- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 10
$.get("/api/v1/get/domain/" + domain, function(data){
$.get("/api/v1/get/domain/" + domain, function(data){
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 11
var result = $.parseJSON(JSON.stringify(data));
var result = $.parseJSON(JSON.stringify(data));
friedPotat0
almost 7 years ago
1b54d75
Prevent event propagation for remaining tables
- Full commit hash
1b54d757161b241537021d13d7eec97033523907- Author
- friedPotat0 <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 12
def_new_mailbox_quota = ( result.def_new_mailbox_quota / 1048576);
def_new_mailbox_quota = ( result.def_new_mailbox_quota / 1048576);
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 13
max_new_mailbox_quota = ( result.max_new_mailbox_quota / 1048576);
max_new_mailbox_quota = ( result.max_new_mailbox_quota / 1048576);
andryyy
over 6 years ago
fd73bbc
[Web] Show warning, when domain exhausted and only an unlimited mailbox could be created
- Full commit hash
fd73bbc201119b45d13597a01fbb6cae2885a225- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 14
if (max_new_mailbox_quota != '0') {
if (max_new_mailbox_quota != '0') {
same change
fd73bbc
[Web] Show warning, when domain exhausted and only an unlimited mailbox could be created
- Full commit hash
fd73bbc201119b45d13597a01fbb6cae2885a225- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 15
$('.addInputQuotaExhausted').hide();
$('.addInputQuotaExhausted').hide();
same change
fd73bbc
[Web] Show warning, when domain exhausted and only an unlimited mailbox could be created
- Full commit hash
fd73bbc201119b45d13597a01fbb6cae2885a225- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 16
$("#quotaBadge").html('max. ' + max_new_mailbox_quota + ' MiB');
$("#quotaBadge").html('max. ' + max_new_mailbox_quota + ' MiB');
same change
fd73bbc
[Web] Show warning, when domain exhausted and only an unlimited mailbox could be created
- Full commit hash
fd73bbc201119b45d13597a01fbb6cae2885a225- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 17
$('#addInputQuota').attr({"disabled": false, "value": "", "type": "number", "max": max_new_mailbox_quota});
$('#addInputQuota').attr({"disabled": false, "value": "", "type": "number", "max": max_new_mailbox_quota});
same change
fd73bbc
[Web] Show warning, when domain exhausted and only an unlimited mailbox could be created
- Full commit hash
fd73bbc201119b45d13597a01fbb6cae2885a225- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 18
$('#addInputQuota').val(def_new_mailbox_quota);
$('#addInputQuota').val(def_new_mailbox_quota);
same change
fd73bbc
[Web] Show warning, when domain exhausted and only an unlimited mailbox could be created
- Full commit hash
fd73bbc201119b45d13597a01fbb6cae2885a225- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 19
}
}
same change
fd73bbc
[Web] Show warning, when domain exhausted and only an unlimited mailbox could be created
- Full commit hash
fd73bbc201119b45d13597a01fbb6cae2885a225- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 20
else {
else {
same change
fd73bbc
[Web] Show warning, when domain exhausted and only an unlimited mailbox could be created
- Full commit hash
fd73bbc201119b45d13597a01fbb6cae2885a225- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 21
$('.addInputQuotaExhausted').show();
$('.addInputQuotaExhausted').show();
same change
fd73bbc
[Web] Show warning, when domain exhausted and only an unlimited mailbox could be created
- Full commit hash
fd73bbc201119b45d13597a01fbb6cae2885a225- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 22
$("#quotaBadge").html('max. ' + max_new_mailbox_quota + ' MiB');
$("#quotaBadge").html('max. ' + max_new_mailbox_quota + ' MiB');
same change
fd73bbc
[Web] Show warning, when domain exhausted and only an unlimited mailbox could be created
- Full commit hash
fd73bbc201119b45d13597a01fbb6cae2885a225- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 23
$('#addInputQuota').attr({"disabled": true, "value": "", "type": "text", "value": "n/a"});
$('#addInputQuota').attr({"disabled": true, "value": "", "type": "text", "value": "n/a"});
same change
fd73bbc
[Web] Show warning, when domain exhausted and only an unlimited mailbox could be created
- Full commit hash
fd73bbc201119b45d13597a01fbb6cae2885a225- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 24
$('#addInputQuota').val(max_new_mailbox_quota);
$('#addInputQuota').val(max_new_mailbox_quota);
same change
fd73bbc
[Web] Show warning, when domain exhausted and only an unlimited mailbox could be created
- Full commit hash
fd73bbc201119b45d13597a01fbb6cae2885a225- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 25
}
}
same change
fd73bbc
[Web] Show warning, when domain exhausted and only an unlimited mailbox could be created
- Full commit hash
fd73bbc201119b45d13597a01fbb6cae2885a225- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 26
});
});
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 27
}
}
andryyy
almost 5 years ago
2cd0b56
[Web] Various PHP 8 fixes, partly fixes #4219
- Full commit hash
2cd0b56b143b8a2741488ae1735bf6d74253247f- Author
- andryyy <[email protected]>
- Date
- almost 5 years ago
- Selected line
- 28
$('#addSelectDomain').on('change', function() {
$('#addSelectDomain').on('change', function() {
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 29
auto_fill_quota($('#addSelectDomain').val());
auto_fill_quota($('#addSelectDomain').val());
andryyy
almost 5 years ago
2cd0b56
[Web] Various PHP 8 fixes, partly fixes #4219
- Full commit hash
2cd0b56b143b8a2741488ae1735bf6d74253247f- Author
- andryyy <[email protected]>
- Date
- almost 5 years ago
- Selected line
- 30
});
});
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 31
auto_fill_quota($('#addSelectDomain').val());
auto_fill_quota($('#addSelectDomain').val());
andryyy
almost 5 years ago
7ab1405
[Web] Remove blocking user_details function request in bcc list for faster loading with many mailboxes
- Full commit hash
7ab1405b0032dcf50698a357ea4a1378540b9ddc- Author
- andryyy <[email protected]>
- Date
- almost 5 years ago
- Selected line
- 32
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 33
$(".goto_checkbox").click(function( event ) {
$(".goto_checkbox").click(function( event ) {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 34
$("form[data-id='add_alias'] .goto_checkbox").not(this).prop('checked', false);
$("form[data-id='add_alias'] .goto_checkbox").not(this).prop('checked', false);
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 35
if ($("form[data-id='add_alias'] .goto_checkbox:checked").length > 0) {
if ($("form[data-id='add_alias'] .goto_checkbox:checked").length > 0) {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 36
$('#textarea_alias_goto').prop('disabled', true);
$('#textarea_alias_goto').prop('disabled', true);
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 37
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 38
else {
else {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 39
$("#textarea_alias_goto").removeAttr('disabled');
$("#textarea_alias_goto").removeAttr('disabled');
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 40
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 41
});
});
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 42
$('#addAliasModal').on('show.bs.modal', function(e) {
$('#addAliasModal').on('show.bs.modal', function(e) {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 43
if ($("form[data-id='add_alias'] .goto_checkbox:checked").length > 0) {
if ($("form[data-id='add_alias'] .goto_checkbox:checked").length > 0) {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 44
$('#textarea_alias_goto').prop('disabled', true);
$('#textarea_alias_goto').prop('disabled', true);
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 45
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 46
else {
else {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 47
$("#textarea_alias_goto").removeAttr('disabled');
$("#textarea_alias_goto").removeAttr('disabled');
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 48
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 49
});
});
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 50
// Log modal
// Log modal
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 51
$('#syncjobLogModal').on('show.bs.modal', function(e) {
$('#syncjobLogModal').on('show.bs.modal', function(e) {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 52
var syncjob_id = $(e.relatedTarget).data('syncjob-id');
var syncjob_id = $(e.relatedTarget).data('syncjob-id');
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 53
$.ajax({
$.ajax({
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 54
url: '/inc/ajax/syncjob_logs.php',
url: '/inc/ajax/syncjob_logs.php',
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 55
data: { id: syncjob_id },
data: { id: syncjob_id },
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 56
dataType: 'text',
dataType: 'text',
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 57
success: function(data){
success: function(data){
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 58
$(e.currentTarget).find('#logText').text(data);
$(e.currentTarget).find('#logText').text(data);
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 59
},
},
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 60
error: function(xhr, status, error) {
error: function(xhr, status, error) {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 61
$(e.currentTarget).find('#logText').text(xhr.responseText);
$(e.currentTarget).find('#logText').text(xhr.responseText);
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 62
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 63
});
});
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 64
});
});
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 65
// Log modal
// Log modal
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 66
$('#dnsInfoModal').on('show.bs.modal', function(e) {
$('#dnsInfoModal').on('show.bs.modal', function(e) {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 67
var domain = $(e.relatedTarget).data('domain');
var domain = $(e.relatedTarget).data('domain');
FreddleSpl0it
almost 4 years ago
3b8e17c
fix layout issues
- Full commit hash
3b8e17c21ff9080f097b1c331bb572e803d7a645- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 68
$('.dns-modal-body').html('<div class="spinner-border" role="status"><span class="visually-hidden">Loading...</span></div>');
$('.dns-modal-body').html('<div class="spinner-border" role="status"><span class="visually-hidden">Loading...</span></div>');
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 69
$.ajax({
$.ajax({
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 70
url: '/inc/ajax/dns_diagnostics.php',
url: '/inc/ajax/dns_diagnostics.php',
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 71
data: { domain: domain },
data: { domain: domain },
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 72
dataType: 'text',
dataType: 'text',
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 73
success: function(data){
success: function(data){
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 74
$('.dns-modal-body').html(data);
$('.dns-modal-body').html(data);
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 75
},
},
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 76
error: function(xhr, status, error) {
error: function(xhr, status, error) {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 77
$('.dns-modal-body').html(xhr.responseText);
$('.dns-modal-body').html(xhr.responseText);
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 78
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 79
});
});
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
- 80
});
});
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 81
// @Open Domain add modal
// @Open Domain add modal
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 82
$('#addDomainModal').on('show.bs.modal', function(e) {
$('#addDomainModal').on('show.bs.modal', function(e) {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 83
$.ajax({
$.ajax({
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 84
url: '/api/v1/get/domain/template/all',
url: '/api/v1/get/domain/template/all',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 85
data: {},
data: {},
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 86
dataType: 'json',
dataType: 'json',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 87
success: async function(data){
success: async function(data){
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
- 88
$('#domain_templates').find('option').remove();
$('#domain_templates').find('option').remove();
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 89
$('#domain_templates').selectpicker('destroy');
$('#domain_templates').selectpicker('destroy');
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 90
$('#domain_templates').selectpicker();
$('#domain_templates').selectpicker();
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 91
for (var i = 0; i < data.length; i++){
for (var i = 0; i < data.length; i++){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 92
if (data[i].template === "Default"){
if (data[i].template === "Default"){
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
- 93
$('#domain_templates').prepend($('<option>', {
$('#domain_templates').prepend($('<option>', {
same change
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
'value': data[i].id,
'value': data[i].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
- 95
'text': data[i].template,
'text': data[i].template,
same change
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
'data-attributes': JSON.stringify(data[i].attributes),
'data-attributes': JSON.stringify(data[i].attributes),
same change
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
'selected': true
'selected': true
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 98
}));
}));
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 99
setDomainTemplateData(data[i].attributes);
setDomainTemplateData(data[i].attributes);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 100
} else {
} else {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 101
$('#domain_templates').append($('<option>', {
$('#domain_templates').append($('<option>', {
same change
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
'value': data[i].id,
'value': data[i].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
- 103
'text': data[i].template,
'text': data[i].template,
same change
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
'data-attributes': JSON.stringify(data[i].attributes),
'data-attributes': JSON.stringify(data[i].attributes),
same change
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
'selected': false
'selected': false
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 106
}));
}));
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 107
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 108
};
};
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 109
$('#domain_templates').selectpicker("refresh");
$('#domain_templates').selectpicker("refresh");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 110
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 111
// @selecting template
// @selecting template
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 112
$('#domain_templates').on('change', function(){
$('#domain_templates').on('change', function(){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 113
var selected = $('#domain_templates option:selected');
var selected = $('#domain_templates option:selected');
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 114
var attr = selected.data('attributes');
var attr = selected.data('attributes');
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 115
setDomainTemplateData(attr);
setDomainTemplateData(attr);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 116
});
});
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 117
},
},
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 118
error: function(xhr, status, error) {
error: function(xhr, status, error) {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 119
console.log(error);
console.log(error);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 120
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 121
});
});
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 122
});
});
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 123
// @Open Mailbox add modal
// @Open Mailbox add modal
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 124
$('#addMailboxModal').on('show.bs.modal', function(e) {
$('#addMailboxModal').on('show.bs.modal', function(e) {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 125
$.ajax({
$.ajax({
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 126
url: '/api/v1/get/mailbox/template/all',
url: '/api/v1/get/mailbox/template/all',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 127
data: {},
data: {},
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 128
dataType: 'json',
dataType: 'json',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 129
success: async function(data){
success: async function(data){
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
- 130
$('#mailbox_templates').find('option').remove();
$('#mailbox_templates').find('option').remove();
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 131
$('#mailbox_templates').selectpicker('destroy');
$('#mailbox_templates').selectpicker('destroy');
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 132
$('#mailbox_templates').selectpicker();
$('#mailbox_templates').selectpicker();
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 133
for (var i = 0; i < data.length; i++){
for (var i = 0; i < data.length; i++){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 134
if (data[i].template === "Default"){
if (data[i].template === "Default"){
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
- 135
$('#mailbox_templates').prepend($('<option>', {
$('#mailbox_templates').prepend($('<option>', {
same change
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
'value': data[i].id,
'value': data[i].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
- 137
'text': data[i].template,
'text': data[i].template,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 138
'data-attributes': JSON.stringify(data[i].attributes),
'data-attributes': JSON.stringify(data[i].attributes),
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 139
'selected': true
'selected': true
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 140
}));
}));
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 141
setMailboxTemplateData(data[i].attributes);
setMailboxTemplateData(data[i].attributes);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 142
} else {
} else {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 143
$('#mailbox_templates').append($('<option>', {
$('#mailbox_templates').append($('<option>', {
same change
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
value: data[i].id,
value: data[i].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
- 145
text : data[i].template,
text : data[i].template,
same change
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
'data-attributes': JSON.stringify(data[i].attributes),
'data-attributes': JSON.stringify(data[i].attributes),
same change
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
'selected': false
'selected': false
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 148
}));
}));
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 149
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 150
};
};
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 151
$('#mailbox_templates').selectpicker("refresh");
$('#mailbox_templates').selectpicker("refresh");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 152
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 153
// @selecting template
// @selecting template
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 154
$('#mailbox_templates').on('change', function(){
$('#mailbox_templates').on('change', function(){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 155
var selected = $('#mailbox_templates option:selected');
var selected = $('#mailbox_templates option:selected');
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 156
var attr = selected.data('attributes');
var attr = selected.data('attributes');
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 157
setMailboxTemplateData(attr);
setMailboxTemplateData(attr);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 158
});
});
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 159
},
},
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 160
error: function(xhr, status, error) {
error: function(xhr, status, error) {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 161
console.log(error);
console.log(error);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 162
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 163
});
});
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 164
});
});
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 165
// Sieve data modal
// Sieve data modal
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 166
$('#sieveDataModal').on('show.bs.modal', function(e) {
$('#sieveDataModal').on('show.bs.modal', function(e) {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 167
var sieveScript = $(e.relatedTarget).data('sieve-script');
var sieveScript = $(e.relatedTarget).data('sieve-script');
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 168
$(e.currentTarget).find('#sieveDataText').html('<pre style="font-size:14px;line-height:1.1">' + sieveScript + '</pre>');
$(e.currentTarget).find('#sieveDataText').html('<pre style="font-size:14px;line-height:1.1">' + sieveScript + '</pre>');
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 169
});
});
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 170
// Disable submit button on script change
// Disable submit button on script change
andryyy
almost 5 years ago
2cd0b56
[Web] Various PHP 8 fixes, partly fixes #4219
- Full commit hash
2cd0b56b143b8a2741488ae1735bf6d74253247f- Author
- andryyy <[email protected]>
- Date
- almost 5 years ago
- Selected line
- 171
$('.textarea-code').on('keyup', function() {
$('.textarea-code').on('keyup', function() {
andryyy
over 6 years ago
e1897b0
[Web] Allow to set global sieve filters
- Full commit hash
e1897b0631db96a9d05604f2eb38132122edb099- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 172
// Disable all "save" buttons, could be a "related button only" function, todo
// Disable all "save" buttons, could be a "related button only" function, todo
same change
e1897b0
[Web] Allow to set global sieve filters
- Full commit hash
e1897b0631db96a9d05604f2eb38132122edb099- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 173
$('.add_sieve_script').attr({"disabled": true});
$('.add_sieve_script').attr({"disabled": true});
andryyy
almost 5 years ago
2cd0b56
[Web] Various PHP 8 fixes, partly fixes #4219
- Full commit hash
2cd0b56b143b8a2741488ae1735bf6d74253247f- Author
- andryyy <[email protected]>
- Date
- almost 5 years ago
- Selected line
- 174
});
});
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 175
// Validate script data
// Validate script data
andryyy
over 6 years ago
e1897b0
[Web] Allow to set global sieve filters
- Full commit hash
e1897b0631db96a9d05604f2eb38132122edb099- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 176
$(".validate_sieve").click(function( event ) {
$(".validate_sieve").click(function( event ) {
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 177
event.preventDefault();
event.preventDefault();
andryyy
over 6 years ago
e1897b0
[Web] Allow to set global sieve filters
- Full commit hash
e1897b0631db96a9d05604f2eb38132122edb099- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 178
var validation_button = $(this);
var validation_button = $(this);
same change
e1897b0
[Web] Allow to set global sieve filters
- Full commit hash
e1897b0631db96a9d05604f2eb38132122edb099- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 179
// Get script_data textarea content from form the button was clicked in
// Get script_data textarea content from form the button was clicked in
same change
e1897b0
[Web] Allow to set global sieve filters
- Full commit hash
e1897b0631db96a9d05604f2eb38132122edb099- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 180
var script = $('textarea[name="script_data"]', $(this).parents('form:first')).val();
var script = $('textarea[name="script_data"]', $(this).parents('form:first')).val();
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 181
$.ajax({
$.ajax({
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 182
url: "/inc/ajax/sieve_validation.php",
url: "/inc/ajax/sieve_validation.php",
Phoenix Eve Aspacio
over 1 year ago
d09e4ff
Convert AJAX to POST request
- Full commit hash
d09e4ff0209515cca58e1c502da648b5b86287da- Author
- Phoenix Eve Aspacio <[email protected]>
- Date
- over 1 year ago
- Selected line
- 183
type: "post",
type: "post",
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 184
data: { script: script },
data: { script: script },
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 185
complete: function(data) {
complete: function(data) {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 186
var response = (data.responseText);
var response = (data.responseText);
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 187
response_obj = JSON.parse(response);
response_obj = JSON.parse(response);
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 188
if (response_obj.type == "success") {
if (response_obj.type == "success") {
andryyy
over 6 years ago
e1897b0
[Web] Allow to set global sieve filters
- Full commit hash
e1897b0631db96a9d05604f2eb38132122edb099- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 189
$(validation_button).next().attr({"disabled": false});
$(validation_button).next().attr({"disabled": false});
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 190
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 191
mailcow_alert_box(response_obj.msg, response_obj.type);
mailcow_alert_box(response_obj.msg, response_obj.type);
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 192
},
},
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 193
});
});
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 194
});
});
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 195
// $(document).on('DOMNodeInserted', '#prefilter_table', function () {
// $(document).on('DOMNodeInserted', '#prefilter_table', function () {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 196
// $("#active-script").closest('td').css('background-color','#b0f0a0');
// $("#active-script").closest('td').css('background-color','#b0f0a0');
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 197
// $("#inactive-script").closest('td').css('background-color','#b0f0a0');
// $("#inactive-script").closest('td').css('background-color','#b0f0a0');
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 198
// });
// });
Marcel Hofer
over 7 years ago
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 199
$('#addResourceModal').on('shown.bs.modal', function() {
$('#addResourceModal').on('shown.bs.modal', function() {
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 200
$("#multiple_bookings").val($("#multiple_bookings_select").val());
$("#multiple_bookings").val($("#multiple_bookings_select").val());
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 201
if ($("#multiple_bookings").val() == "custom") {
if ($("#multiple_bookings").val() == "custom") {
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 202
$("#multiple_bookings_custom_div").show();
$("#multiple_bookings_custom_div").show();
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 203
$("#multiple_bookings").val($("#multiple_bookings_custom").val());
$("#multiple_bookings").val($("#multiple_bookings_custom").val());
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 204
}
}
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 205
})
})
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 206
$("#multiple_bookings_select").change(function() {
$("#multiple_bookings_select").change(function() {
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 207
$("#multiple_bookings").val($("#multiple_bookings_select").val());
$("#multiple_bookings").val($("#multiple_bookings_select").val());
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 208
if ($("#multiple_bookings").val() == "custom") {
if ($("#multiple_bookings").val() == "custom") {
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 209
$("#multiple_bookings_custom_div").show();
$("#multiple_bookings_custom_div").show();
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 210
}
}
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 211
else {
else {
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 212
$("#multiple_bookings_custom_div").hide();
$("#multiple_bookings_custom_div").hide();
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 213
}
}
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 214
});
});
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 215
$("#multiple_bookings_custom").bind ("change keypress keyup blur", function () {
$("#multiple_bookings_custom").bind ("change keypress keyup blur", function () {
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 216
$("#multiple_bookings").val($("#multiple_bookings_custom").val());
$("#multiple_bookings").val($("#multiple_bookings_custom").val());
same change
7d2289c
Merge branch 'master' into admin-login
- Full commit hash
7d2289c3a7c7710d4f213704c51ed17f768b2695- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 217
});
});
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 218
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 219
function setDomainTemplateData(template){
function setDomainTemplateData(template){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 220
$("#addDomain_max_aliases").val(template.max_num_aliases_for_domain);
$("#addDomain_max_aliases").val(template.max_num_aliases_for_domain);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 221
$("#addDomain_max_mailboxes").val(template.max_num_mboxes_for_domain);
$("#addDomain_max_mailboxes").val(template.max_num_mboxes_for_domain);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 222
$("#addDomain_mailbox_quota_def").val(template.def_quota_for_mbox / 1048576);
$("#addDomain_mailbox_quota_def").val(template.def_quota_for_mbox / 1048576);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 223
$("#addDomain_mailbox_quota_m").val(template.max_quota_for_mbox / 1048576);
$("#addDomain_mailbox_quota_m").val(template.max_quota_for_mbox / 1048576);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 224
$("#addDomain_domain_quota_m").val(template.max_quota_for_domain / 1048576);
$("#addDomain_domain_quota_m").val(template.max_quota_for_domain / 1048576);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 225
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 226
if (template.gal == 1){
if (template.gal == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 227
$('#addDomain_gal').prop('checked', true);
$('#addDomain_gal').prop('checked', true);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 228
} else {
} else {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 229
$('#addDomain_gal').prop('checked', false);
$('#addDomain_gal').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 230
}
}
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
- 231
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 232
if (template.active == 1){
if (template.active == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 233
$('#addDomain_active').prop('checked', true);
$('#addDomain_active').prop('checked', true);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 234
} else {
} else {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 235
$('#addDomain_active').prop('checked', false);
$('#addDomain_active').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 236
}
}
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
- 237
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 238
$("#addDomain_rl_value").val(template.rl_value);
$("#addDomain_rl_value").val(template.rl_value);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 239
$('#addDomain_rl_frame').selectpicker('val', template.rl_frame);
$('#addDomain_rl_frame').selectpicker('val', template.rl_frame);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 240
$("#dkim_selector").val(template.dkim_selector);
$("#dkim_selector").val(template.dkim_selector);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 241
if (!template.key_size)
if (!template.key_size)
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 242
template.key_size = 2048;
template.key_size = 2048;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 243
$('#key_size').selectpicker('val', template.key_size.toString());
$('#key_size').selectpicker('val', template.key_size.toString());
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
- 244
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 245
if (template.backupmx == 1){
if (template.backupmx == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 246
$('#addDomain_relay_domain').prop('checked', true);
$('#addDomain_relay_domain').prop('checked', true);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 247
} else {
} else {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 248
$('#addDomain_relay_domain').prop('checked', false);
$('#addDomain_relay_domain').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 249
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 250
if (template.relay_all_recipients == 1){
if (template.relay_all_recipients == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 251
$('#addDomain_relay_all').prop('checked', true);
$('#addDomain_relay_all').prop('checked', true);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 252
} else {
} else {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 253
$('#addDomain_relay_all').prop('checked', false);
$('#addDomain_relay_all').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 254
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 255
if (template.relay_unknown_only == 1){
if (template.relay_unknown_only == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 256
$('#addDomain_relay_unknown_only').prop('checked', true);
$('#addDomain_relay_unknown_only').prop('checked', true);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 257
} else {
} else {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 258
$('#addDomain_relay_unknown_only').prop('checked', false);
$('#addDomain_relay_unknown_only').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 259
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 260
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
- 261
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 262
// load tags
// load tags
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 263
$('#addDomain_tags').val("");
$('#addDomain_tags').val("");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 264
$($('#addDomain_tags').parent().find(".tag-values")[0]).val("");
$($('#addDomain_tags').parent().find(".tag-values")[0]).val("");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 265
$('#addDomain_tags').parent().find(".tag-badge").remove();
$('#addDomain_tags').parent().find(".tag-badge").remove();
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 266
for (var i = 0; i < template.tags.length; i++)
for (var i = 0; i < template.tags.length; i++)
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 267
addTag($('#addDomain_tags'), template.tags[i]);
addTag($('#addDomain_tags'), template.tags[i]);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 268
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 269
function setMailboxTemplateData(template){
function setMailboxTemplateData(template){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 270
$("#addInputQuota").val(template.quota / 1048576);
$("#addInputQuota").val(template.quota / 1048576);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 271
FreddleSpl0it
12 months ago
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 272
if (template.tagged_mail_handler === "subfolder"){
if (template.tagged_mail_handler === "subfolder"){
same change
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 273
$('#tagged_mail_handler_subfolder').prop('checked', true);
$('#tagged_mail_handler_subfolder').prop('checked', true);
same change
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 274
$('#tagged_mail_handler_subject').prop('checked', false);
$('#tagged_mail_handler_subject').prop('checked', false);
same change
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 275
$('#tagged_mail_handler_none').prop('checked', false);
$('#tagged_mail_handler_none').prop('checked', false);
same change
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 276
} else if(template.tagged_mail_handler === "subject"){
} else if(template.tagged_mail_handler === "subject"){
same change
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 277
$('#tagged_mail_handler_subfolder').prop('checked', false);
$('#tagged_mail_handler_subfolder').prop('checked', false);
same change
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 278
$('#tagged_mail_handler_subject').prop('checked', true);
$('#tagged_mail_handler_subject').prop('checked', true);
same change
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 279
$('#tagged_mail_handler_none').prop('checked', false);
$('#tagged_mail_handler_none').prop('checked', false);
same change
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 280
} else if(template.tagged_mail_handler === "none"){
} else if(template.tagged_mail_handler === "none"){
same change
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 281
$('#tagged_mail_handler_subfolder').prop('checked', false);
$('#tagged_mail_handler_subfolder').prop('checked', false);
same change
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 282
$('#tagged_mail_handler_subject').prop('checked', false);
$('#tagged_mail_handler_subject').prop('checked', false);
same change
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 283
$('#tagged_mail_handler_none').prop('checked', true);
$('#tagged_mail_handler_none').prop('checked', true);
same change
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 284
} else {
} else {
same change
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 285
$('#tagged_mail_handler_subfolder').prop('checked', false);
$('#tagged_mail_handler_subfolder').prop('checked', false);
same change
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 286
$('#tagged_mail_handler_subject').prop('checked', false);
$('#tagged_mail_handler_subject').prop('checked', false);
same change
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 287
$('#tagged_mail_handler_none').prop('checked', true);
$('#tagged_mail_handler_none').prop('checked', true);
same change
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 288
}
}
same change
1e42b8d
[Web] Add delimiter_action to mailbox and mailbox_template add/edit admin forms (#6620)
- Full commit hash
1e42b8dd21fb021e1ddcbb2cae94f79146fe4d39- Author
- FreddleSpl0it <[email protected]>
- Date
- 12 months ago
- Selected line
- 289
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 290
if (template.quarantine_notification === "never"){
if (template.quarantine_notification === "never"){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 291
$('#quarantine_notification_never').prop('checked', true);
$('#quarantine_notification_never').prop('checked', true);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 292
$('#quarantine_notification_hourly').prop('checked', false);
$('#quarantine_notification_hourly').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 293
$('#quarantine_notification_daily').prop('checked', false);
$('#quarantine_notification_daily').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 294
$('#quarantine_notification_weekly').prop('checked', false);
$('#quarantine_notification_weekly').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 295
} else if(template.quarantine_notification === "hourly"){
} else if(template.quarantine_notification === "hourly"){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 296
$('#quarantine_notification_never').prop('checked', false);
$('#quarantine_notification_never').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 297
$('#quarantine_notification_hourly').prop('checked', true);
$('#quarantine_notification_hourly').prop('checked', true);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 298
$('#quarantine_notification_daily').prop('checked', false);
$('#quarantine_notification_daily').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 299
$('#quarantine_notification_weekly').prop('checked', false);
$('#quarantine_notification_weekly').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 300
} else if(template.quarantine_notification === "daily"){
} else if(template.quarantine_notification === "daily"){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 301
$('#quarantine_notification_never').prop('checked', false);
$('#quarantine_notification_never').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 302
$('#quarantine_notification_hourly').prop('checked', false);
$('#quarantine_notification_hourly').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 303
$('#quarantine_notification_daily').prop('checked', true);
$('#quarantine_notification_daily').prop('checked', true);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 304
$('#quarantine_notification_weekly').prop('checked', false);
$('#quarantine_notification_weekly').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 305
} else if(template.quarantine_notification === "weekly"){
} else if(template.quarantine_notification === "weekly"){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 306
$('#quarantine_notification_never').prop('checked', false);
$('#quarantine_notification_never').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 307
$('#quarantine_notification_hourly').prop('checked', false);
$('#quarantine_notification_hourly').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 308
$('#quarantine_notification_daily').prop('checked', false);
$('#quarantine_notification_daily').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 309
$('#quarantine_notification_weekly').prop('checked', true);
$('#quarantine_notification_weekly').prop('checked', true);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 310
} else {
} else {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 311
$('#quarantine_notification_never').prop('checked', false);
$('#quarantine_notification_never').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 312
$('#quarantine_notification_hourly').prop('checked', false);
$('#quarantine_notification_hourly').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 313
$('#quarantine_notification_daily').prop('checked', false);
$('#quarantine_notification_daily').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 314
$('#quarantine_notification_weekly').prop('checked', false);
$('#quarantine_notification_weekly').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 315
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 316
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 317
if (template.quarantine_category === "reject"){
if (template.quarantine_category === "reject"){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 318
$('#quarantine_category_reject').prop('checked', true);
$('#quarantine_category_reject').prop('checked', true);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 319
$('#quarantine_category_add_header').prop('checked', false);
$('#quarantine_category_add_header').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 320
$('#quarantine_category_all').prop('checked', false);
$('#quarantine_category_all').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 321
} else if(template.quarantine_category === "add_header"){
} else if(template.quarantine_category === "add_header"){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 322
$('#quarantine_category_reject').prop('checked', false);
$('#quarantine_category_reject').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 323
$('#quarantine_category_add_header').prop('checked', true);
$('#quarantine_category_add_header').prop('checked', true);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 324
$('#quarantine_category_all').prop('checked', false);
$('#quarantine_category_all').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 325
} else if(template.quarantine_category === "all"){
} else if(template.quarantine_category === "all"){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 326
$('#quarantine_category_reject').prop('checked', false);
$('#quarantine_category_reject').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 327
$('#quarantine_category_add_header').prop('checked', false);
$('#quarantine_category_add_header').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 328
$('#quarantine_category_all').prop('checked', true);
$('#quarantine_category_all').prop('checked', true);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 329
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 330
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 331
if (template.tls_enforce_in == 1){
if (template.tls_enforce_in == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 332
$('#tls_enforce_in').prop('checked', true);
$('#tls_enforce_in').prop('checked', true);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 333
} else {
} else {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 334
$('#tls_enforce_in').prop('checked', false);
$('#tls_enforce_in').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 335
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 336
if (template.tls_enforce_out == 1){
if (template.tls_enforce_out == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 337
$('#tls_enforce_out').prop('checked', true);
$('#tls_enforce_out').prop('checked', true);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 338
} else {
} else {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 339
$('#tls_enforce_out').prop('checked', false);
$('#tls_enforce_out').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 340
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 341
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 342
var protocol_access = [];
var protocol_access = [];
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 343
if (template.imap_access == 1){
if (template.imap_access == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 344
protocol_access.push("imap");
protocol_access.push("imap");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 345
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 346
if (template.pop3_access == 1){
if (template.pop3_access == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 347
protocol_access.push("pop3");
protocol_access.push("pop3");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 348
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 349
if (template.smtp_access == 1){
if (template.smtp_access == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 350
protocol_access.push("smtp");
protocol_access.push("smtp");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 351
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 352
if (template.sieve_access == 1){
if (template.sieve_access == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 353
protocol_access.push("sieve");
protocol_access.push("sieve");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 354
}
}
FreddleSpl0it
6 months ago
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 355
if (template.eas_access == 1){
if (template.eas_access == 1){
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 356
protocol_access.push("eas");
protocol_access.push("eas");
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 357
}
}
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 358
if (template.dav_access == 1){
if (template.dav_access == 1){
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 359
protocol_access.push("dav");
protocol_access.push("dav");
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 360
}
}
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 361
$('#protocol_access').selectpicker('val', protocol_access);
$('#protocol_access').selectpicker('val', protocol_access);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 362
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 363
var acl = [];
var acl = [];
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 364
if (template.acl_spam_alias == 1){
if (template.acl_spam_alias == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 365
acl.push("spam_alias");
acl.push("spam_alias");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 366
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 367
if (template.acl_tls_policy == 1){
if (template.acl_tls_policy == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 368
acl.push("tls_policy");
acl.push("tls_policy");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 369
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 370
if (template.acl_spam_score == 1){
if (template.acl_spam_score == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 371
acl.push("spam_score");
acl.push("spam_score");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 372
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 373
if (template.acl_spam_policy == 1){
if (template.acl_spam_policy == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 374
acl.push("spam_policy");
acl.push("spam_policy");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 375
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 376
if (template.acl_delimiter_action == 1){
if (template.acl_delimiter_action == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 377
acl.push("delimiter_action");
acl.push("delimiter_action");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 378
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 379
if (template.acl_syncjobs == 1){
if (template.acl_syncjobs == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 380
acl.push("syncjobs");
acl.push("syncjobs");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 381
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 382
if (template.acl_eas_reset == 1){
if (template.acl_eas_reset == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 383
acl.push("eas_reset");
acl.push("eas_reset");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 384
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 385
if (template.acl_sogo_profile_reset == 1){
if (template.acl_sogo_profile_reset == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 386
acl.push("sogo_profile_reset");
acl.push("sogo_profile_reset");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 387
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 388
if (template.acl_pushover == 1){
if (template.acl_pushover == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 389
acl.push("pushover");
acl.push("pushover");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 390
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 391
if (template.acl_quarantine == 1){
if (template.acl_quarantine == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 392
acl.push("quarantine");
acl.push("quarantine");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 393
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 394
if (template.acl_quarantine_attachments == 1){
if (template.acl_quarantine_attachments == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 395
acl.push("quarantine_attachments");
acl.push("quarantine_attachments");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 396
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 397
if (template.acl_quarantine_notification == 1){
if (template.acl_quarantine_notification == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 398
acl.push("quarantine_notification");
acl.push("quarantine_notification");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 399
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 400
if (template.acl_quarantine_category == 1){
if (template.acl_quarantine_category == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 401
acl.push("quarantine_category");
acl.push("quarantine_category");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 402
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 403
if (template.acl_app_passwds == 1){
if (template.acl_app_passwds == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 404
acl.push("app_passwds");
acl.push("app_passwds");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 405
}
}
FreddleSpl0it
almost 2 years ago
fbecd60
[Web] add new pw_reset acl to mailbox templates
- Full commit hash
fbecd60e563d3e924e2c085681a5dfe976e692d9- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 406
if (template.acl_pw_reset == 1){
if (template.acl_pw_reset == 1){
same change
fbecd60
[Web] add new pw_reset acl to mailbox templates
- Full commit hash
fbecd60e563d3e924e2c085681a5dfe976e692d9- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 407
acl.push("pw_reset");
acl.push("pw_reset");
same change
fbecd60
[Web] add new pw_reset acl to mailbox templates
- Full commit hash
fbecd60e563d3e924e2c085681a5dfe976e692d9- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 408
}
}
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 409
$('#user_acl').selectpicker('val', acl);
$('#user_acl').selectpicker('val', acl);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 410
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 411
$('#rl_value').val(template.rl_value);
$('#rl_value').val(template.rl_value);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 412
if (template.rl_frame){
if (template.rl_frame){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 413
$('#rl_frame').selectpicker('val', template.rl_frame);
$('#rl_frame').selectpicker('val', template.rl_frame);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 414
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 415
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 416
if (template.active){
if (template.active){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 417
$('#mbox_active').selectpicker('val', template.active.toString());
$('#mbox_active').selectpicker('val', template.active.toString());
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 418
} else {
} else {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 419
$('#mbox_active').selectpicker('val', '');
$('#mbox_active').selectpicker('val', '');
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 420
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 421
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 422
if (template.force_pw_update == 1){
if (template.force_pw_update == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 423
$('#force_pw_update').prop('checked', true);
$('#force_pw_update').prop('checked', true);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 424
} else {
} else {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 425
$('#force_pw_update').prop('checked', false);
$('#force_pw_update').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 426
}
}
Snafu
about 2 months ago
0fafda6
Fix force_tfa not available in mailbox template #7216
- Full commit hash
0fafda696bc9ee997e3c2a368b28f4600037aaca- Author
- Snafu <[email protected]>
- Date
- about 2 months ago
- Selected line
- 427
if (template.force_tfa == 1){
if (template.force_tfa == 1){
same change
0fafda6
Fix force_tfa not available in mailbox template #7216
- Full commit hash
0fafda696bc9ee997e3c2a368b28f4600037aaca- Author
- Snafu <[email protected]>
- Date
- about 2 months ago
- Selected line
- 428
$('#force_tfa').prop('checked', true);
$('#force_tfa').prop('checked', true);
same change
0fafda6
Fix force_tfa not available in mailbox template #7216
- Full commit hash
0fafda696bc9ee997e3c2a368b28f4600037aaca- Author
- Snafu <[email protected]>
- Date
- about 2 months ago
- Selected line
- 429
} else {
} else {
same change
0fafda6
Fix force_tfa not available in mailbox template #7216
- Full commit hash
0fafda696bc9ee997e3c2a368b28f4600037aaca- Author
- Snafu <[email protected]>
- Date
- about 2 months ago
- Selected line
- 430
$('#force_tfa').prop('checked', false);
$('#force_tfa').prop('checked', false);
same change
0fafda6
Fix force_tfa not available in mailbox template #7216
- Full commit hash
0fafda696bc9ee997e3c2a368b28f4600037aaca- Author
- Snafu <[email protected]>
- Date
- about 2 months ago
- Selected line
- 431
}
}
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 432
if (template.sogo_access == 1){
if (template.sogo_access == 1){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 433
$('#sogo_access').prop('checked', true);
$('#sogo_access').prop('checked', true);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 434
} else {
} else {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 435
$('#sogo_access').prop('checked', false);
$('#sogo_access').prop('checked', false);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 436
}
}
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
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 438
// load tags
// load tags
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 439
$('#addMailbox_tags').val("");
$('#addMailbox_tags').val("");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 440
$($('#addMailbox_tags').parent().find(".tag-values")[0]).val("");
$($('#addMailbox_tags').parent().find(".tag-values")[0]).val("");
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 441
$('#addMailbox_tags').parent().find(".tag-badge").remove();
$('#addMailbox_tags').parent().find(".tag-badge").remove();
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 442
for (var i = 0; i < template.tags.length; i++)
for (var i = 0; i < template.tags.length; i++)
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 443
addTag($('#addMailbox_tags'), template.tags[i]);
addTag($('#addMailbox_tags'), template.tags[i]);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 444
}
}
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 445
});
});
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 446
jQuery(function($){
jQuery(function($){
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 447
// http://stackoverflow.com/questions/46155/validate-email-address-in-javascript
// http://stackoverflow.com/questions/46155/validate-email-address-in-javascript
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 448
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]}
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 449
function unix_time_format(i){return""==i?'<i class="bi bi-x"></i>':new Date(i?1e3*i:0).toLocaleDateString(void 0,{year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit"})}
function unix_time_format(i){return""==i?'<i class="bi bi-x"></i>':new Date(i?1e3*i:0).toLocaleDateString(void 0,{year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit"})}
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 450
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 451
$(".refresh_table").on('click', function(e) {
$(".refresh_table").on('click', function(e) {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 452
e.preventDefault();
e.preventDefault();
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 453
var table_name = $(this).data('table');
var table_name = $(this).data('table');
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 454
FreddleSpl0it
almost 4 years ago
8c4dbae
rework datatables
- Full commit hash
8c4dbaec4f0d75c6d9bd79e46495dbed46de9fee- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 455
if ($.fn.DataTable.isDataTable('#' + table_name))
if ($.fn.DataTable.isDataTable('#' + table_name))
same change
8c4dbae
rework datatables
- Full commit hash
8c4dbaec4f0d75c6d9bd79e46495dbed46de9fee- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 456
$('#' + table_name).DataTable().ajax.reload();
$('#' + table_name).DataTable().ajax.reload();
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 457
});
});
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 458
function draw_domain_table() {
function draw_domain_table() {
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 459
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 460
if ($.fn.DataTable.isDataTable('#domain_table') ) {
if ($.fn.DataTable.isDataTable('#domain_table') ) {
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 461
$('#domain_table').DataTable().columns.adjust().responsive.recalc();
$('#domain_table').DataTable().columns.adjust().responsive.recalc();
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 462
return;
return;
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 463
}
}
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 464
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 465
var table = $('#domain_table').DataTable({
var table = $('#domain_table').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 466
responsive: true,
responsive: true,
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 467
processing: true,
processing: true,
Kristian Feldsam
over 2 years ago
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 468
serverSide: true,
serverSide: true,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 469
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 470
pageLength: pagination_size,
pageLength: pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 471
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 472
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 473
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
"<'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>",
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 474
language: lang_datatables,
language: lang_datatables,
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 475
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 476
hideTableExpandCollapseBtn('#tab-domains', '#domain_table');
hideTableExpandCollapseBtn('#tab-domains', '#domain_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 477
},
},
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 478
ajax: {
ajax: {
FreddleSpl0it
5 months ago
43f570e
[Web] switch from GET to POST for datatable requests
- Full commit hash
43f570e7617dd5925915c05a6f87b1d3a2630dd1- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 479
type: "POST",
type: "POST",
same change
43f570e
[Web] switch from GET to POST for datatable requests
- Full commit hash
43f570e7617dd5925915c05a6f87b1d3a2630dd1- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 480
url: "/api/v1/search/domain",
url: "/api/v1/search/domain",
same change
43f570e
[Web] switch from GET to POST for datatable requests
- Full commit hash
43f570e7617dd5925915c05a6f87b1d3a2630dd1- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 481
contentType: "application/json",
contentType: "application/json",
same change
43f570e
[Web] switch from GET to POST for datatable requests
- Full commit hash
43f570e7617dd5925915c05a6f87b1d3a2630dd1- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 482
processData: false,
processData: false,
same change
43f570e
[Web] switch from GET to POST for datatable requests
- Full commit hash
43f570e7617dd5925915c05a6f87b1d3a2630dd1- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 483
data: function(d) {
data: function(d) {
same change
43f570e
[Web] switch from GET to POST for datatable requests
- Full commit hash
43f570e7617dd5925915c05a6f87b1d3a2630dd1- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 484
return JSON.stringify(d);
return JSON.stringify(d);
same change
43f570e
[Web] switch from GET to POST for datatable requests
- Full commit hash
43f570e7617dd5925915c05a6f87b1d3a2630dd1- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 485
},
},
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 486
dataSrc: function(json){
dataSrc: function(json){
Kristian Feldsam
over 2 years ago
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 487
$.each(json.data, function(i, item) {
$.each(json.data, function(i, item) {
FreddleSpl0it
over 3 years ago
6704377
[Web] escape more html data
- Full commit hash
6704377402138576e25b5daa062f7d5ba203987e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 488
item.domain_name = escapeHtml(item.domain_name);
item.domain_name = escapeHtml(item.domain_name);
FreddleSpl0it
over 2 years ago
288dbfa
[Web] display human readable domainnames instead of punycode
- Full commit hash
288dbfa37c59666e548915e66cd0cd3902f08eed- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 489
item.domain_h_name = escapeHtml(item.domain_h_name);
item.domain_h_name = escapeHtml(item.domain_h_name);
same change
288dbfa
[Web] display human readable domainnames instead of punycode
- Full commit hash
288dbfa37c59666e548915e66cd0cd3902f08eed- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 490
if (item.domain_name != item.domain_h_name){
if (item.domain_name != item.domain_h_name){
same change
288dbfa
[Web] display human readable domainnames instead of punycode
- Full commit hash
288dbfa37c59666e548915e66cd0cd3902f08eed- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 491
item.domain_h_name = item.domain_h_name + '<small class="d-block">' + item.domain_name + '</small>';
item.domain_h_name = item.domain_h_name + '<small class="d-block">' + item.domain_name + '</small>';
same change
288dbfa
[Web] display human readable domainnames instead of punycode
- Full commit hash
288dbfa37c59666e548915e66cd0cd3902f08eed- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 492
}
}
FreddleSpl0it
over 3 years ago
6704377
[Web] escape more html data
- Full commit hash
6704377402138576e25b5daa062f7d5ba203987e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 493
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 494
item.aliases = item.aliases_in_domain + " / " + item.max_num_aliases_for_domain;
item.aliases = item.aliases_in_domain + " / " + item.max_num_aliases_for_domain;
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 495
item.mailboxes = item.mboxes_in_domain + " / " + item.max_num_mboxes_for_domain;
item.mailboxes = item.mboxes_in_domain + " / " + item.max_num_mboxes_for_domain;
andryyy
over 6 years ago
92f8b4a
[Web] Add domain statistics
- Full commit hash
92f8b4a09156c5b30d6f4fc49e82a38208d500a6- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 496
item.quota = item.quota_used_in_domain + "/" + item.max_quota_for_domain + "/" + item.bytes_total;
item.quota = item.quota_used_in_domain + "/" + item.max_quota_for_domain + "/" + item.bytes_total;
same change
92f8b4a
[Web] Add domain statistics
- Full commit hash
92f8b4a09156c5b30d6f4fc49e82a38208d500a6- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 497
item.stats = item.msgs_total + "/" + item.bytes_total;
item.stats = item.msgs_total + "/" + item.bytes_total;
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 498
same change
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 499
if (!item.rl) item.rl = '∞';
if (!item.rl) item.rl = '∞';
same change
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 500
else {
else {
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 501
item.rl = $.map(item.rl, function(e){
item.rl = $.map(item.rl, function(e){
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 502
return e;
return e;
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 503
}).join('/1');
}).join('/1');
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 504
}
}
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 505
friedPotat0
almost 7 years ago
1b54d75
Prevent event propagation for remaining tables
- Full commit hash
1b54d757161b241537021d13d7eec97033523907- Author
- friedPotat0 <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 506
item.def_quota_for_mbox = humanFileSize(item.def_quota_for_mbox);
item.def_quota_for_mbox = humanFileSize(item.def_quota_for_mbox);
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 507
item.max_quota_for_mbox = humanFileSize(item.max_quota_for_mbox);
item.max_quota_for_mbox = humanFileSize(item.max_quota_for_mbox);
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
- 508
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="domain" name="multi_select" value="' + encodeURIComponent(item.domain_name) + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="domain" name="multi_select" value="' + encodeURIComponent(item.domain_name) + '" />';
FreddleSpl0it
about 4 years ago
fdb56de
[BS5] jquery datatable - add classes to action column
- Full commit hash
fdb56de0a833042c72d5fcd528607482f89f7a05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 509
item.action = '<div class="btn-group">';
item.action = '<div class="btn-group">';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 510
if (role == "admin") {
if (role == "admin") {
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
- 511
item.action += '<a href="/edit/domain/' + encodeURIComponent(item.domain_name) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
item.action += '<a href="/edit/domain/' + encodeURIComponent(item.domain_name) + '" class="btn btn-sm 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
- 512
'<a href="#" data-action="delete_selected" data-id="single-domain" data-api-url="delete/domain" data-item="' + encodeURIComponent(item.domain_name) + '" class="btn btn-sm 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-domain" data-api-url="delete/domain" data-item="' + encodeURIComponent(item.domain_name) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</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
- 513
'<a href="#dnsInfoModal" class="btn btn-sm btn-xs-lg btn-info" data-bs-toggle="modal" data-domain="' + encodeURIComponent(item.domain_name) + '"><i class="bi bi-globe2"></i> DNS</a></div>';
'<a href="#dnsInfoModal" class="btn btn-sm btn-xs-lg btn-info" data-bs-toggle="modal" data-domain="' + encodeURIComponent(item.domain_name) + '"><i class="bi bi-globe2"></i> DNS</a></div>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 514
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 515
else {
else {
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
- 516
item.action += '<a href="/edit/domain/' + encodeURIComponent(item.domain_name) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
item.action += '<a href="/edit/domain/' + encodeURIComponent(item.domain_name) + '" class="btn btn-sm 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
- 517
'<a href="#dnsInfoModal" class="btn btn-sm btn-xs-lg btn-xs-half btn-info" data-bs-toggle="modal" data-domain="' + encodeURIComponent(item.domain_name) + '"><i class="bi bi-globe2"></i> DNS</a></div>';
'<a href="#dnsInfoModal" class="btn btn-sm btn-xs-lg btn-xs-half btn-info" data-bs-toggle="modal" data-domain="' + encodeURIComponent(item.domain_name) + '"><i class="bi bi-globe2"></i> DNS</a></div>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 518
}
}
andryyy
almost 5 years ago
2cd0b56
[Web] Various PHP 8 fixes, partly fixes #4219
- Full commit hash
2cd0b56b143b8a2741488ae1735bf6d74253247f- Author
- andryyy <[email protected]>
- Date
- almost 5 years ago
- Selected line
- 519
FreddleSpl0it
about 4 years ago
549ff7d
Add Domain and Mailbox tagging (#4569)
- Full commit hash
549ff7d100751837278e245cf3295e11eb85b667- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 520
if (Array.isArray(item.tags)){
if (Array.isArray(item.tags)){
same change
549ff7d
Add Domain and Mailbox tagging (#4569)
- Full commit hash
549ff7d100751837278e245cf3295e11eb85b667- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 521
var tags = '';
var tags = '';
same change
549ff7d
Add Domain and Mailbox tagging (#4569)
- Full commit hash
549ff7d100751837278e245cf3295e11eb85b667- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 522
for (var i = 0; i < item.tags.length; i++)
for (var i = 0; i < item.tags.length; i++)
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 523
tags += '<span class="badge bg-primary tag-badge"><i class="bi bi-tag-fill"></i> ' + escapeHtml(item.tags[i]) + '</span>';
tags += '<span class="badge bg-primary tag-badge"><i class="bi bi-tag-fill"></i> ' + escapeHtml(item.tags[i]) + '</span>';
FreddleSpl0it
about 4 years ago
549ff7d
Add Domain and Mailbox tagging (#4569)
- Full commit hash
549ff7d100751837278e245cf3295e11eb85b667- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 524
item.tags = tags;
item.tags = tags;
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 525
} else {
} else {
same change
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 526
item.tags = '';
item.tags = '';
FreddleSpl0it
about 4 years ago
549ff7d
Add Domain and Mailbox tagging (#4569)
- Full commit hash
549ff7d100751837278e245cf3295e11eb85b667- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 527
}
}
same change
549ff7d
Add Domain and Mailbox tagging (#4569)
- Full commit hash
549ff7d100751837278e245cf3295e11eb85b667- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 528
andryyy
almost 6 years ago
d9b91fc
[Web] Important: Removed unnecessary *_int attributes from GET elements, _only_ returning int values now (same for all attributes which were provided as html char and int)
- Full commit hash
d9b91fc04f286eaba4266ca60254a02dc5e91867- Author
- andryyy <[email protected]>
- Date
- almost 6 years ago
- Selected line
- 529
if (item.backupmx == 1) {
if (item.backupmx == 1) {
same change
d9b91fc
[Web] Important: Removed unnecessary *_int attributes from GET elements, _only_ returning int values now (same for all attributes which were provided as html char and int)
- Full commit hash
d9b91fc04f286eaba4266ca60254a02dc5e91867- Author
- andryyy <[email protected]>
- Date
- almost 6 years ago
- Selected line
- 530
if (item.relay_unknown_only == 1) {
if (item.relay_unknown_only == 1) {
FreddleSpl0it
over 2 years ago
288dbfa
[Web] display human readable domainnames instead of punycode
- Full commit hash
288dbfa37c59666e548915e66cd0cd3902f08eed- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 531
item.domain_h_name = '<div class="badge fs-7 bg-info">Relay Non-Local</div> ' + item.domain_h_name;
item.domain_h_name = '<div class="badge fs-7 bg-info">Relay Non-Local</div> ' + item.domain_h_name;
andryyy
almost 6 years ago
d9b91fc
[Web] Important: Removed unnecessary *_int attributes from GET elements, _only_ returning int values now (same for all attributes which were provided as html char and int)
- Full commit hash
d9b91fc04f286eaba4266ca60254a02dc5e91867- Author
- andryyy <[email protected]>
- Date
- almost 6 years ago
- Selected line
- 532
} else if (item.relay_all_recipients == 1) {
} else if (item.relay_all_recipients == 1) {
FreddleSpl0it
over 2 years ago
288dbfa
[Web] display human readable domainnames instead of punycode
- Full commit hash
288dbfa37c59666e548915e66cd0cd3902f08eed- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 533
item.domain_h_name = '<div class="badge fs-7 bg-info">Relay All</div> ' + item.domain_h_name;
item.domain_h_name = '<div class="badge fs-7 bg-info">Relay All</div> ' + item.domain_h_name;
andryyy
over 6 years ago
0095388
[Web] Show label for relayed domains; Return total bytes and msgs of domain in API (WIP)
- Full commit hash
0095388f272a166c05d08e0b9fcb20b0818243ed- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 534
} else {
} else {
FreddleSpl0it
over 2 years ago
288dbfa
[Web] display human readable domainnames instead of punycode
- Full commit hash
288dbfa37c59666e548915e66cd0cd3902f08eed- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 535
item.domain_h_name = '<div class="badge fs-7 bg-info">Relay</div> ' + item.domain_h_name;
item.domain_h_name = '<div class="badge fs-7 bg-info">Relay</div> ' + item.domain_h_name;
andryyy
over 6 years ago
0095388
[Web] Show label for relayed domains; Return total bytes and msgs of domain in API (WIP)
- Full commit hash
0095388f272a166c05d08e0b9fcb20b0818243ed- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 536
}
}
andryyy
over 6 years ago
4dbd2bb
[Web] Fix DNS check for relayed domain
- Full commit hash
4dbd2bbf4f90b7528faf408652537ae39d23d732- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 537
}
}
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 538
});
});
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 539
Kristian Feldsam
over 2 years ago
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 540
return json.data;
return json.data;
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 541
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 542
},
},
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 543
columns: [
columns: [
FreddleSpl0it
about 4 years ago
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 544
{
{
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 545
// placeholder, so checkbox will not block child row toggle
// placeholder, so checkbox will not block child row toggle
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 546
title: '',
title: '',
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 547
data: null,
data: null,
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 548
searchable: false,
searchable: false,
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 549
orderable: false,
orderable: false,
FreddleSpl0it
about 4 years ago
4ce05d4
[BS5] datatables add responsivePrio and adjust className
- Full commit hash
4ce05d4d4d0aa66469c3490c4c3c0e0da7ec2699- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 550
defaultContent: '',
defaultContent: '',
same change
4ce05d4
[BS5] datatables add responsivePrio and adjust className
- Full commit hash
4ce05d4d4d0aa66469c3490c4c3c0e0da7ec2699- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 551
responsivePriority: 1
responsivePriority: 1
andryyy
about 7 years ago
cf4c5df
[Web] Disable refresh button on reload, re-enable after table init
- Full commit hash
cf4c5df42760ea3102d669e088f7878c12acb595- Author
- andryyy <[email protected]>
- Date
- about 7 years ago
- Selected line
- 552
},
},
FreddleSpl0it
about 4 years ago
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 553
{
{
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 554
title: '',
title: '',
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 555
data: 'chkbox',
data: 'chkbox',
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 556
searchable: false,
searchable: false,
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 557
orderable: false,
orderable: false,
FreddleSpl0it
about 4 years ago
4ce05d4
[BS5] datatables add responsivePrio and adjust className
- Full commit hash
4ce05d4d4d0aa66469c3490c4c3c0e0da7ec2699- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 558
defaultContent: '',
defaultContent: '',
same change
4ce05d4
[BS5] datatables add responsivePrio and adjust className
- Full commit hash
4ce05d4d4d0aa66469c3490c4c3c0e0da7ec2699- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 559
responsivePriority: 2
responsivePriority: 2
andryyy
about 7 years ago
9529b7a
[Web] Various UI fixes
- Full commit hash
9529b7a542d31e0db56e26408a38bd1a2db40d49- Author
- andryyy <[email protected]>
- Date
- about 7 years ago
- Selected line
- 560
},
},
FreddleSpl0it
about 4 years ago
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 561
{
{
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 562
title: lang.domain,
title: lang.domain,
FreddleSpl0it
over 2 years ago
288dbfa
[Web] display human readable domainnames instead of punycode
- Full commit hash
288dbfa37c59666e548915e66cd0cd3902f08eed- Author
- FreddleSpl0it <[email protected]>
- Date
- over 2 years ago
- Selected line
- 563
data: 'domain_h_name',
data: 'domain_h_name',
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 564
responsivePriority: 3,
responsivePriority: 3,
same change
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 565
defaultContent: ''
defaultContent: ''
FreddleSpl0it
about 4 years ago
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 566
},
},
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 567
{
{
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 568
title: lang.aliases,
title: lang.aliases,
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 569
data: 'aliases',
data: 'aliases',
Kristian Feldsam
over 2 years ago
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 570
searchable: false,
searchable: false,
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 571
defaultContent: ''
defaultContent: ''
FreddleSpl0it
about 4 years ago
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 572
},
},
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 573
{
{
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 574
title: lang.mailboxes,
title: lang.mailboxes,
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 575
data: 'mailboxes',
data: 'mailboxes',
Kristian Feldsam
over 2 years ago
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 576
searchable: false,
searchable: false,
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 577
responsivePriority: 4,
responsivePriority: 4,
same change
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 578
defaultContent: ''
defaultContent: ''
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 579
},
},
FreddleSpl0it
about 4 years ago
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 580
{
{
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 581
title: lang.domain_quota,
title: lang.domain_quota,
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 582
data: 'quota',
data: 'quota',
Kristian Feldsam
over 2 years ago
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 583
searchable: false,
searchable: false,
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 584
defaultContent: '',
defaultContent: '',
FreddleSpl0it
about 4 years ago
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 585
render: function (data, type) {
render: function (data, type) {
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 586
data = data.split("/");
data = data.split("/");
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 587
return humanFileSize(data[0]) + " / " + humanFileSize(data[1]);
return humanFileSize(data[0]) + " / " + humanFileSize(data[1]);
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 588
}
}
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 589
},
},
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 590
{
{
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 591
title: lang.stats,
title: lang.stats,
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 592
data: 'stats',
data: 'stats',
Kristian Feldsam
over 2 years ago
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 593
searchable: false,
searchable: false,
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 594
defaultContent: '',
defaultContent: '',
FreddleSpl0it
about 4 years ago
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 595
render: function (data, type) {
render: function (data, type) {
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 596
data = data.split("/");
data = data.split("/");
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 597
return '<i class="bi bi-files"></i> ' + data[0] + ' / ' + humanFileSize(data[1]);
return '<i class="bi bi-files"></i> ' + data[0] + ' / ' + humanFileSize(data[1]);
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 598
}
}
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 599
},
},
FreddleSpl0it
about 4 years ago
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 600
{
{
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 601
title: lang.mailbox_defquota,
title: lang.mailbox_defquota,
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 602
data: 'def_quota_for_mbox',
data: 'def_quota_for_mbox',
Kristian Feldsam
over 2 years ago
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 603
searchable: false,
searchable: false,
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 604
defaultContent: ''
defaultContent: ''
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 605
},
},
FreddleSpl0it
about 4 years ago
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 606
{
{
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 607
title: lang.mailbox_quota,
title: lang.mailbox_quota,
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 608
data: 'max_quota_for_mbox',
data: 'max_quota_for_mbox',
Kristian Feldsam
over 2 years ago
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 609
searchable: false,
searchable: false,
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 610
defaultContent: ''
defaultContent: ''
andryyy
over 6 years ago
59a2ea0
[Web, Dovecot] Show last IMAP and POP3 logins, toggle via vars.inc.php SHOW_LAST_LOGIN
- Full commit hash
59a2ea095972112f6b9317fedeacf5d551592b76- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 611
},
},
FreddleSpl0it
about 4 years ago
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 612
{
{
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 613
title: 'RL',
title: 'RL',
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 614
data: 'rl',
data: 'rl',
Kristian Feldsam
over 2 years ago
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 615
searchable: false,
searchable: false,
same change
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 616
orderable: false,
orderable: false,
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 617
defaultContent: ''
defaultContent: ''
FreddleSpl0it
about 4 years ago
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 618
},
},
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 619
{
{
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 620
title: lang.backup_mx,
title: lang.backup_mx,
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 621
data: 'backupmx',
data: 'backupmx',
Kristian Feldsam
over 2 years ago
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 622
searchable: false,
searchable: false,
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 623
defaultContent: '',
defaultContent: '',
Kristian Feldsam
over 2 years ago
4dad000
Domains datatable - server side processing ordering
- Full commit hash
4dad0002cd72a6464f6193bd51092293a897078b- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 624
render: function (data, type){
render: function (data, type){
same change
4dad000
Domains datatable - server side processing ordering
- Full commit hash
4dad0002cd72a6464f6193bd51092293a897078b- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 625
return 1==data ? '<i class="bi bi-check-lg"></i>' : 0==data && '<i class="bi bi-x-lg"></i>';
return 1==data ? '<i class="bi bi-check-lg"></i>' : 0==data && '<i class="bi bi-x-lg"></i>';
FreddleSpl0it
about 4 years ago
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 626
}
}
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 627
},
},
FreddleSpl0it
about 4 years ago
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 628
{
{
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 629
title: lang.domain_admins,
title: lang.domain_admins,
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 630
data: 'domain_admins',
data: 'domain_admins',
Kristian Feldsam
over 2 years ago
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 631
searchable: false,
searchable: false,
same change
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 632
orderable: false,
orderable: false,
FreddleSpl0it
almost 4 years ago
8c4dbae
rework datatables
- Full commit hash
8c4dbaec4f0d75c6d9bd79e46495dbed46de9fee- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 633
defaultContent: '',
defaultContent: '',
same change
8c4dbae
rework datatables
- Full commit hash
8c4dbaec4f0d75c6d9bd79e46495dbed46de9fee- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 634
className: 'none'
className: 'none'
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 635
},
},
FreddleSpl0it
over 3 years ago
c8f69ff
show created_on, last_modified for domain, mailbox
- Full commit hash
c8f69ffe77c7e8c3b4e5a40466cf37fd8513dc5e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 636
{
{
same change
c8f69ff
show created_on, last_modified for domain, mailbox
- Full commit hash
c8f69ffe77c7e8c3b4e5a40466cf37fd8513dc5e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 637
title: lang.created_on,
title: lang.created_on,
same change
c8f69ff
show created_on, last_modified for domain, mailbox
- Full commit hash
c8f69ffe77c7e8c3b4e5a40466cf37fd8513dc5e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 638
data: 'created',
data: 'created',
Kristian Feldsam
over 2 years ago
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 639
searchable: false,
searchable: false,
same change
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 640
orderable: false,
orderable: false,
FreddleSpl0it
over 3 years ago
c8f69ff
show created_on, last_modified for domain, mailbox
- Full commit hash
c8f69ffe77c7e8c3b4e5a40466cf37fd8513dc5e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 641
defaultContent: '',
defaultContent: '',
same change
c8f69ff
show created_on, last_modified for domain, mailbox
- Full commit hash
c8f69ffe77c7e8c3b4e5a40466cf37fd8513dc5e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 642
className: 'none'
className: 'none'
same change
c8f69ff
show created_on, last_modified for domain, mailbox
- Full commit hash
c8f69ffe77c7e8c3b4e5a40466cf37fd8513dc5e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 643
},
},
same change
c8f69ff
show created_on, last_modified for domain, mailbox
- Full commit hash
c8f69ffe77c7e8c3b4e5a40466cf37fd8513dc5e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 644
{
{
same change
c8f69ff
show created_on, last_modified for domain, mailbox
- Full commit hash
c8f69ffe77c7e8c3b4e5a40466cf37fd8513dc5e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 645
title: lang.last_modified,
title: lang.last_modified,
same change
c8f69ff
show created_on, last_modified for domain, mailbox
- Full commit hash
c8f69ffe77c7e8c3b4e5a40466cf37fd8513dc5e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 646
data: 'modified',
data: 'modified',
Kristian Feldsam
over 2 years ago
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 647
searchable: false,
searchable: false,
same change
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 648
orderable: false,
orderable: false,
FreddleSpl0it
over 3 years ago
c8f69ff
show created_on, last_modified for domain, mailbox
- Full commit hash
c8f69ffe77c7e8c3b4e5a40466cf37fd8513dc5e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 649
defaultContent: '',
defaultContent: '',
same change
c8f69ff
show created_on, last_modified for domain, mailbox
- Full commit hash
c8f69ffe77c7e8c3b4e5a40466cf37fd8513dc5e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 650
className: 'none'
className: 'none'
same change
c8f69ff
show created_on, last_modified for domain, mailbox
- Full commit hash
c8f69ffe77c7e8c3b4e5a40466cf37fd8513dc5e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 651
},
},
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 652
{
{
same change
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 653
title: 'Tags',
title: 'Tags',
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 654
data: 'tags',
data: 'tags',
Kristian Feldsam
over 2 years ago
ac4f131
Domains and Mailboxes datatable - server side processing - filtering by tags
- Full commit hash
ac4f131fa8f1629b1c831478d020f5f1b6be4261- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 655
searchable: true,
searchable: true,
Kristian Feldsam
over 2 years ago
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 656
orderable: false,
orderable: false,
FreddleSpl0it
almost 4 years ago
8c4dbae
rework datatables
- Full commit hash
8c4dbaec4f0d75c6d9bd79e46495dbed46de9fee- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 657
defaultContent: '',
defaultContent: '',
same change
8c4dbae
rework datatables
- Full commit hash
8c4dbaec4f0d75c6d9bd79e46495dbed46de9fee- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 658
className: 'none'
className: 'none'
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 659
},
},
same change
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 660
{
{
same change
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 661
title: lang.active,
title: lang.active,
same change
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 662
data: 'active',
data: 'active',
Kristian Feldsam
over 2 years ago
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 663
searchable: false,
searchable: false,
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 664
defaultContent: '',
defaultContent: '',
FreddleSpl0it
almost 4 years ago
8c4dbae
rework datatables
- Full commit hash
8c4dbaec4f0d75c6d9bd79e46495dbed46de9fee- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 665
responsivePriority: 6,
responsivePriority: 6,
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 666
render: function (data, type) {
render: function (data, type) {
goodygh
over 3 years ago
800a0ac
Fix sorting for active domain in domains table
- Full commit hash
800a0ace71c7b7ad5c0964df538faec7b4df8654- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 667
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':(0==data?'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>':2==data&&'—');
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':(0==data?'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>':2==data&&'—');
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 668
}
}
same change
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 669
},
},
FreddleSpl0it
about 4 years ago
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 670
{
{
same change
09ae374
[BS5] jquery datatables disable orderable checkboxes
- Full commit hash
09ae37410e5217f157c6865a2b03482ecb55a7c2- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 671
title: lang.action,
title: lang.action,
FreddleSpl0it
about 4 years ago
df56d73
[BS5] jquery datatable - add classes to action column
- Full commit hash
df56d73cecf6bc135ab25d929d52f40545eb2ceb- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 672
data: 'action',
data: 'action',
Kristian Feldsam
over 2 years ago
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 673
searchable: false,
searchable: false,
same change
3e194c7
Domains datatable - server side processing
- Full commit hash
3e194c79060b84d04ce0b2c577ea4b68c7d8d732- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 674
orderable: false,
orderable: false,
FreddleSpl0it
over 3 years ago
72e8180
[Web] datatable adjustment
- Full commit hash
72e8180c6be0f8ae9444e4ae10129ffa830c0c9b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 675
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md dt-text-right',
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md dt-text-right',
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 676
responsivePriority: 5,
responsivePriority: 5,
same change
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 677
defaultContent: ''
defaultContent: ''
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 678
},
},
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 679
]
]
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
- 680
});
});
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 681
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 682
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 683
hideTableExpandCollapseBtn('#tab-domains', '#domain_table');
hideTableExpandCollapseBtn('#tab-domains', '#domain_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 684
});
});
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 685
}
}
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 686
function draw_templates_domain_table() {
function draw_templates_domain_table() {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 687
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 688
if ($.fn.DataTable.isDataTable('#templates_domain_table') ) {
if ($.fn.DataTable.isDataTable('#templates_domain_table') ) {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 689
$('#templates_domain_table').DataTable().columns.adjust().responsive.recalc();
$('#templates_domain_table').DataTable().columns.adjust().responsive.recalc();
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 690
return;
return;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 691
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 692
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 693
var table = $('#templates_domain_table').DataTable({
var table = $('#templates_domain_table').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 694
responsive: true,
responsive: true,
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 695
processing: true,
processing: true,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 696
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 697
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 698
pageLength: pagination_size,
pageLength: pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 699
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 700
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 701
"<'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>>",
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 702
language: lang_datatables,
language: lang_datatables,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 703
order: [[2, 'desc']],
order: [[2, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 704
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 705
hideTableExpandCollapseBtn('#tab-templates-domains', '#templates_domain_table');
hideTableExpandCollapseBtn('#tab-templates-domains', '#templates_domain_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 706
},
},
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 707
ajax: {
ajax: {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 708
type: "GET",
type: "GET",
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 709
url: "/api/v1/get/domain/template/all",
url: "/api/v1/get/domain/template/all",
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 710
dataSrc: function(json){
dataSrc: function(json){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 711
$.each(json, function (i, item) {
$.each(json, 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
- 712
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="domain_template" name="multi_select" value="' + encodeURIComponent(item.id) + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="domain_template" name="multi_select" value="' + encodeURIComponent(item.id) + '" />';
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 713
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 714
item.attributes.def_quota_for_mbox = humanFileSize(item.attributes.def_quota_for_mbox);
item.attributes.def_quota_for_mbox = humanFileSize(item.attributes.def_quota_for_mbox);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 715
item.attributes.max_quota_for_mbox = humanFileSize(item.attributes.max_quota_for_mbox);
item.attributes.max_quota_for_mbox = humanFileSize(item.attributes.max_quota_for_mbox);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 716
item.attributes.max_quota_for_domain = humanFileSize(item.attributes.max_quota_for_domain);
item.attributes.max_quota_for_domain = humanFileSize(item.attributes.max_quota_for_domain);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 717
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 718
item.template = escapeHtml(item.template);
item.template = escapeHtml(item.template);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 719
if (item.attributes.rl_frame === "s"){
if (item.attributes.rl_frame === "s"){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 720
item.attributes.rl_frame = lang_rl.second;
item.attributes.rl_frame = lang_rl.second;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 721
} else if (item.attributes.rl_frame === "m"){
} else if (item.attributes.rl_frame === "m"){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 722
item.attributes.rl_frame = lang_rl.minute;
item.attributes.rl_frame = lang_rl.minute;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 723
} else if (item.attributes.rl_frame === "h"){
} else if (item.attributes.rl_frame === "h"){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 724
item.attributes.rl_frame = lang_rl.hour;
item.attributes.rl_frame = lang_rl.hour;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 725
} else if (item.attributes.rl_frame === "d"){
} else if (item.attributes.rl_frame === "d"){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 726
item.attributes.rl_frame = lang_rl.day;
item.attributes.rl_frame = lang_rl.day;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 727
}
}
FreddleSpl0it
over 1 year ago
fe7211f
[Web] add missing translation for ratelimit in templates overview
- Full commit hash
fe7211f27f839a6d3ab8d95b88e0a654417ebdf5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 728
item.attributes.rl_value = (!item.attributes.rl_value) ? "∞" : escapeHtml(item.attributes.rl_value);
item.attributes.rl_value = (!item.attributes.rl_value) ? "∞" : escapeHtml(item.attributes.rl_value);
same change
fe7211f
[Web] add missing translation for ratelimit in templates overview
- Full commit hash
fe7211f27f839a6d3ab8d95b88e0a654417ebdf5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 729
item.attributes.ratelimit = item.attributes.rl_value + " " + item.attributes.rl_frame;
item.attributes.ratelimit = item.attributes.rl_value + " " + item.attributes.rl_frame;
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
DerLinkman
over 3 years ago
f4731ee
Cleanup + Language Fixes
- Full commit hash
f4731eecdb029be7393177bc76c6e649e40320b2- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 731
if (item.template.toLowerCase() == "default"){
if (item.template.toLowerCase() == "default"){
same change
f4731ee
Cleanup + Language Fixes
- Full commit hash
f4731eecdb029be7393177bc76c6e649e40320b2- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 732
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
- 733
'<a href="/edit/template/' + encodeURIComponent(item.id) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
'<a href="/edit/template/' + encodeURIComponent(item.id) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
DerLinkman
over 3 years ago
f4731ee
Cleanup + Language Fixes
- Full commit hash
f4731eecdb029be7393177bc76c6e649e40320b2- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 734
'</div>';
'</div>';
same change
f4731ee
Cleanup + Language Fixes
- Full commit hash
f4731eecdb029be7393177bc76c6e649e40320b2- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 735
}
}
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
- 736
else {
else {
DerLinkman
over 3 years ago
f4731ee
Cleanup + Language Fixes
- Full commit hash
f4731eecdb029be7393177bc76c6e649e40320b2- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 737
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
- 738
'<a href="/edit/template/' + encodeURIComponent(item.id) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
'<a href="/edit/template/' + encodeURIComponent(item.id) + '" class="btn btn-sm 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
- 739
'<a href="#" data-action="delete_selected" data-id="single-template" data-api-url="delete/domain/template" data-item="' + encodeURIComponent(item.id) + '" class="btn btn-sm 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-template" data-api-url="delete/domain/template" data-item="' + encodeURIComponent(item.id) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 740
'</div>';
'</div>';
DerLinkman
over 3 years ago
f4731ee
Cleanup + Language Fixes
- Full commit hash
f4731eecdb029be7393177bc76c6e649e40320b2- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 741
}
}
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 742
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 743
if (Array.isArray(item.attributes.tags)){
if (Array.isArray(item.attributes.tags)){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 744
var tags = '';
var tags = '';
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 745
for (var i = 0; i < item.attributes.tags.length; i++)
for (var i = 0; i < item.attributes.tags.length; i++)
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 746
tags += '<span class="badge bg-primary tag-badge"><i class="bi bi-tag-fill"></i> ' + escapeHtml(item.attributes.tags[i]) + '</span>';
tags += '<span class="badge bg-primary tag-badge"><i class="bi bi-tag-fill"></i> ' + escapeHtml(item.attributes.tags[i]) + '</span>';
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 747
item.attributes.tags = tags;
item.attributes.tags = tags;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 748
} else {
} else {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 749
item.attributes.tags = '';
item.attributes.tags = '';
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 750
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 751
});
});
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 752
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 753
return json;
return json;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 754
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 755
},
},
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 756
columns: [
columns: [
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
- 757
{
{
same change
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
// 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
- 759
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
- 760
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
- 761
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
- 762
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
- 763
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
- 764
responsivePriority: 1
responsivePriority: 1
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 765
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 766
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 767
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
- 768
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
- 769
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
- 770
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
- 771
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
- 772
responsivePriority: 1
responsivePriority: 1
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 773
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 774
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 775
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
- 776
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
- 777
responsivePriority: 2,
responsivePriority: 2,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 778
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
- 779
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 780
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 781
title: lang.template,
title: lang.template,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 782
data: 'template',
data: 'template',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 783
responsivePriority: 3,
responsivePriority: 3,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 784
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
- 785
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 786
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 787
title: lang.max_aliases,
title: lang.max_aliases,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 788
data: 'attributes.max_num_aliases_for_domain',
data: 'attributes.max_num_aliases_for_domain',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 789
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
- 790
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 791
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 792
title: lang.max_mailboxes,
title: lang.max_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
- 793
data: 'attributes.max_num_mboxes_for_domain',
data: 'attributes.max_num_mboxes_for_domain',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 794
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
- 795
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 796
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 797
title: lang.mailbox_defquota,
title: lang.mailbox_defquota,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 798
data: 'attributes.def_quota_for_mbox',
data: 'attributes.def_quota_for_mbox',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 799
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
- 800
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 801
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 802
title: lang.max_quota,
title: lang.max_quota,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 803
data: 'attributes.max_quota_for_mbox',
data: 'attributes.max_quota_for_mbox',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 804
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
- 805
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 806
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 807
title: lang.domain_quota_total,
title: lang.domain_quota_total,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 808
data: 'attributes.max_quota_for_domain',
data: 'attributes.max_quota_for_domain',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 809
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
- 810
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 811
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 812
title: lang.gal,
title: lang.gal,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 813
data: 'attributes.gal',
data: 'attributes.gal',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 814
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
- 815
render: function (data, type) {
render: function (data, type) {
goodygh
over 3 years ago
bd0b4a5
Fix sorting datatable in domain templates
- Full commit hash
bd0b4a521ec5be122dc7402975fc304a520d852f- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 816
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':'<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
- 817
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 818
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 819
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 820
title: lang.backup_mx,
title: lang.backup_mx,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 821
data: 'attributes.backupmx',
data: 'attributes.backupmx',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 822
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
- 823
render: function (data, type) {
render: function (data, type) {
goodygh
over 3 years ago
bd0b4a5
Fix sorting datatable in domain templates
- Full commit hash
bd0b4a521ec5be122dc7402975fc304a520d852f- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 824
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':'<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
- 825
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 826
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 827
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 828
title: lang.relay_all,
title: lang.relay_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
- 829
data: 'attributes.relay_all_recipients',
data: 'attributes.relay_all_recipients',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 830
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
- 831
render: function (data, type) {
render: function (data, type) {
goodygh
over 3 years ago
bd0b4a5
Fix sorting datatable in domain templates
- Full commit hash
bd0b4a521ec5be122dc7402975fc304a520d852f- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 832
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':'<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
- 833
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 834
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 835
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 836
title: lang.relay_unknown,
title: lang.relay_unknown,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 837
data: 'attributes.relay_unknown_only',
data: 'attributes.relay_unknown_only',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 838
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
- 839
render: function (data, type) {
render: function (data, type) {
goodygh
over 3 years ago
bd0b4a5
Fix sorting datatable in domain templates
- Full commit hash
bd0b4a521ec5be122dc7402975fc304a520d852f- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 840
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':'<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
- 841
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 842
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 843
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 844
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
- 845
data: 'attributes.active',
data: 'attributes.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
- 846
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
- 847
responsivePriority: 4,
responsivePriority: 4,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 848
render: function (data, type) {
render: function (data, type) {
goodygh
over 3 years ago
bd0b4a5
Fix sorting datatable in domain templates
- Full commit hash
bd0b4a521ec5be122dc7402975fc304a520d852f- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 849
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':'<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
- 850
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 851
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 852
{
{
FreddleSpl0it
over 1 year ago
fe7211f
[Web] add missing translation for ratelimit in templates overview
- Full commit hash
fe7211f27f839a6d3ab8d95b88e0a654417ebdf5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 853
title: lang_edit.ratelimit,
title: lang_edit.ratelimit,
same change
fe7211f
[Web] add missing translation for ratelimit in templates overview
- Full commit hash
fe7211f27f839a6d3ab8d95b88e0a654417ebdf5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 854
data: 'attributes.ratelimit',
data: 'attributes.ratelimit',
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
- 855
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
- 856
class: 'none',
class: 'none',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 857
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 858
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 859
title: lang.dkim_domains_selector,
title: lang.dkim_domains_selector,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 860
data: 'attributes.dkim_selector',
data: 'attributes.dkim_selector',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 861
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
- 862
class: 'none',
class: 'none',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 863
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 864
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 865
title: lang.dkim_key_length,
title: lang.dkim_key_length,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 866
data: 'attributes.key_size',
data: 'attributes.key_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
- 867
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
- 868
class: 'none',
class: 'none',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 869
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 870
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 871
title: 'Tags',
title: 'Tags',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 872
data: 'attributes.tags',
data: 'attributes.tags',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 873
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
- 874
className: 'none'
className: 'none'
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 875
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 876
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 877
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
- 878
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
- 879
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md dt-text-right',
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md 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
- 880
responsivePriority: 6,
responsivePriority: 6,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 881
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
- 882
},
},
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 883
]
]
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 884
});
});
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 885
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 886
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 887
hideTableExpandCollapseBtn('#tab-templates-domains', '#templates_domain_table');
hideTableExpandCollapseBtn('#tab-templates-domains', '#templates_domain_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 888
});
});
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 889
}
}
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 890
function draw_mailbox_table() {
function draw_mailbox_table() {
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 891
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 892
if ($.fn.DataTable.isDataTable('#mailbox_table') ) {
if ($.fn.DataTable.isDataTable('#mailbox_table') ) {
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 893
$('#mailbox_table').DataTable().columns.adjust().responsive.recalc();
$('#mailbox_table').DataTable().columns.adjust().responsive.recalc();
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 894
return;
return;
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 895
}
}
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 896
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 897
var table = $('#mailbox_table').DataTable({
var table = $('#mailbox_table').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 898
responsive: true,
responsive: true,
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 899
processing: true,
processing: true,
Kristian Feldsam
over 2 years ago
28cec99
Mailboxes datatable - server side processing
- Full commit hash
28cec9969931de92b128c086b1f113c35e600210- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 900
serverSide: true,
serverSide: true,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 901
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 902
pageLength: pagination_size,
pageLength: pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 903
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 904
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 905
"<'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>>",
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 906
language: lang_datatables,
language: lang_datatables,
Kristian Feldsam
almost 3 years ago
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 907
initComplete: function(settings, json){
initComplete: function(settings, json){
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 908
hideTableExpandCollapseBtn('#tab-mailboxes', '#mailbox_table');
hideTableExpandCollapseBtn('#tab-mailboxes', '#mailbox_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 909
},
},
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 910
ajax: {
ajax: {
FreddleSpl0it
5 months ago
43f570e
[Web] switch from GET to POST for datatable requests
- Full commit hash
43f570e7617dd5925915c05a6f87b1d3a2630dd1- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 911
type: "POST",
type: "POST",
same change
43f570e
[Web] switch from GET to POST for datatable requests
- Full commit hash
43f570e7617dd5925915c05a6f87b1d3a2630dd1- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 912
url: "/api/v1/search/mailbox",
url: "/api/v1/search/mailbox",
same change
43f570e
[Web] switch from GET to POST for datatable requests
- Full commit hash
43f570e7617dd5925915c05a6f87b1d3a2630dd1- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 913
contentType: "application/json",
contentType: "application/json",
same change
43f570e
[Web] switch from GET to POST for datatable requests
- Full commit hash
43f570e7617dd5925915c05a6f87b1d3a2630dd1- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 914
processData: false,
processData: false,
same change
43f570e
[Web] switch from GET to POST for datatable requests
- Full commit hash
43f570e7617dd5925915c05a6f87b1d3a2630dd1- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 915
data: function(d) {
data: function(d) {
same change
43f570e
[Web] switch from GET to POST for datatable requests
- Full commit hash
43f570e7617dd5925915c05a6f87b1d3a2630dd1- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 916
return JSON.stringify(d);
return JSON.stringify(d);
same change
43f570e
[Web] switch from GET to POST for datatable requests
- Full commit hash
43f570e7617dd5925915c05a6f87b1d3a2630dd1- Author
- FreddleSpl0it <[email protected]>
- Date
- 5 months ago
- Selected line
- 917
},
},
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 918
dataSrc: function(json){
dataSrc: function(json){
Kristian Feldsam
over 2 years ago
28cec99
Mailboxes datatable - server side processing
- Full commit hash
28cec9969931de92b128c086b1f113c35e600210- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 919
$.each(json.data, function (i, item) {
$.each(json.data, function (i, item) {
FreddleSpl0it
over 3 years ago
e501642
[Web] fix mailboxtable sort by quota
- Full commit hash
e501642b8ebc0d6af25f8a2663b4d1dbfb56bc80- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 920
item.quota = {
item.quota = {
same change
e501642
[Web] fix mailboxtable sort by quota
- Full commit hash
e501642b8ebc0d6af25f8a2663b4d1dbfb56bc80- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 921
sortBy: item.quota_used,
sortBy: item.quota_used,
same change
e501642
[Web] fix mailboxtable sort by quota
- Full commit hash
e501642b8ebc0d6af25f8a2663b4d1dbfb56bc80- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 922
value: item.quota
value: item.quota
same change
e501642
[Web] fix mailboxtable sort by quota
- Full commit hash
e501642b8ebc0d6af25f8a2663b4d1dbfb56bc80- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 923
}
}
same change
e501642
[Web] fix mailboxtable sort by quota
- Full commit hash
e501642b8ebc0d6af25f8a2663b4d1dbfb56bc80- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 924
item.quota.value = (item.quota.value == 0 ? "∞" : humanFileSize(item.quota.value));
item.quota.value = (item.quota.value == 0 ? "∞" : humanFileSize(item.quota.value));
same change
e501642
[Web] fix mailboxtable sort by quota
- Full commit hash
e501642b8ebc0d6af25f8a2663b4d1dbfb56bc80- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 925
item.quota.value = humanFileSize(item.quota_used) + "/" + item.quota.value;
item.quota.value = humanFileSize(item.quota_used) + "/" + item.quota.value;
same change
e501642
[Web] fix mailboxtable sort by quota
- Full commit hash
e501642b8ebc0d6af25f8a2663b4d1dbfb56bc80- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 926
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 927
item.max_quota_for_mbox = humanFileSize(item.max_quota_for_mbox);
item.max_quota_for_mbox = humanFileSize(item.max_quota_for_mbox);
Habetdin
almost 2 years ago
6550f0a
Only show active protocols on "last login" in mailbox overview
- Full commit hash
6550f0a3e889f5ee417a02e690cb577e1f8dc1d8- Author
- Habetdin <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 928
item.last_mail_login = (item.attributes.imap_access == 1 ? '<div class="text-start badge bg-info mb-2" style="min-width: 70px;">IMAP @ ' + unix_time_format(Number(item.last_imap_login)) + '</div><br>' : '') +
item.last_mail_login = (item.attributes.imap_access == 1 ? '<div class="text-start badge bg-info mb-2" style="min-width: 70px;">IMAP @ ' + unix_time_format(Number(item.last_imap_login)) + '</div><br>' : '') +
same change
6550f0a
Only show active protocols on "last login" in mailbox overview
- Full commit hash
6550f0a3e889f5ee417a02e690cb577e1f8dc1d8- Author
- Habetdin <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 929
(item.attributes.pop3_access == 1 ? '<div class="text-start badge bg-info mb-2" style="min-width: 70px;">POP3 @ ' + unix_time_format(Number(item.last_pop3_login)) + '</div><br>' : '') +
(item.attributes.pop3_access == 1 ? '<div class="text-start badge bg-info mb-2" style="min-width: 70px;">POP3 @ ' + unix_time_format(Number(item.last_pop3_login)) + '</div><br>' : '') +
same change
6550f0a
Only show active protocols on "last login" in mailbox overview
- Full commit hash
6550f0a3e889f5ee417a02e690cb577e1f8dc1d8- Author
- Habetdin <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 930
(item.attributes.smtp_access == 1 ? '<div class="text-start badge bg-info mb-2" style="min-width: 70px;">SMTP @ ' + unix_time_format(Number(item.last_smtp_login)) + '</div><br>' : '') +
(item.attributes.smtp_access == 1 ? '<div class="text-start badge bg-info mb-2" style="min-width: 70px;">SMTP @ ' + unix_time_format(Number(item.last_smtp_login)) + '</div><br>' : '') +
same change
6550f0a
Only show active protocols on "last login" in mailbox overview
- Full commit hash
6550f0a3e889f5ee417a02e690cb577e1f8dc1d8- Author
- Habetdin <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 931
'<div class="text-start badge bg-info" style="min-width: 70px;">SSO @ ' + unix_time_format(Number(item.last_sso_login)) + '</div>';
'<div class="text-start badge bg-info" style="min-width: 70px;">SSO @ ' + unix_time_format(Number(item.last_sso_login)) + '</div>';
andryyy
over 5 years ago
dd19874
[Web] Use api/v1/get/mailbox/reduced for faster loading of mailbox table
- Full commit hash
dd198747b79a48bd7ef86bc641a353a7ccd8877b- Author
- andryyy <[email protected]>
- Date
- over 5 years ago
- Selected line
- 932
/*
/*
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 933
if (!item.rl) {
if (!item.rl) {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 934
item.rl = '∞';
item.rl = '∞';
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 935
} else {
} else {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 936
item.rl = $.map(item.rl, function(e){
item.rl = $.map(item.rl, function(e){
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 937
return e;
return e;
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 938
}).join('/1');
}).join('/1');
andryyy
almost 7 years ago
0d8a92a
[Web] Show ratelimit inheritance
- Full commit hash
0d8a92a36525ea141bd0c50a03162cc251c0223f- Author
- andryyy <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 939
if (item.rl_scope === 'domain') {
if (item.rl_scope === 'domain') {
andryyy
about 5 years ago
9c075af
[Web] Bye Glyphicons, hello BS5 icons\!; [Web] Change font to Noto for better compatibility;
- Full commit hash
9c075af2d93dbaec98bf6769c07da3a4587baf14- Author
- andryyy <[email protected]>
- Date
- about 5 years ago
- Selected line
- 940
item.rl = '<i class="bi bi-arrow-return-right"></i> ' + item.rl + ' (via ' + item.domain + ')';
item.rl = '<i class="bi bi-arrow-return-right"></i> ' + item.rl + ' (via ' + item.domain + ')';
andryyy
almost 7 years ago
0d8a92a
[Web] Show ratelimit inheritance
- Full commit hash
0d8a92a36525ea141bd0c50a03162cc251c0223f- Author
- andryyy <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 941
}
}
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 942
}
}
andryyy
over 5 years ago
dd19874
[Web] Use api/v1/get/mailbox/reduced for faster loading of mailbox table
- Full commit hash
dd198747b79a48bd7ef86bc641a353a7ccd8877b- Author
- andryyy <[email protected]>
- Date
- over 5 years ago
- Selected line
- 943
*/
*/
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
- 944
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="mailbox" name="multi_select" value="' + encodeURIComponent(item.username) + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="mailbox" name="multi_select" value="' + encodeURIComponent(item.username) + '" />';
andryyy
about 5 years ago
47b57df
[Web] Show users last PW change, allow to select n days for last logins
- Full commit hash
47b57df3a2ada6cd3d8549ac2610bf823ca64663- Author
- andryyy <[email protected]>
- Date
- about 5 years ago
- Selected line
- 945
if (item.attributes.passwd_update != '0') {
if (item.attributes.passwd_update != '0') {
same change
47b57df
[Web] Show users last PW change, allow to select n days for last logins
- Full commit hash
47b57df3a2ada6cd3d8549ac2610bf823ca64663- Author
- andryyy <[email protected]>
- Date
- about 5 years ago
- Selected line
- 946
var last_pw_change = new Date(item.attributes.passwd_update.replace(/-/g, "/"));
var last_pw_change = new Date(item.attributes.passwd_update.replace(/-/g, "/"));
same change
47b57df
[Web] Show users last PW change, allow to select n days for last logins
- Full commit hash
47b57df3a2ada6cd3d8549ac2610bf823ca64663- Author
- andryyy <[email protected]>
- Date
- about 5 years ago
- Selected line
- 947
item.last_pw_change = last_pw_change.toLocaleDateString(undefined, {year: "numeric", month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit", second: "2-digit"});
item.last_pw_change = last_pw_change.toLocaleDateString(undefined, {year: "numeric", month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit", second: "2-digit"});
same change
47b57df
[Web] Show users last PW change, allow to select n days for last logins
- Full commit hash
47b57df3a2ada6cd3d8549ac2610bf823ca64663- Author
- andryyy <[email protected]>
- Date
- about 5 years ago
- Selected line
- 948
} else {
} else {
same change
47b57df
[Web] Show users last PW change, allow to select n days for last logins
- Full commit hash
47b57df3a2ada6cd3d8549ac2610bf823ca64663- Author
- andryyy <[email protected]>
- Date
- about 5 years ago
- Selected line
- 949
item.last_pw_change = '-';
item.last_pw_change = '-';
same change
47b57df
[Web] Show users last PW change, allow to select n days for last logins
- Full commit hash
47b57df3a2ada6cd3d8549ac2610bf823ca64663- Author
- andryyy <[email protected]>
- Date
- about 5 years ago
- Selected line
- 950
}
}
andryyy
about 5 years ago
9c075af
[Web] Bye Glyphicons, hello BS5 icons\!; [Web] Change font to Noto for better compatibility;
- Full commit hash
9c075af2d93dbaec98bf6769c07da3a4587baf14- Author
- andryyy <[email protected]>
- Date
- about 5 years ago
- Selected line
- 951
item.tls_enforce_in = '<i class="text-' + (item.attributes.tls_enforce_in == 1 ? 'success bi bi-lock-fill' : 'danger bi bi-unlock-fill') + '"></i>';
item.tls_enforce_in = '<i class="text-' + (item.attributes.tls_enforce_in == 1 ? 'success bi bi-lock-fill' : 'danger bi bi-unlock-fill') + '"></i>';
same change
9c075af
[Web] Bye Glyphicons, hello BS5 icons\!; [Web] Change font to Noto for better compatibility;
- Full commit hash
9c075af2d93dbaec98bf6769c07da3a4587baf14- Author
- andryyy <[email protected]>
- Date
- about 5 years ago
- Selected line
- 952
item.tls_enforce_out = '<i class="text-' + (item.attributes.tls_enforce_out == 1 ? 'success bi bi-lock-fill' : 'danger bi bi-unlock-fill') + '"></i>';
item.tls_enforce_out = '<i class="text-' + (item.attributes.tls_enforce_out == 1 ? 'success bi bi-lock-fill' : 'danger bi bi-unlock-fill') + '"></i>';
same change
9c075af
[Web] Bye Glyphicons, hello BS5 icons\!; [Web] Change font to Noto for better compatibility;
- Full commit hash
9c075af2d93dbaec98bf6769c07da3a4587baf14- Author
- andryyy <[email protected]>
- Date
- about 5 years ago
- Selected line
- 953
item.pop3_access = '<i class="text-' + (item.attributes.pop3_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.pop3_access == 1 ? 'check-lg' : 'x-lg') + '"></i>';
item.pop3_access = '<i class="text-' + (item.attributes.pop3_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.pop3_access == 1 ? 'check-lg' : 'x-lg') + '"></i>';
same change
9c075af
[Web] Bye Glyphicons, hello BS5 icons\!; [Web] Change font to Noto for better compatibility;
- Full commit hash
9c075af2d93dbaec98bf6769c07da3a4587baf14- Author
- andryyy <[email protected]>
- Date
- about 5 years ago
- Selected line
- 954
item.imap_access = '<i class="text-' + (item.attributes.imap_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.imap_access == 1 ? 'check-lg' : 'x-lg') + '"></i>';
item.imap_access = '<i class="text-' + (item.attributes.imap_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.imap_access == 1 ? 'check-lg' : 'x-lg') + '"></i>';
same change
9c075af
[Web] Bye Glyphicons, hello BS5 icons\!; [Web] Change font to Noto for better compatibility;
- Full commit hash
9c075af2d93dbaec98bf6769c07da3a4587baf14- Author
- andryyy <[email protected]>
- Date
- about 5 years ago
- Selected line
- 955
item.smtp_access = '<i class="text-' + (item.attributes.smtp_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.smtp_access == 1 ? 'check-lg' : 'x-lg') + '"></i>';
item.smtp_access = '<i class="text-' + (item.attributes.smtp_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.smtp_access == 1 ? 'check-lg' : 'x-lg') + '"></i>';
FreddleSpl0it
almost 4 years ago
8e0ee67
add sieve access toggle to mass-actions-mailbox
- Full commit hash
8e0ee671085222f7d8fc867a3f3710950387e7ca- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 956
item.sieve_access = '<i class="text-' + (item.attributes.sieve_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.sieve_access == 1 ? 'check-lg' : 'x-lg') + '"></i>';
item.sieve_access = '<i class="text-' + (item.attributes.sieve_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.sieve_access == 1 ? 'check-lg' : 'x-lg') + '"></i>';
FreddleSpl0it
6 months ago
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 957
item.eas_access = '<i class="text-' + (item.attributes.eas_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.eas_access == 1 ? 'check-lg' : 'x-lg') + '"></i>';
item.eas_access = '<i class="text-' + (item.attributes.eas_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.eas_access == 1 ? 'check-lg' : 'x-lg') + '"></i>';
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 958
item.dav_access = '<i class="text-' + (item.attributes.dav_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.dav_access == 1 ? 'check-lg' : 'x-lg') + '"></i>';
item.dav_access = '<i class="text-' + (item.attributes.dav_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.dav_access == 1 ? 'check-lg' : 'x-lg') + '"></i>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 959
if (item.attributes.quarantine_notification === 'never') {
if (item.attributes.quarantine_notification === 'never') {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 960
item.quarantine_notification = lang.never;
item.quarantine_notification = lang.never;
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 961
} else if (item.attributes.quarantine_notification === 'hourly') {
} else if (item.attributes.quarantine_notification === 'hourly') {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 962
item.quarantine_notification = lang.hourly;
item.quarantine_notification = lang.hourly;
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 963
} else if (item.attributes.quarantine_notification === 'daily') {
} else if (item.attributes.quarantine_notification === 'daily') {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 964
item.quarantine_notification = lang.daily;
item.quarantine_notification = lang.daily;
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 965
} else if (item.attributes.quarantine_notification === 'weekly') {
} else if (item.attributes.quarantine_notification === 'weekly') {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 966
item.quarantine_notification = lang.weekly;
item.quarantine_notification = lang.weekly;
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 967
}
}
andryyy
over 5 years ago
ba20db2
[Web] Allow a user to choose notification categories (junk folder, rejected mail, both/all) + user ACL
- Full commit hash
ba20db2e086aeaaffbd101f37c056b25dfb3d2d4- Author
- andryyy <[email protected]>
- Date
- over 5 years ago
- Selected line
- 968
if (item.attributes.quarantine_category === 'reject') {
if (item.attributes.quarantine_category === 'reject') {
same change
ba20db2
[Web] Allow a user to choose notification categories (junk folder, rejected mail, both/all) + user ACL
- Full commit hash
ba20db2e086aeaaffbd101f37c056b25dfb3d2d4- Author
- andryyy <[email protected]>
- Date
- over 5 years ago
- Selected line
- 969
item.quarantine_category = '<span class="text-danger">' + lang.q_reject + '</span>';
item.quarantine_category = '<span class="text-danger">' + lang.q_reject + '</span>';
same change
ba20db2
[Web] Allow a user to choose notification categories (junk folder, rejected mail, both/all) + user ACL
- Full commit hash
ba20db2e086aeaaffbd101f37c056b25dfb3d2d4- Author
- andryyy <[email protected]>
- Date
- over 5 years ago
- Selected line
- 970
} else if (item.attributes.quarantine_category === 'add_header') {
} else if (item.attributes.quarantine_category === 'add_header') {
same change
ba20db2
[Web] Allow a user to choose notification categories (junk folder, rejected mail, both/all) + user ACL
- Full commit hash
ba20db2e086aeaaffbd101f37c056b25dfb3d2d4- Author
- andryyy <[email protected]>
- Date
- over 5 years ago
- Selected line
- 971
item.quarantine_category = '<span class="text-warning">' + lang.q_add_header + '</span>';
item.quarantine_category = '<span class="text-warning">' + lang.q_add_header + '</span>';
same change
ba20db2
[Web] Allow a user to choose notification categories (junk folder, rejected mail, both/all) + user ACL
- Full commit hash
ba20db2e086aeaaffbd101f37c056b25dfb3d2d4- Author
- andryyy <[email protected]>
- Date
- over 5 years ago
- Selected line
- 972
} else if (item.attributes.quarantine_category === 'all') {
} else if (item.attributes.quarantine_category === 'all') {
same change
ba20db2
[Web] Allow a user to choose notification categories (junk folder, rejected mail, both/all) + user ACL
- Full commit hash
ba20db2e086aeaaffbd101f37c056b25dfb3d2d4- Author
- andryyy <[email protected]>
- Date
- over 5 years ago
- Selected line
- 973
item.quarantine_category = lang.q_all;
item.quarantine_category = lang.q_all;
same change
ba20db2
[Web] Allow a user to choose notification categories (junk folder, rejected mail, both/all) + user ACL
- Full commit hash
ba20db2e086aeaaffbd101f37c056b25dfb3d2d4- Author
- andryyy <[email protected]>
- Date
- over 5 years ago
- Selected line
- 974
}
}
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 975
if (acl_data.login_as === 1) {
if (acl_data.login_as === 1) {
andryyy
almost 5 years ago
2cd0b56
[Web] Various PHP 8 fixes, partly fixes #4219
- Full commit hash
2cd0b56b143b8a2741488ae1735bf6d74253247f- Author
- andryyy <[email protected]>
- Date
- almost 5 years ago
- Selected line
- 976
FreddleSpl0it
almost 4 years ago
8e0ee67
add sieve access toggle to mass-actions-mailbox
- Full commit hash
8e0ee671085222f7d8fc867a3f3710950387e7ca- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 977
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
- 978
'<a href="/edit/mailbox/' + encodeURIComponent(item.username) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
'<a href="/edit/mailbox/' + encodeURIComponent(item.username) + '" class="btn btn-sm 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
- 979
'<a href="#" data-action="delete_selected" data-id="single-mailbox" data-api-url="delete/mailbox" data-item="' + encodeURIComponent(item.username) + '" class="btn btn-sm 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-mailbox" data-api-url="delete/mailbox" data-item="' + encodeURIComponent(item.username) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</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
- 980
'<a href="/index.php?duallogin=' + encodeURIComponent(item.username) + '" class="login_as btn btn-sm btn-xs-lg btn-xs-half btn-success"><i class="bi bi-person-fill"></i> Login</a>';
'<a href="/index.php?duallogin=' + encodeURIComponent(item.username) + '" class="login_as btn btn-sm btn-xs-lg btn-xs-half btn-success"><i class="bi bi-person-fill"></i> Login</a>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 981
if (ALLOW_ADMIN_EMAIL_LOGIN) {
if (ALLOW_ADMIN_EMAIL_LOGIN) {
FreddleSpl0it
over 1 year ago
aca01c8
[Web] Separate Login pages
- Full commit hash
aca01c8aa2607777205226a86be29df338eb51d9- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 982
item.action += '<a href="/sogo-auth.php?login=' + encodeURIComponent(item.username) + '" class="login_as btn btn-sm btn-xs-lg btn-xs-half btn-primary"><i class="bi bi-envelope-fill"></i> SOGo</a>';
item.action += '<a href="/sogo-auth.php?login=' + encodeURIComponent(item.username) + '" class="login_as btn btn-sm btn-xs-lg btn-xs-half btn-primary"><i class="bi bi-envelope-fill"></i> SOGo</a>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 983
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 984
item.action += '</div>';
item.action += '</div>';
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 985
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 986
else {
else {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 987
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
- 988
'<a href="/edit/mailbox/' + encodeURIComponent(item.username) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
'<a href="/edit/mailbox/' + encodeURIComponent(item.username) + '" class="btn btn-sm 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
- 989
'<a href="#" data-action="delete_selected" data-id="single-mailbox" data-api-url="delete/mailbox" data-item="' + encodeURIComponent(item.username) + '" class="btn btn-sm 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-mailbox" data-api-url="delete/mailbox" data-item="' + encodeURIComponent(item.username) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 990
'</div>';
'</div>';
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 991
}
}
FreddleSpl0it
over 3 years ago
e1cd719
[Web] fix mbox percentage sorting
- Full commit hash
e1cd719a178b77a388662a9ec50b1e8faf118ea6- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 992
item.in_use = {
item.in_use = {
same change
e1cd719
[Web] fix mbox percentage sorting
- Full commit hash
e1cd719a178b77a388662a9ec50b1e8faf118ea6- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 993
sortBy: item.percent_in_use,
sortBy: item.percent_in_use,
same change
e1cd719
[Web] fix mbox percentage sorting
- Full commit hash
e1cd719a178b77a388662a9ec50b1e8faf118ea6- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 994
value: '<div class="progress">' +
value: '<div class="progress">' +
andryyy
over 6 years ago
92f8b4a
[Web] Add domain statistics
- Full commit hash
92f8b4a09156c5b30d6f4fc49e82a38208d500a6- Author
- andryyy <[email protected]>
- Date
- over 6 years ago
- Selected line
- 995
'<div class="progress-bar-mailbox progress-bar progress-bar-' + item.percent_class + '" role="progressbar" aria-valuenow="' + item.percent_in_use + '" aria-valuemin="0" aria-valuemax="100" ' +
'<div class="progress-bar-mailbox progress-bar progress-bar-' + item.percent_class + '" role="progressbar" aria-valuenow="' + item.percent_in_use + '" aria-valuemin="0" aria-valuemax="100" ' +
FreddleSpl0it
over 3 years ago
e1cd719
[Web] fix mbox percentage sorting
- Full commit hash
e1cd719a178b77a388662a9ec50b1e8faf118ea6- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 996
'style="min-width:2em;width:' + item.percent_in_use + '%">' + item.percent_in_use + '%' + '</div></div>'
'style="min-width:2em;width:' + item.percent_in_use + '%">' + item.percent_in_use + '%' + '</div></div>'
same change
e1cd719
[Web] fix mbox percentage sorting
- Full commit hash
e1cd719a178b77a388662a9ec50b1e8faf118ea6- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 997
};
};
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 998
item.username = escapeHtml(item.username);
item.username = escapeHtml(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
- 999
FreddleSpl0it
about 4 years ago
549ff7d
Add Domain and Mailbox tagging (#4569)
- Full commit hash
549ff7d100751837278e245cf3295e11eb85b667- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1000
if (Array.isArray(item.tags)){
if (Array.isArray(item.tags)){
same change
549ff7d
Add Domain and Mailbox tagging (#4569)
- Full commit hash
549ff7d100751837278e245cf3295e11eb85b667- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1001
var tags = '';
var tags = '';
same change
549ff7d
Add Domain and Mailbox tagging (#4569)
- Full commit hash
549ff7d100751837278e245cf3295e11eb85b667- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1002
for (var i = 0; i < item.tags.length; i++)
for (var i = 0; i < item.tags.length; i++)
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1003
tags += '<span class="badge bg-primary tag-badge"><i class="bi bi-tag-fill"></i> ' + escapeHtml(item.tags[i]) + '</span>';
tags += '<span class="badge bg-primary tag-badge"><i class="bi bi-tag-fill"></i> ' + escapeHtml(item.tags[i]) + '</span>';
FreddleSpl0it
about 4 years ago
549ff7d
Add Domain and Mailbox tagging (#4569)
- Full commit hash
549ff7d100751837278e245cf3295e11eb85b667- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1004
item.tags = tags;
item.tags = tags;
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1005
} else {
} else {
same change
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1006
item.tags = '';
item.tags = '';
FreddleSpl0it
about 4 years ago
549ff7d
Add Domain and Mailbox tagging (#4569)
- Full commit hash
549ff7d100751837278e245cf3295e11eb85b667- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1007
}
}
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1008
});
});
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1009
Kristian Feldsam
over 2 years ago
28cec99
Mailboxes datatable - server side processing
- Full commit hash
28cec9969931de92b128c086b1f113c35e600210- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 1010
return json.data;
return json.data;
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1011
}
}
friedPotat0
almost 7 years ago
d1153b4
Restrict row toggle for remaing tables
- Full commit hash
d1153b470f6a2fad5b71e44446e1e94ad44c6d7a- Author
- friedPotat0 <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 1012
},
},
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1013
columns: [
columns: [
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
- 1014
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1015
// 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
- 1016
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
- 1017
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
- 1018
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
- 1019
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
- 1020
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
- 1021
responsivePriority: 1
responsivePriority: 1
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1022
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1023
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1024
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
- 1025
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
- 1026
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
- 1027
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
- 1028
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
- 1029
responsivePriority: 2
responsivePriority: 2
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1030
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1031
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1032
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
- 1033
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
- 1034
responsivePriority: 3,
responsivePriority: 3,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1035
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
- 1036
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1037
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1038
title: lang.domain_quota,
title: lang.domain_quota,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1039
data: 'quota.value',
data: 'quota.value',
Kristian Feldsam
over 2 years ago
28cec99
Mailboxes datatable - server side processing
- Full commit hash
28cec9969931de92b128c086b1f113c35e600210- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 1040
searchable: false,
searchable: false,
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
- 1041
responsivePriority: 8,
responsivePriority: 8,
Kristian Feldsam
over 2 years ago
28cec99
Mailboxes datatable - server side processing
- Full commit hash
28cec9969931de92b128c086b1f113c35e600210- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 1042
defaultContent: ''
defaultContent: ''
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
- 1043
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1044
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1045
title: lang.last_mail_login,
title: lang.last_mail_login,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1046
data: 'last_mail_login',
data: 'last_mail_login',
Kristian Feldsam
over 2 years ago
28cec99
Mailboxes datatable - server side processing
- Full commit hash
28cec9969931de92b128c086b1f113c35e600210- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 1047
searchable: false,
searchable: false,
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
- 1048
defaultContent: '',
defaultContent: '',
Habetdin
almost 2 years ago
6550f0a
Only show active protocols on "last login" in mailbox overview
- Full commit hash
6550f0a3e889f5ee417a02e690cb577e1f8dc1d8- Author
- Habetdin <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 1049
responsivePriority: 7
responsivePriority: 7
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1050
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1051
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1052
title: lang.last_pw_change,
title: lang.last_pw_change,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1053
data: 'last_pw_change',
data: 'last_pw_change',
Kristian Feldsam
over 2 years ago
28cec99
Mailboxes datatable - server side processing
- Full commit hash
28cec9969931de92b128c086b1f113c35e600210- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 1054
searchable: false,
searchable: false,
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
- 1055
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
- 1056
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1057
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1058
title: lang.in_use,
title: lang.in_use,
FreddleSpl0it
over 3 years ago
e1cd719
[Web] fix mbox percentage sorting
- Full commit hash
e1cd719a178b77a388662a9ec50b1e8faf118ea6- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1059
data: 'in_use.value',
data: 'in_use.value',
Kristian Feldsam
over 2 years ago
28cec99
Mailboxes datatable - server side processing
- Full commit hash
28cec9969931de92b128c086b1f113c35e600210- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 1060
searchable: false,
searchable: false,
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
- 1061
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
- 1062
responsivePriority: 9,
responsivePriority: 9,
Kristian Feldsam
over 2 years ago
efcca61
Mailboxes datatable - server side processing ordering
- Full commit hash
efcca61f5a4f33bff53758390b3f18a452744cd1- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 1063
className: 'dt-data-w100'
className: 'dt-data-w100'
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
- 1064
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1065
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1066
title: lang.fname,
title: lang.fname,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1067
data: 'name',
data: 'name',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1068
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
- 1069
className: 'none'
className: 'none'
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1070
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1071
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1072
title: lang.domain,
title: lang.domain,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1073
data: 'domain',
data: 'domain',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1074
defaultContent: '',
defaultContent: '',
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
- 1075
className: 'none',
className: 'none',
same change
6e9980b
[Web] add manage identity provider
- Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1076
},
},
same change
6e9980b
[Web] add manage identity provider
- Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1077
{
{
same change
6e9980b
[Web] add manage identity provider
- Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1078
title: lang.iam,
title: lang.iam,
same change
6e9980b
[Web] add manage identity provider
- Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1079
data: 'authsource',
data: 'authsource',
same change
6e9980b
[Web] add manage identity provider
- Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1080
defaultContent: '',
defaultContent: '',
same change
6e9980b
[Web] add manage identity provider
- Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1081
className: 'none',
className: 'none',
same change
6e9980b
[Web] add manage identity provider
- Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1082
render: function (data, type) {
render: function (data, type) {
same change
6e9980b
[Web] add manage identity provider
- Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1083
return '<span class="badge bg-primary">' + data + '<i class="ms-2 bi bi-person-circle"></i></i></span>';
return '<span class="badge bg-primary">' + data + '<i class="ms-2 bi bi-person-circle"></i></i></span>';
same change
6e9980b
[Web] add manage identity provider
- Full commit hash
6e9980bf0f8b16420cc884e12889b074c7b8bc79- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1084
}
}
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
- 1085
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1086
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1087
title: lang.tls_enforce_in,
title: lang.tls_enforce_in,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1088
data: 'tls_enforce_in',
data: 'tls_enforce_in',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1089
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
- 1090
className: 'none'
className: 'none'
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1091
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1092
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1093
title: lang.tls_enforce_out,
title: lang.tls_enforce_out,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1094
data: 'tls_enforce_out',
data: 'tls_enforce_out',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1095
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
- 1096
className: 'none'
className: 'none'
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1097
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1098
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1099
title: 'SMTP',
title: 'SMTP',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1100
data: 'smtp_access',
data: 'smtp_access',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1101
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
- 1102
className: 'none'
className: 'none'
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1103
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1104
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1105
title: 'IMAP',
title: 'IMAP',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1106
data: 'imap_access',
data: 'imap_access',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1107
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
- 1108
className: 'none'
className: 'none'
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1109
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1110
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1111
title: 'POP3',
title: 'POP3',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1112
data: 'pop3_access',
data: 'pop3_access',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1113
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
- 1114
className: 'none'
className: 'none'
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1115
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1116
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1117
title: 'SIEVE',
title: 'SIEVE',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1118
data: 'sieve_access',
data: 'sieve_access',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1119
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
- 1120
className: 'none'
className: 'none'
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1121
},
},
FreddleSpl0it
6 months ago
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1122
{
{
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1123
title: 'EAS',
title: 'EAS',
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1124
data: 'eas_access',
data: 'eas_access',
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1125
defaultContent: '',
defaultContent: '',
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1126
className: 'none'
className: 'none'
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1127
},
},
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1128
{
{
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1129
title: 'DAV',
title: 'DAV',
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1130
data: 'dav_access',
data: 'dav_access',
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1131
defaultContent: '',
defaultContent: '',
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1132
className: 'none'
className: 'none'
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1133
},
},
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
- 1134
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1135
title: lang.quarantine_notification,
title: lang.quarantine_notification,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1136
data: 'quarantine_notification',
data: 'quarantine_notification',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1137
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
- 1138
className: 'none'
className: 'none'
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1139
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1140
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1141
title: lang.quarantine_category,
title: lang.quarantine_category,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1142
data: 'quarantine_category',
data: 'quarantine_category',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1143
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
- 1144
className: 'none'
className: 'none'
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1145
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1146
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1147
title: lang.msg_num,
title: lang.msg_num,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1148
data: 'messages',
data: 'messages',
Kristian Feldsam
over 2 years ago
28cec99
Mailboxes datatable - server side processing
- Full commit hash
28cec9969931de92b128c086b1f113c35e600210- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 1149
searchable: false,
searchable: false,
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
- 1150
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
- 1151
responsivePriority: 5
responsivePriority: 5
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1152
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1153
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1154
title: lang.created_on,
title: lang.created_on,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1155
data: 'created',
data: 'created',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1156
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
- 1157
className: 'none'
className: 'none'
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1158
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1159
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1160
title: lang.last_modified,
title: lang.last_modified,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1161
data: 'modified',
data: 'modified',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1162
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
- 1163
className: 'none'
className: 'none'
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1164
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1165
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1166
title: 'Tags',
title: 'Tags',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1167
data: 'tags',
data: 'tags',
Kristian Feldsam
over 2 years ago
ac4f131
Domains and Mailboxes datatable - server side processing - filtering by tags
- Full commit hash
ac4f131fa8f1629b1c831478d020f5f1b6be4261- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 1168
searchable: true,
searchable: 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
- 1169
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
- 1170
className: 'none'
className: 'none'
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1171
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1172
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1173
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
- 1174
data: 'active',
data: 'active',
Kristian Feldsam
over 2 years ago
28cec99
Mailboxes datatable - server side processing
- Full commit hash
28cec9969931de92b128c086b1f113c35e600210- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 1175
searchable: false,
searchable: false,
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
- 1176
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
- 1177
responsivePriority: 4,
responsivePriority: 4,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1178
render: function (data, type) {
render: function (data, type) {
goodygh
over 3 years ago
c3ed01c
Fix sorting for active mailboxes
- Full commit hash
c3ed01c9b59069eb62b87362f8bcf15d30c83216- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1179
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':(0==data?'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>':2==data&&'—');
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':(0==data?'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>':2==data&&'—');
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
- 1180
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1181
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1182
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1183
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
- 1184
data: 'action',
data: 'action',
Kristian Feldsam
over 2 years ago
28cec99
Mailboxes datatable - server side processing
- Full commit hash
28cec9969931de92b128c086b1f113c35e600210- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 1185
searchable: false,
searchable: false,
same change
28cec99
Mailboxes datatable - server side processing
- Full commit hash
28cec9969931de92b128c086b1f113c35e600210- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 1186
orderable: false,
orderable: false,
FreddleSpl0it
over 3 years ago
72e8180
[Web] datatable adjustment
- Full commit hash
72e8180c6be0f8ae9444e4ae10129ffa830c0c9b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1187
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md dt-text-right',
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md 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
- 1188
responsivePriority: 6,
responsivePriority: 6,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1189
defaultContent: ''
defaultContent: ''
Kristian Feldsam
over 2 years ago
28cec99
Mailboxes datatable - server side processing
- Full commit hash
28cec9969931de92b128c086b1f113c35e600210- Author
- Kristian Feldsam <[email protected]>
- Date
- over 2 years ago
- Selected line
- 1190
}
}
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1191
]
]
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1192
});
});
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1193
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1194
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1195
hideTableExpandCollapseBtn('#tab-mailboxes', '#mailbox_table');
hideTableExpandCollapseBtn('#tab-mailboxes', '#mailbox_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1196
});
});
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1197
}
}
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1198
function draw_templates_mbox_table() {
function draw_templates_mbox_table() {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1199
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1200
if ($.fn.DataTable.isDataTable('#templates_mbox_table') ) {
if ($.fn.DataTable.isDataTable('#templates_mbox_table') ) {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1201
$('#templates_mbox_table').DataTable().columns.adjust().responsive.recalc();
$('#templates_mbox_table').DataTable().columns.adjust().responsive.recalc();
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1202
return;
return;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1203
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1204
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1205
var table = $('#templates_mbox_table').DataTable({
var table = $('#templates_mbox_table').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1206
responsive: true,
responsive: true,
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1207
processing: true,
processing: true,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1208
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1209
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1210
pageLength: pagination_size,
pageLength: pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1211
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1212
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1213
"<'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>>",
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1214
language: lang_datatables,
language: lang_datatables,
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
- 1215
order: [[2, 'desc']],
order: [[2, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1216
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1217
hideTableExpandCollapseBtn('#tab-templates-mbox', '#templates_mbox_table');
hideTableExpandCollapseBtn('#tab-templates-mbox', '#templates_mbox_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1218
},
},
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1219
ajax: {
ajax: {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1220
type: "GET",
type: "GET",
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1221
url: "/api/v1/get/mailbox/template/all",
url: "/api/v1/get/mailbox/template/all",
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1222
dataSrc: function(json){
dataSrc: function(json){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1223
$.each(json, function (i, item) {
$.each(json, 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
- 1224
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="mailbox_template" name="multi_select" value="' + encodeURIComponent(item.id) + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="mailbox_template" name="multi_select" value="' + encodeURIComponent(item.id) + '" />';
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1225
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1226
item.template = escapeHtml(item.template);
item.template = escapeHtml(item.template);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1227
if (item.attributes.rl_frame === "s"){
if (item.attributes.rl_frame === "s"){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1228
item.attributes.rl_frame = lang_rl.second;
item.attributes.rl_frame = lang_rl.second;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1229
} else if (item.attributes.rl_frame === "m"){
} else if (item.attributes.rl_frame === "m"){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1230
item.attributes.rl_frame = lang_rl.minute;
item.attributes.rl_frame = lang_rl.minute;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1231
} else if (item.attributes.rl_frame === "h"){
} else if (item.attributes.rl_frame === "h"){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1232
item.attributes.rl_frame = lang_rl.hour;
item.attributes.rl_frame = lang_rl.hour;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1233
} else if (item.attributes.rl_frame === "d"){
} else if (item.attributes.rl_frame === "d"){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1234
item.attributes.rl_frame = lang_rl.day;
item.attributes.rl_frame = lang_rl.day;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1235
}
}
FreddleSpl0it
over 1 year ago
fe7211f
[Web] add missing translation for ratelimit in templates overview
- Full commit hash
fe7211f27f839a6d3ab8d95b88e0a654417ebdf5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 1236
item.attributes.rl_value = (!item.attributes.rl_value) ? "∞" : escapeHtml(item.attributes.rl_value);
item.attributes.rl_value = (!item.attributes.rl_value) ? "∞" : escapeHtml(item.attributes.rl_value);
same change
fe7211f
[Web] add missing translation for ratelimit in templates overview
- Full commit hash
fe7211f27f839a6d3ab8d95b88e0a654417ebdf5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 1237
item.attributes.ratelimit = item.attributes.rl_value + " " + item.attributes.rl_frame;
item.attributes.ratelimit = item.attributes.rl_value + " " + item.attributes.rl_frame;
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1238
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1239
item.attributes.quota = humanFileSize(item.attributes.quota);
item.attributes.quota = humanFileSize(item.attributes.quota);
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1240
goodygh
over 3 years ago
a9dc13d
Fix sorting datatable in mailbox templates
- Full commit hash
a9dc13d567022361a3a4eb88d6d36273134a8516- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1241
item.attributes.tls_enforce_in = '<i class="text-' + (item.attributes.tls_enforce_in == 1 ? 'success bi bi-lock-fill' : 'danger bi bi-unlock-fill') + '"><span class="sorting-value">' + (item.attributes.tls_enforce_in == 1 ? '1' : '0') + '</span></i>';
item.attributes.tls_enforce_in = '<i class="text-' + (item.attributes.tls_enforce_in == 1 ? 'success bi bi-lock-fill' : 'danger bi bi-unlock-fill') + '"><span class="sorting-value">' + (item.attributes.tls_enforce_in == 1 ? '1' : '0') + '</span></i>';
same change
a9dc13d
Fix sorting datatable in mailbox templates
- Full commit hash
a9dc13d567022361a3a4eb88d6d36273134a8516- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1242
item.attributes.tls_enforce_out = '<i class="text-' + (item.attributes.tls_enforce_out == 1 ? 'success bi bi-lock-fill' : 'danger bi bi-unlock-fill') + '"><span class="sorting-value">' + (item.attributes.tls_enforce_out == 1 ? '1' : '0') + '</span></i>';
item.attributes.tls_enforce_out = '<i class="text-' + (item.attributes.tls_enforce_out == 1 ? 'success bi bi-lock-fill' : 'danger bi bi-unlock-fill') + '"><span class="sorting-value">' + (item.attributes.tls_enforce_out == 1 ? '1' : '0') + '</span></i>';
same change
a9dc13d
Fix sorting datatable in mailbox templates
- Full commit hash
a9dc13d567022361a3a4eb88d6d36273134a8516- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1243
item.attributes.pop3_access = '<i class="text-' + (item.attributes.pop3_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.pop3_access == 1 ? 'check-lg' : 'x-lg') + '"><span class="sorting-value">' + (item.attributes.pop3_access == 1 ? '1' : '0') + '</span></i>';
item.attributes.pop3_access = '<i class="text-' + (item.attributes.pop3_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.pop3_access == 1 ? 'check-lg' : 'x-lg') + '"><span class="sorting-value">' + (item.attributes.pop3_access == 1 ? '1' : '0') + '</span></i>';
same change
a9dc13d
Fix sorting datatable in mailbox templates
- Full commit hash
a9dc13d567022361a3a4eb88d6d36273134a8516- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1244
item.attributes.imap_access = '<i class="text-' + (item.attributes.imap_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.imap_access == 1 ? 'check-lg' : 'x-lg') + '"><span class="sorting-value">' + (item.attributes.imap_access == 1 ? '1' : '0') + '</span></i>';
item.attributes.imap_access = '<i class="text-' + (item.attributes.imap_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.imap_access == 1 ? 'check-lg' : 'x-lg') + '"><span class="sorting-value">' + (item.attributes.imap_access == 1 ? '1' : '0') + '</span></i>';
same change
a9dc13d
Fix sorting datatable in mailbox templates
- Full commit hash
a9dc13d567022361a3a4eb88d6d36273134a8516- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1245
item.attributes.smtp_access = '<i class="text-' + (item.attributes.smtp_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.smtp_access == 1 ? 'check-lg' : 'x-lg') + '"><span class="sorting-value">' + (item.attributes.smtp_access == 1 ? '1' : '0') + '</span></i>';
item.attributes.smtp_access = '<i class="text-' + (item.attributes.smtp_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.smtp_access == 1 ? 'check-lg' : 'x-lg') + '"><span class="sorting-value">' + (item.attributes.smtp_access == 1 ? '1' : '0') + '</span></i>';
same change
a9dc13d
Fix sorting datatable in mailbox templates
- Full commit hash
a9dc13d567022361a3a4eb88d6d36273134a8516- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1246
item.attributes.sieve_access = '<i class="text-' + (item.attributes.sieve_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.sieve_access == 1 ? 'check-lg' : 'x-lg') + '"><span class="sorting-value">' + (item.attributes.sieve_access == 1 ? '1' : '0') + '</span></i>';
item.attributes.sieve_access = '<i class="text-' + (item.attributes.sieve_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.sieve_access == 1 ? 'check-lg' : 'x-lg') + '"><span class="sorting-value">' + (item.attributes.sieve_access == 1 ? '1' : '0') + '</span></i>';
FreddleSpl0it
6 months ago
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1247
item.attributes.eas_access = '<i class="text-' + (item.attributes.eas_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.eas_access == 1 ? 'check-lg' : 'x-lg') + '"><span class="sorting-value">' + (item.attributes.eas_access == 1 ? '1' : '0') + '</span></i>';
item.attributes.eas_access = '<i class="text-' + (item.attributes.eas_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.eas_access == 1 ? 'check-lg' : 'x-lg') + '"><span class="sorting-value">' + (item.attributes.eas_access == 1 ? '1' : '0') + '</span></i>';
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1248
item.attributes.dav_access = '<i class="text-' + (item.attributes.dav_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.dav_access == 1 ? 'check-lg' : 'x-lg') + '"><span class="sorting-value">' + (item.attributes.dav_access == 1 ? '1' : '0') + '</span></i>';
item.attributes.dav_access = '<i class="text-' + (item.attributes.dav_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.dav_access == 1 ? 'check-lg' : 'x-lg') + '"><span class="sorting-value">' + (item.attributes.dav_access == 1 ? '1' : '0') + '</span></i>';
goodygh
over 3 years ago
a9dc13d
Fix sorting datatable in mailbox templates
- Full commit hash
a9dc13d567022361a3a4eb88d6d36273134a8516- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1249
item.attributes.sogo_access = '<i class="text-' + (item.attributes.sogo_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.sogo_access == 1 ? 'check-lg' : 'x-lg') + '"><span class="sorting-value">' + (item.attributes.sogo_access == 1 ? '1' : '0') + '</span></i>';
item.attributes.sogo_access = '<i class="text-' + (item.attributes.sogo_access == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.sogo_access == 1 ? 'check-lg' : 'x-lg') + '"><span class="sorting-value">' + (item.attributes.sogo_access == 1 ? '1' : '0') + '</span></i>';
Snafu
about 2 months ago
0fafda6
Fix force_tfa not available in mailbox template #7216
- Full commit hash
0fafda696bc9ee997e3c2a368b28f4600037aaca- Author
- Snafu <[email protected]>
- Date
- about 2 months ago
- Selected line
- 1250
item.attributes.force_tfa = '<i class="text-' + (item.attributes.force_tfa == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.force_tfa == 1 ? 'check-lg' : 'x-lg') + '"><span class="sorting-value">' + (item.attributes.force_tfa == 1 ? '1' : '0') + '</span></i>';
item.attributes.force_tfa = '<i class="text-' + (item.attributes.force_tfa == 1 ? 'success' : 'danger') + ' bi bi-' + (item.attributes.force_tfa == 1 ? 'check-lg' : 'x-lg') + '"><span class="sorting-value">' + (item.attributes.force_tfa == 1 ? '1' : '0') + '</span></i>';
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1251
if (item.attributes.quarantine_notification === 'never') {
if (item.attributes.quarantine_notification === 'never') {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1252
item.attributes.quarantine_notification = lang.never;
item.attributes.quarantine_notification = lang.never;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1253
} else if (item.attributes.quarantine_notification === 'hourly') {
} else if (item.attributes.quarantine_notification === 'hourly') {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1254
item.attributes.quarantine_notification = lang.hourly;
item.attributes.quarantine_notification = lang.hourly;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1255
} else if (item.attributes.quarantine_notification === 'daily') {
} else if (item.attributes.quarantine_notification === 'daily') {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1256
item.attributes.quarantine_notification = lang.daily;
item.attributes.quarantine_notification = lang.daily;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1257
} else if (item.attributes.quarantine_notification === 'weekly') {
} else if (item.attributes.quarantine_notification === 'weekly') {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1258
item.attributes.quarantine_notification = lang.weekly;
item.attributes.quarantine_notification = lang.weekly;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1259
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1260
if (item.attributes.quarantine_category === 'reject') {
if (item.attributes.quarantine_category === 'reject') {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1261
item.attributes.quarantine_category = '<span class="text-danger">' + lang.q_reject + '</span>';
item.attributes.quarantine_category = '<span class="text-danger">' + lang.q_reject + '</span>';
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1262
} else if (item.attributes.quarantine_category === 'add_header') {
} else if (item.attributes.quarantine_category === 'add_header') {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1263
item.attributes.quarantine_category = '<span class="text-warning">' + lang.q_add_header + '</span>';
item.attributes.quarantine_category = '<span class="text-warning">' + lang.q_add_header + '</span>';
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1264
} else if (item.attributes.quarantine_category === 'all') {
} else if (item.attributes.quarantine_category === 'all') {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1265
item.attributes.quarantine_category = lang.q_all;
item.attributes.quarantine_category = lang.q_all;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1266
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1267
DerLinkman
over 3 years ago
f4731ee
Cleanup + Language Fixes
- Full commit hash
f4731eecdb029be7393177bc76c6e649e40320b2- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1268
if (item.template.toLowerCase() == "default"){
if (item.template.toLowerCase() == "default"){
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
- 1269
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
- 1270
'<a href="/edit/template/' + encodeURIComponent(item.id) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
'<a href="/edit/template/' + encodeURIComponent(item.id) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</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
- 1271
'</div>';
'</div>';
DerLinkman
over 3 years ago
f4731ee
Cleanup + Language Fixes
- Full commit hash
f4731eecdb029be7393177bc76c6e649e40320b2- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1272
}
}
same change
f4731ee
Cleanup + Language Fixes
- Full commit hash
f4731eecdb029be7393177bc76c6e649e40320b2- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1273
else {
else {
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1274
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
- 1275
'<a href="/edit/template/' + encodeURIComponent(item.id) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
'<a href="/edit/template/' + encodeURIComponent(item.id) + '" class="btn btn-sm 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
- 1276
'<a href="#" data-action="delete_selected" data-id="single-template" data-api-url="delete/mailbox/template" data-item="' + encodeURIComponent(item.id) + '" class="btn btn-sm 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-template" data-api-url="delete/mailbox/template" data-item="' + encodeURIComponent(item.id) + '" class="btn btn-sm 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
- 1277
'</div>';
'</div>';
DerLinkman
over 3 years ago
f4731ee
Cleanup + Language Fixes
- Full commit hash
f4731eecdb029be7393177bc76c6e649e40320b2- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1278
}
}
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1279
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1280
if (Array.isArray(item.attributes.tags)){
if (Array.isArray(item.attributes.tags)){
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1281
var tags = '';
var tags = '';
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1282
for (var i = 0; i < item.attributes.tags.length; i++)
for (var i = 0; i < item.attributes.tags.length; i++)
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1283
tags += '<span class="badge bg-primary tag-badge"><i class="bi bi-tag-fill"></i> ' + escapeHtml(item.attributes.tags[i]) + '</span>';
tags += '<span class="badge bg-primary tag-badge"><i class="bi bi-tag-fill"></i> ' + escapeHtml(item.attributes.tags[i]) + '</span>';
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1284
item.attributes.tags = tags;
item.attributes.tags = tags;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1285
} else {
} else {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1286
item.attributes.tags = '';
item.attributes.tags = '';
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1287
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1288
});
});
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1289
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1290
return json;
return json;
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1291
}
}
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1292
},
},
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1293
columns: [
columns: [
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1294
{
{
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1295
// placeholder, so checkbox will not block child row toggle
// placeholder, so checkbox will not block child row toggle
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1296
title: '',
title: '',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1297
data: null,
data: null,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1298
searchable: false,
searchable: false,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1299
orderable: false,
orderable: false,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1300
defaultContent: '',
defaultContent: '',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1301
responsivePriority: 1
responsivePriority: 1
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1302
},
},
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1303
{
{
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1304
title: '',
title: '',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1305
data: 'chkbox',
data: 'chkbox',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1306
searchable: false,
searchable: false,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1307
orderable: false,
orderable: false,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1308
defaultContent: '',
defaultContent: '',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1309
responsivePriority: 1
responsivePriority: 1
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1310
},
},
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1311
{
{
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1312
title: "ID",
title: "ID",
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1313
data: 'id',
data: 'id',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1314
responsivePriority: 2,
responsivePriority: 2,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1315
defaultContent: ''
defaultContent: ''
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1316
},
},
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1317
{
{
DerLinkman
over 3 years ago
f4731ee
Cleanup + Language Fixes
- Full commit hash
f4731eecdb029be7393177bc76c6e649e40320b2- Author
- DerLinkman <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1318
title: lang.template,
title: lang.template,
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1319
data: 'template',
data: 'template',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1320
responsivePriority: 3,
responsivePriority: 3,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1321
defaultContent: ''
defaultContent: ''
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
- 1322
},
},
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1323
{
{
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1324
title: lang.domain_quota,
title: lang.domain_quota,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1325
data: 'attributes.quota',
data: 'attributes.quota',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1326
defaultContent: '',
defaultContent: '',
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
- 1327
},
},
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1328
{
{
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1329
title: lang.tls_enforce_in,
title: lang.tls_enforce_in,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1330
data: 'attributes.tls_enforce_in',
data: 'attributes.tls_enforce_in',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1331
defaultContent: ''
defaultContent: ''
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1332
},
},
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1333
{
{
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1334
title: lang.tls_enforce_out,
title: lang.tls_enforce_out,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1335
data: 'attributes.tls_enforce_out',
data: 'attributes.tls_enforce_out',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1336
defaultContent: ''
defaultContent: ''
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1337
},
},
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1338
{
{
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1339
title: 'SMTP',
title: 'SMTP',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1340
data: 'attributes.smtp_access',
data: 'attributes.smtp_access',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1341
defaultContent: '',
defaultContent: '',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1342
},
},
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1343
{
{
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1344
title: 'IMAP',
title: 'IMAP',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1345
data: 'attributes.imap_access',
data: 'attributes.imap_access',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1346
defaultContent: '',
defaultContent: '',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1347
},
},
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1348
{
{
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1349
title: 'POP3',
title: 'POP3',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1350
data: 'attributes.pop3_access',
data: 'attributes.pop3_access',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1351
defaultContent: '',
defaultContent: '',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1352
},
},
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1353
{
{
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1354
title: 'SIEVE',
title: 'SIEVE',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1355
data: 'attributes.sieve_access',
data: 'attributes.sieve_access',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1356
defaultContent: '',
defaultContent: '',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1357
},
},
FreddleSpl0it
6 months ago
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1358
{
{
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1359
title: 'EAS',
title: 'EAS',
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1360
data: 'attributes.eas_access',
data: 'attributes.eas_access',
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1361
defaultContent: '',
defaultContent: '',
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1362
},
},
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1363
{
{
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1364
title: 'DAV',
title: 'DAV',
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1365
data: 'attributes.dav_access',
data: 'attributes.dav_access',
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1366
defaultContent: '',
defaultContent: '',
same change
56ea430
[Web] Allow admins to limit EAS and DAV access for mailbox users
- Full commit hash
56ea4302ed13ac9aa344dc840689c4dd6ac76b68- Author
- FreddleSpl0it <[email protected]>
- Date
- 6 months ago
- Selected line
- 1367
},
},
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1368
{
{
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1369
title: 'SOGO',
title: 'SOGO',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1370
data: 'attributes.sogo_access',
data: 'attributes.sogo_access',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1371
defaultContent: '',
defaultContent: '',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1372
},
},
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1373
{
{
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1374
title: lang.quarantine_notification,
title: lang.quarantine_notification,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1375
data: 'attributes.quarantine_notification',
data: 'attributes.quarantine_notification',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1376
defaultContent: '',
defaultContent: '',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1377
className: 'none'
className: 'none'
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1378
},
},
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1379
{
{
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1380
title: lang.quarantine_category,
title: lang.quarantine_category,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1381
data: 'attributes.quarantine_category',
data: 'attributes.quarantine_category',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1382
defaultContent: '',
defaultContent: '',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1383
className: 'none'
className: 'none'
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1384
},
},
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1385
{
{
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1386
title: lang.force_pw_update,
title: lang.force_pw_update,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1387
data: 'attributes.force_pw_update',
data: 'attributes.force_pw_update',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1388
defaultContent: '',
defaultContent: '',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1389
class: 'none',
class: 'none',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1390
render: function (data, type) {
render: function (data, type) {
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1391
return 1==data?'<i class="bi bi-check-lg"></i>':'<i class="bi bi-x-lg"></i>';
return 1==data?'<i class="bi bi-check-lg"></i>':'<i class="bi bi-x-lg"></i>';
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1392
}
}
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
- 1393
},
},
Snafu
about 2 months ago
0fafda6
Fix force_tfa not available in mailbox template #7216
- Full commit hash
0fafda696bc9ee997e3c2a368b28f4600037aaca- Author
- Snafu <[email protected]>
- Date
- about 2 months ago
- Selected line
- 1394
{
{
same change
0fafda6
Fix force_tfa not available in mailbox template #7216
- Full commit hash
0fafda696bc9ee997e3c2a368b28f4600037aaca- Author
- Snafu <[email protected]>
- Date
- about 2 months ago
- Selected line
- 1395
title: lang.force_tfa,
title: lang.force_tfa,
same change
0fafda6
Fix force_tfa not available in mailbox template #7216
- Full commit hash
0fafda696bc9ee997e3c2a368b28f4600037aaca- Author
- Snafu <[email protected]>
- Date
- about 2 months ago
- Selected line
- 1396
data: 'attributes.force_tfa',
data: 'attributes.force_tfa',
same change
0fafda6
Fix force_tfa not available in mailbox template #7216
- Full commit hash
0fafda696bc9ee997e3c2a368b28f4600037aaca- Author
- Snafu <[email protected]>
- Date
- about 2 months ago
- Selected line
- 1397
defaultContent: ''
defaultContent: ''
same change
0fafda6
Fix force_tfa not available in mailbox template #7216
- Full commit hash
0fafda696bc9ee997e3c2a368b28f4600037aaca- Author
- Snafu <[email protected]>
- Date
- about 2 months ago
- Selected line
- 1398
},
},
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1399
{
{
FreddleSpl0it
over 1 year ago
fe7211f
[Web] add missing translation for ratelimit in templates overview
- Full commit hash
fe7211f27f839a6d3ab8d95b88e0a654417ebdf5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 1400
title: lang_edit.ratelimit,
title: lang_edit.ratelimit,
same change
fe7211f
[Web] add missing translation for ratelimit in templates overview
- Full commit hash
fe7211f27f839a6d3ab8d95b88e0a654417ebdf5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 1 year ago
- Selected line
- 1401
data: 'attributes.ratelimit',
data: 'attributes.ratelimit',
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1402
defaultContent: '',
defaultContent: '',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1403
class: 'none',
class: 'none',
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1404
},
},
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1405
{
{
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1406
title: 'Tags',
title: 'Tags',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1407
data: 'attributes.tags',
data: 'attributes.tags',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1408
defaultContent: '',
defaultContent: '',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1409
className: 'none'
className: 'none'
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1410
},
},
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1411
{
{
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1412
title: lang.active,
title: lang.active,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1413
data: 'attributes.active',
data: 'attributes.active',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1414
defaultContent: '',
defaultContent: '',
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1415
responsivePriority: 4,
responsivePriority: 4,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1416
render: function (data, type) {
render: function (data, type) {
goodygh
over 3 years ago
a9dc13d
Fix sorting datatable in mailbox templates
- Full commit hash
a9dc13d567022361a3a4eb88d6d36273134a8516- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1417
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':(0==data?'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>':2==data&&'—');
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':(0==data?'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>':2==data&&'—');
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1418
}
}
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
- 1419
},
},
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1420
{
{
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1421
title: lang.action,
title: lang.action,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1422
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
- 1423
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md dt-text-right',
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md dt-text-right',
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1424
responsivePriority: 6,
responsivePriority: 6,
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1425
defaultContent: ''
defaultContent: ''
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1426
},
},
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1427
]
]
same change
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1428
});
});
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
- 1429
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1430
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1431
hideTableExpandCollapseBtn('#tab-templates-mbox', '#templates_mbox_table');
hideTableExpandCollapseBtn('#tab-templates-mbox', '#templates_mbox_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1432
});
});
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1433
}
}
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1434
function draw_resource_table() {
function draw_resource_table() {
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1435
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1436
if ($.fn.DataTable.isDataTable('#resource_table') ) {
if ($.fn.DataTable.isDataTable('#resource_table') ) {
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1437
$('#resource_table').DataTable().columns.adjust().responsive.recalc();
$('#resource_table').DataTable().columns.adjust().responsive.recalc();
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1438
return;
return;
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1439
}
}
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1440
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1441
var table = $('#resource_table').DataTable({
var table = $('#resource_table').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1442
responsive: true,
responsive: true,
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1443
processing: true,
processing: true,
same change
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1444
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1445
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1446
pageLength: pagination_size,
pageLength: pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1447
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1448
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1449
"<'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>>",
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1450
language: lang_datatables,
language: lang_datatables,
Kristian Feldsam
almost 3 years ago
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 1451
initComplete: function(settings, json){
initComplete: function(settings, json){
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1452
hideTableExpandCollapseBtn('#tab-resources', '#resource_table');
hideTableExpandCollapseBtn('#tab-resources', '#resource_table');
Kristian Feldsam
almost 3 years ago
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 1453
filterByDomain(json, 5, table);
filterByDomain(json, 5, table);
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1454
},
},
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1455
ajax: {
ajax: {
same change
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1456
type: "GET",
type: "GET",
same change
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1457
url: "/api/v1/get/resource/all",
url: "/api/v1/get/resource/all",
same change
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1458
dataSrc: function(json){
dataSrc: function(json){
same change
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1459
$.each(json, function (i, item) {
$.each(json, function (i, item) {
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1460
if (item.multiple_bookings == '0') {
if (item.multiple_bookings == '0') {
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1461
item.multiple_bookings = '<span id="active-script" class="badge fs-6 bg-success">' + lang.booking_0_short + '</span>';
item.multiple_bookings = '<span id="active-script" class="badge fs-6 bg-success">' + lang.booking_0_short + '</span>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1462
} else if (item.multiple_bookings == '-1') {
} else if (item.multiple_bookings == '-1') {
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1463
item.multiple_bookings = '<span id="active-script" class="badge fs-6 bg-warning">' + lang.booking_lt0_short + '</span>';
item.multiple_bookings = '<span id="active-script" class="badge fs-6 bg-warning">' + lang.booking_lt0_short + '</span>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1464
} else {
} else {
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1465
item.multiple_bookings = '<span id="active-script" class="badge fs-6 bg-danger">' + lang.booking_custom_short + ' (' + item.multiple_bookings + ')</span>';
item.multiple_bookings = '<span id="active-script" class="badge fs-6 bg-danger">' + lang.booking_custom_short + ' (' + item.multiple_bookings + ')</span>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1466
}
}
FreddleSpl0it
about 4 years ago
fdb56de
[BS5] jquery datatable - add classes to action column
- Full commit hash
fdb56de0a833042c72d5fcd528607482f89f7a05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1467
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
- 1468
'<a href="/edit/resource/' + encodeURIComponent(item.name) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
'<a href="/edit/resource/' + encodeURIComponent(item.name) + '" class="btn btn-sm 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
- 1469
'<a href="#" data-action="delete_selected" data-id="single-resource" data-api-url="delete/resource" data-item="' + item.name + '" class="btn btn-sm 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-resource" data-api-url="delete/resource" data-item="' + item.name + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1470
'</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
- 1471
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="resource" name="multi_select" value="' + encodeURIComponent(item.name) + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="resource" name="multi_select" value="' + encodeURIComponent(item.name) + '" />';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1472
item.name = escapeHtml(item.name);
item.name = escapeHtml(item.name);
Niklas Meyer
about 4 years ago
1edd401
[Web] escapehtml in mailbox.js (#4604)
- Full commit hash
1edd4012e4d3f0ab9456d5750e7be19ee55ee1f5- Author
- Niklas Meyer <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1473
item.description = escapeHtml(item.description);
item.description = escapeHtml(item.description);
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1474
});
});
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1475
same change
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1476
return json;
return json;
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1477
}
}
friedPotat0
almost 7 years ago
c48ae23
Restrict toggle for tbl with specific breakpoints
- Full commit hash
c48ae234cebc96260baca88c3e67523ce52c7591- Author
- friedPotat0 <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 1478
},
},
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1479
columns: [
columns: [
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
- 1480
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1481
// 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
- 1482
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
- 1483
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
- 1484
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
- 1485
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
- 1486
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
- 1487
responsivePriority: 1
responsivePriority: 1
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1488
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1489
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1490
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
- 1491
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
- 1492
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
- 1493
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
- 1494
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
- 1495
responsivePriority: 2
responsivePriority: 2
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1496
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1497
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1498
title: lang.description,
title: lang.description,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1499
data: 'description',
data: 'description',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1500
responsivePriority: 3,
responsivePriority: 3,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1501
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
- 1502
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1503
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1504
title: lang.alias,
title: lang.alias,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1505
data: 'name',
data: 'name',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1506
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
- 1507
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1508
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1509
title: lang.kind,
title: lang.kind,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1510
data: 'kind',
data: 'kind',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1511
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
- 1512
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1513
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1514
title: lang.domain,
title: lang.domain,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1515
data: 'domain',
data: 'domain',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1516
responsivePriority: 4,
responsivePriority: 4,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1517
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
- 1518
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1519
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1520
title: lang.multiple_bookings,
title: lang.multiple_bookings,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1521
data: 'multiple_bookings',
data: 'multiple_bookings',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1522
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
- 1523
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1524
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1525
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
- 1526
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
- 1527
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
- 1528
render: function (data, type) {
render: function (data, type) {
goodygh
over 3 years ago
0252790
Fix sorting for active resources
- Full commit hash
025279009dc7db57f938631c72ec3e2287c04964- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1529
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':(0==data?'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>':2==data&&'—');
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':(0==data?'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>':2==data&&'—');
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
- 1530
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1531
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1532
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1533
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
- 1534
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
- 1535
responsivePriority: 5,
responsivePriority: 5,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1536
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
- 1537
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md dt-text-right'
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md 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
- 1538
},
},
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1539
]
]
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1540
});
});
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1541
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1542
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1543
hideTableExpandCollapseBtn('#tab-resources', '#resource_table');
hideTableExpandCollapseBtn('#tab-resources', '#resource_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1544
});
});
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1545
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1546
function draw_bcc_table() {
function draw_bcc_table() {
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1547
$.get("/api/v1/get/bcc-destination-options", function(data){
$.get("/api/v1/get/bcc-destination-options", function(data){
FreddleSpl0it
about 3 years ago
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1548
var optgroup = "";
var optgroup = "";
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1549
// Domains
// Domains
FreddleSpl0it
about 3 years ago
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1550
if (data.domains && data.domains.length > 0) {
if (data.domains && data.domains.length > 0) {
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1551
optgroup = "<optgroup label='" + lang.domains + "'>";
optgroup = "<optgroup label='" + lang.domains + "'>";
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1552
$.each(data.domains, function(index, domain){
$.each(data.domains, function(index, domain){
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1553
optgroup += "<option value='" + domain + "'>" + domain + "</option>";
optgroup += "<option value='" + domain + "'>" + domain + "</option>";
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1554
});
});
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
- 1555
optgroup += "</optgroup>";
optgroup += "</optgroup>";
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1556
$('#bcc-local-dest').append(optgroup);
$('#bcc-local-dest').append(optgroup);
FreddleSpl0it
about 3 years ago
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1557
}
}
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1558
// Alias domains
// Alias domains
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1559
if (data.alias_domains && data.alias_domains.length > 0) {
if (data.alias_domains && data.alias_domains.length > 0) {
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1560
optgroup = "<optgroup label='" + lang.domain_aliases + "'>";
optgroup = "<optgroup label='" + lang.domain_aliases + "'>";
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1561
$.each(data.alias_domains, function(index, alias_domain){
$.each(data.alias_domains, function(index, alias_domain){
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1562
optgroup += "<option value='" + alias_domain + "'>" + alias_domain + "</option>";
optgroup += "<option value='" + alias_domain + "'>" + alias_domain + "</option>";
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1563
});
});
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1564
optgroup += "</optgroup>"
optgroup += "</optgroup>"
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1565
$('#bcc-local-dest').append(optgroup);
$('#bcc-local-dest').append(optgroup);
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1566
}
}
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1567
// Mailboxes and aliases
// Mailboxes and aliases
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1568
if (data.mailboxes && Object.keys(data.mailboxes).length > 0) {
if (data.mailboxes && Object.keys(data.mailboxes).length > 0) {
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1569
$.each(data.mailboxes, function(mailbox, aliases){
$.each(data.mailboxes, function(mailbox, aliases){
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1570
optgroup = "<optgroup label='" + mailbox + "'>";
optgroup = "<optgroup label='" + mailbox + "'>";
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1571
$.each(aliases, function(index, alias){
$.each(aliases, function(index, alias){
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1572
optgroup += "<option value='" + alias + "'>" + alias + "</option>";
optgroup += "<option value='" + alias + "'>" + alias + "</option>";
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1573
});
});
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1574
optgroup += "</optgroup>";
optgroup += "</optgroup>";
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1575
$('#bcc-local-dest').append(optgroup);
$('#bcc-local-dest').append(optgroup);
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1576
});
});
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1577
}
}
same change
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 1578
// Recreate picker
// Recreate picker
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1579
$('#bcc-local-dest').selectpicker('refresh');
$('#bcc-local-dest').selectpicker('refresh');
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1580
});
});
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1581
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1582
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1583
if ($.fn.DataTable.isDataTable('#bcc_table') ) {
if ($.fn.DataTable.isDataTable('#bcc_table') ) {
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1584
$('#bcc_table').DataTable().columns.adjust().responsive.recalc();
$('#bcc_table').DataTable().columns.adjust().responsive.recalc();
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1585
return;
return;
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1586
}
}
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
- 1587
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1588
var table = $('#bcc_table').DataTable({
var table = $('#bcc_table').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1589
responsive: true,
responsive: true,
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1590
processing: true,
processing: true,
same change
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1591
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1592
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1593
pageLength: pagination_size,
pageLength: pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1594
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1595
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1596
"<'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>>",
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1597
language: lang_datatables,
language: lang_datatables,
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
- 1598
order: [[2, 'desc']],
order: [[2, 'desc']],
Kristian Feldsam
almost 3 years ago
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 1599
initComplete: function(settings, json){
initComplete: function(settings, json){
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1600
hideTableExpandCollapseBtn('#collapse-tab-bcc', '#bcc_table');
hideTableExpandCollapseBtn('#collapse-tab-bcc', '#bcc_table');
Kristian Feldsam
almost 3 years ago
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 1601
filterByDomain(json, 6, table);
filterByDomain(json, 6, table);
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1602
},
},
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1603
ajax: {
ajax: {
same change
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1604
type: "GET",
type: "GET",
same change
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1605
url: "/api/v1/get/bcc/all",
url: "/api/v1/get/bcc/all",
same change
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1606
dataSrc: function(json){
dataSrc: function(json){
same change
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1607
$.each(json, function (i, item) {
$.each(json, function (i, item) {
FreddleSpl0it
about 4 years ago
fdb56de
[BS5] jquery datatable - add classes to action column
- Full commit hash
fdb56de0a833042c72d5fcd528607482f89f7a05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1608
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
- 1609
'<a href="/edit/bcc/' + item.id + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
'<a href="/edit/bcc/' + item.id + '" class="btn btn-sm 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
- 1610
'<a href="#" data-action="delete_selected" data-id="single-bcc" data-api-url="delete/bcc" data-item="' + item.id + '" class="btn btn-sm 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-bcc" data-api-url="delete/bcc" data-item="' + item.id + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1611
'</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
- 1612
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="bcc" name="multi_select" value="' + item.id + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="bcc" name="multi_select" value="' + item.id + '" />';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1613
item.local_dest = escapeHtml(item.local_dest);
item.local_dest = escapeHtml(item.local_dest);
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1614
item.bcc_dest = escapeHtml(item.bcc_dest);
item.bcc_dest = escapeHtml(item.bcc_dest);
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1615
if (item.type == 'sender') {
if (item.type == 'sender') {
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1616
item.type = '<span id="active-script" class="badge fs-6 bg-success">' + lang.bcc_sender_map + '</span>';
item.type = '<span id="active-script" class="badge fs-6 bg-success">' + lang.bcc_sender_map + '</span>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1617
} else {
} else {
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1618
item.type = '<span id="inactive-script" class="badge fs-6 bg-warning">' + lang.bcc_rcpt_map + '</span>';
item.type = '<span id="inactive-script" class="badge fs-6 bg-warning">' + lang.bcc_rcpt_map + '</span>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1619
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1620
});
});
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1621
same change
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1622
return json;
return json;
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1623
}
}
friedPotat0
almost 7 years ago
c48ae23
Restrict toggle for tbl with specific breakpoints
- Full commit hash
c48ae234cebc96260baca88c3e67523ce52c7591- Author
- friedPotat0 <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 1624
},
},
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1625
columns: [
columns: [
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
- 1626
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1627
// 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
- 1628
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
- 1629
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
- 1630
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
- 1631
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
- 1632
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
- 1633
responsivePriority: 1
responsivePriority: 1
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1634
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1635
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1636
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
- 1637
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
- 1638
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
- 1639
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
- 1640
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
- 1641
responsivePriority: 2
responsivePriority: 2
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1642
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1643
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1644
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
- 1645
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
- 1646
responsivePriority: 3,
responsivePriority: 3,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1647
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
- 1648
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1649
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1650
title: lang.bcc_type,
title: lang.bcc_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
- 1651
data: 'type',
data: 'type',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1652
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
- 1653
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1654
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1655
title: lang.bcc_local_dest,
title: lang.bcc_local_dest,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1656
data: 'local_dest',
data: 'local_dest',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1657
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
- 1658
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1659
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1660
title: lang.bcc_destinations,
title: lang.bcc_destinations,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1661
data: 'bcc_dest',
data: 'bcc_dest',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1662
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
- 1663
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1664
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1665
title: lang.domain,
title: lang.domain,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1666
data: 'domain',
data: 'domain',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1667
responsivePriority: 4,
responsivePriority: 4,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1668
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
- 1669
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1670
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1671
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
- 1672
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
- 1673
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
- 1674
render: function (data, type) {
render: function (data, type) {
goodygh
over 3 years ago
78a8fac
Fix sorting for active bcc-map and recipient-map
- Full commit hash
78a8fac6afadbbcaa0672ccb34092b45221ca45f- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1675
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':(0==data?'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>':2==data&&'—');
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':(0==data?'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>':2==data&&'—');
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
- 1676
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1677
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1678
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1679
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
- 1680
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
- 1681
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md dt-text-right',
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md 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
- 1682
responsivePriority: 5,
responsivePriority: 5,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1683
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
- 1684
},
},
FreddleSpl0it
about 4 years ago
fb7e00c
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
fb7e00c158060f6367be45bc916947d7d713e2a8- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1685
]
]
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1686
});
});
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1687
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1688
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1689
hideTableExpandCollapseBtn('#collapse-tab-bcc', '#bcc_table');
hideTableExpandCollapseBtn('#collapse-tab-bcc', '#bcc_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1690
});
});
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1691
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1692
function draw_recipient_map_table() {
function draw_recipient_map_table() {
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1693
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1694
if ($.fn.DataTable.isDataTable('#recipient_map_table') ) {
if ($.fn.DataTable.isDataTable('#recipient_map_table') ) {
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1695
$('#recipient_map_table').DataTable().columns.adjust().responsive.recalc();
$('#recipient_map_table').DataTable().columns.adjust().responsive.recalc();
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1696
return;
return;
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1697
}
}
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1698
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1699
var table = $('#recipient_map_table').DataTable({
var table = $('#recipient_map_table').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1700
responsive: true,
responsive: true,
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1701
processing: true,
processing: true,
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1702
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1703
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1704
pageLength: pagination_size,
pageLength: pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1705
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1706
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1707
"<'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>>",
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1708
language: lang_datatables,
language: lang_datatables,
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
- 1709
order: [[2, 'desc']],
order: [[2, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1710
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1711
hideTableExpandCollapseBtn('#collapse-tab-bcc-filters', '#recipient_map_table');
hideTableExpandCollapseBtn('#collapse-tab-bcc-filters', '#recipient_map_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1712
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1713
ajax: {
ajax: {
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1714
type: "GET",
type: "GET",
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1715
url: "/api/v1/get/recipient_map/all",
url: "/api/v1/get/recipient_map/all",
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1716
dataSrc: function(json){
dataSrc: function(json){
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1717
if (role !== "admin") return null;
if (role !== "admin") return null;
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
- 1718
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1719
$.each(json, function (i, item) {
$.each(json, function (i, item) {
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1720
item.recipient_map_old = escapeHtml(item.recipient_map_old);
item.recipient_map_old = escapeHtml(item.recipient_map_old);
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1721
item.recipient_map_new = escapeHtml(item.recipient_map_new);
item.recipient_map_new = escapeHtml(item.recipient_map_new);
FreddleSpl0it
about 4 years ago
fdb56de
[BS5] jquery datatable - add classes to action column
- Full commit hash
fdb56de0a833042c72d5fcd528607482f89f7a05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1722
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
- 1723
'<a href="/edit/recipient_map/' + item.id + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
'<a href="/edit/recipient_map/' + item.id + '" class="btn btn-sm 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
- 1724
'<a href="#" data-action="delete_selected" data-id="single-recipient_map" data-api-url="delete/recipient_map" data-item="' + item.id + '" class="btn btn-sm 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-recipient_map" data-api-url="delete/recipient_map" data-item="' + item.id + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1725
'</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
- 1726
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="recipient_map" name="multi_select" value="' + item.id + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="recipient_map" name="multi_select" value="' + item.id + '" />';
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1727
});
});
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1728
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1729
return json;
return json;
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1730
}
}
friedPotat0
almost 7 years ago
c48ae23
Restrict toggle for tbl with specific breakpoints
- Full commit hash
c48ae234cebc96260baca88c3e67523ce52c7591- Author
- friedPotat0 <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 1731
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1732
columns: [
columns: [
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
- 1733
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1734
// 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
- 1735
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
- 1736
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
- 1737
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
- 1738
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
- 1739
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
- 1740
responsivePriority: 1
responsivePriority: 1
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1741
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1742
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1743
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
- 1744
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
- 1745
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
- 1746
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
- 1747
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
- 1748
responsivePriority: 2
responsivePriority: 2
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1749
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1750
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1751
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
- 1752
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
- 1753
responsivePriority: 3,
responsivePriority: 3,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1754
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
- 1755
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1756
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1757
title: lang.recipient_map_old,
title: lang.recipient_map_old,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1758
data: 'recipient_map_old',
data: 'recipient_map_old',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1759
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
- 1760
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1761
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1762
title: lang.recipient_map_new,
title: lang.recipient_map_new,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1763
data: 'recipient_map_new',
data: 'recipient_map_new',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1764
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
- 1765
responsivePriority: 4
responsivePriority: 4
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1766
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1767
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1768
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
- 1769
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
- 1770
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
- 1771
render: function (data, type) {
render: function (data, type) {
goodygh
over 3 years ago
78a8fac
Fix sorting for active bcc-map and recipient-map
- Full commit hash
78a8fac6afadbbcaa0672ccb34092b45221ca45f- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1772
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':0==data&&'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':0==data&&'<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
- 1773
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1774
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1775
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1776
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
- 1777
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
- 1778
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md dt-text-right',
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md 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
- 1779
responsivePriority: 5,
responsivePriority: 5,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1780
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
- 1781
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1782
]
]
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1783
});
});
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
- 1784
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1785
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1786
hideTableExpandCollapseBtn('#collapse-tab-bcc-filters', '#recipient_map_table');
hideTableExpandCollapseBtn('#collapse-tab-bcc-filters', '#recipient_map_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1787
});
});
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1788
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1789
function draw_tls_policy_table() {
function draw_tls_policy_table() {
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1790
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1791
if ($.fn.DataTable.isDataTable('#tls_policy_table') ) {
if ($.fn.DataTable.isDataTable('#tls_policy_table') ) {
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1792
$('#tls_policy_table').DataTable().columns.adjust().responsive.recalc();
$('#tls_policy_table').DataTable().columns.adjust().responsive.recalc();
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1793
return;
return;
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1794
}
}
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1795
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1796
var table = $('#tls_policy_table').DataTable({
var table = $('#tls_policy_table').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1797
responsive: true,
responsive: true,
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1798
processing: true,
processing: true,
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1799
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1800
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1801
pageLength: pagination_size,
pageLength: pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1802
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1803
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1804
"<'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>>",
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1805
language: lang_datatables,
language: lang_datatables,
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
- 1806
order: [[2, 'desc']],
order: [[2, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1807
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1808
hideTableExpandCollapseBtn('#tab-tls-policy', '#tls_policy_table');
hideTableExpandCollapseBtn('#tab-tls-policy', '#tls_policy_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1809
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1810
ajax: {
ajax: {
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1811
type: "GET",
type: "GET",
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1812
url: "/api/v1/get/tls-policy-map/all",
url: "/api/v1/get/tls-policy-map/all",
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1813
dataSrc: function(json){
dataSrc: function(json){
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1814
if (role !== "admin") return null;
if (role !== "admin") return null;
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
- 1815
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1816
$.each(json, function (i, item) {
$.each(json, function (i, item) {
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1817
item.dest = escapeHtml(item.dest);
item.dest = escapeHtml(item.dest);
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1818
item.policy = '<b>' + escapeHtml(item.policy) + '</b>';
item.policy = '<b>' + escapeHtml(item.policy) + '</b>';
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1819
if (item.parameters == '') {
if (item.parameters == '') {
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1820
item.parameters = '<code>-</code>';
item.parameters = '<code>-</code>';
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1821
} else {
} else {
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1822
item.parameters = '<code>' + escapeHtml(item.parameters) + '</code>';
item.parameters = '<code>' + escapeHtml(item.parameters) + '</code>';
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1823
}
}
FreddleSpl0it
about 4 years ago
fdb56de
[BS5] jquery datatable - add classes to action column
- Full commit hash
fdb56de0a833042c72d5fcd528607482f89f7a05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1824
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
- 1825
'<a href="/edit/tls_policy_map/' + item.id + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
'<a href="/edit/tls_policy_map/' + item.id + '" class="btn btn-sm 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
- 1826
'<a href="#" data-action="delete_selected" data-id="single-tls-policy-map" data-api-url="delete/tls-policy-map" data-item="' + item.id + '" class="btn btn-sm 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-tls-policy-map" data-api-url="delete/tls-policy-map" data-item="' + item.id + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1827
'</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
- 1828
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="tls-policy-map" name="multi_select" value="' + item.id + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="tls-policy-map" name="multi_select" value="' + item.id + '" />';
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1829
});
});
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1830
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1831
return json;
return json;
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1832
}
}
friedPotat0
almost 7 years ago
c48ae23
Restrict toggle for tbl with specific breakpoints
- Full commit hash
c48ae234cebc96260baca88c3e67523ce52c7591- Author
- friedPotat0 <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 1833
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1834
columns: [
columns: [
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
- 1835
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1836
// 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
- 1837
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
- 1838
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
- 1839
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
- 1840
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
- 1841
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
- 1842
responsivePriority: 1
responsivePriority: 1
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1843
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1844
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1845
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
- 1846
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
- 1847
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
- 1848
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
- 1849
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
- 1850
responsivePriority: 2
responsivePriority: 2
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1851
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1852
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1853
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
- 1854
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
- 1855
responsivePriority: 3,
responsivePriority: 3,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1856
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
- 1857
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1858
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1859
title: lang.tls_map_dest,
title: lang.tls_map_dest,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1860
data: 'dest',
data: 'dest',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1861
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
- 1862
responsivePriority: 4
responsivePriority: 4
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1863
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1864
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1865
title: lang.tls_map_policy,
title: lang.tls_map_policy,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1866
data: 'policy',
data: 'policy',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1867
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
- 1868
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1869
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1870
title: lang.tls_map_parameters,
title: lang.tls_map_parameters,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1871
data: 'parameters',
data: 'parameters',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1872
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
- 1873
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1874
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1875
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
- 1876
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
- 1877
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
- 1878
render: function (data, type) {
render: function (data, type) {
goodygh
over 3 years ago
3fe8aaa
Fix sorting for active tls-policy-map
- Full commit hash
3fe8aaa719081abe058e87ac92cfe7ace812b1b9- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1879
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':0==data&&'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':0==data&&'<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
- 1880
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1881
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1882
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1883
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
- 1884
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
- 1885
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md dt-text-right',
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md 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
- 1886
responsivePriority: 5,
responsivePriority: 5,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1887
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
- 1888
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1889
]
]
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1890
});
});
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
- 1891
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1892
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1893
hideTableExpandCollapseBtn('#tab-tls-policy', '#tls_policy_table');
hideTableExpandCollapseBtn('#tab-tls-policy', '#tls_policy_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1894
});
});
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1895
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1896
function draw_alias_table() {
function draw_alias_table() {
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1897
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1898
if ($.fn.DataTable.isDataTable('#alias_table') ) {
if ($.fn.DataTable.isDataTable('#alias_table') ) {
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1899
$('#alias_table').DataTable().columns.adjust().responsive.recalc();
$('#alias_table').DataTable().columns.adjust().responsive.recalc();
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1900
return;
return;
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1901
}
}
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1902
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1903
var table = $('#alias_table').DataTable({
var table = $('#alias_table').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1904
responsive: true,
responsive: true,
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1905
processing: true,
processing: true,
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1906
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1907
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1908
pageLength: pagination_size,
pageLength: pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1909
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1910
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1911
"<'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>>",
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1912
language: lang_datatables,
language: lang_datatables,
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
- 1913
order: [[2, 'desc']],
order: [[2, 'desc']],
Kristian Feldsam
almost 3 years ago
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 1914
initComplete: function(settings, json){
initComplete: function(settings, json){
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1915
hideTableExpandCollapseBtn('#tab-mbox-aliases', '#alias_table');
hideTableExpandCollapseBtn('#tab-mbox-aliases', '#alias_table');
Kristian Feldsam
almost 3 years ago
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 1916
filterByDomain(json, 5, table);
filterByDomain(json, 5, table);
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1917
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1918
ajax: {
ajax: {
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1919
type: "GET",
type: "GET",
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1920
url: "/api/v1/get/alias/all",
url: "/api/v1/get/alias/all",
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1921
dataSrc: function(json){
dataSrc: function(json){
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1922
$.each(json, function (i, item) {
$.each(json, function (i, item) {
FreddleSpl0it
about 4 years ago
fdb56de
[BS5] jquery datatable - add classes to action column
- Full commit hash
fdb56de0a833042c72d5fcd528607482f89f7a05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1923
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
- 1924
'<a href="/edit/alias/' + encodeURIComponent(item.id) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
'<a href="/edit/alias/' + encodeURIComponent(item.id) + '" class="btn btn-sm 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
- 1925
'<a href="#" data-action="delete_selected" data-id="single-alias" data-api-url="delete/alias" data-item="' + encodeURIComponent(item.id) + '" class="btn btn-sm 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-alias" data-api-url="delete/alias" data-item="' + encodeURIComponent(item.id) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1926
'</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
- 1927
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="alias" name="multi_select" value="' + encodeURIComponent(item.id) + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="alias" name="multi_select" value="' + encodeURIComponent(item.id) + '" />';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1928
item.goto = escapeHtml(item.goto.replace(/,/g, " "));
item.goto = escapeHtml(item.goto.replace(/,/g, " "));
André Peters
over 7 years ago
3d8a463
Merge branch 'master' into admin-login
- Full commit hash
3d8a46357be0ff1cf9a4758ab2ed70c90b1900e4- Author
- André Peters <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1929
if (item.public_comment !== null) {
if (item.public_comment !== null) {
same change
3d8a463
Merge branch 'master' into admin-login
- Full commit hash
3d8a46357be0ff1cf9a4758ab2ed70c90b1900e4- Author
- André Peters <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1930
item.public_comment = escapeHtml(item.public_comment);
item.public_comment = escapeHtml(item.public_comment);
same change
3d8a463
Merge branch 'master' into admin-login
- Full commit hash
3d8a46357be0ff1cf9a4758ab2ed70c90b1900e4- Author
- André Peters <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1931
}
}
same change
3d8a463
Merge branch 'master' into admin-login
- Full commit hash
3d8a46357be0ff1cf9a4758ab2ed70c90b1900e4- Author
- André Peters <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1932
else {
else {
same change
3d8a463
Merge branch 'master' into admin-login
- Full commit hash
3d8a46357be0ff1cf9a4758ab2ed70c90b1900e4- Author
- André Peters <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1933
item.public_comment = '-';
item.public_comment = '-';
same change
3d8a463
Merge branch 'master' into admin-login
- Full commit hash
3d8a46357be0ff1cf9a4758ab2ed70c90b1900e4- Author
- André Peters <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1934
}
}
same change
3d8a463
Merge branch 'master' into admin-login
- Full commit hash
3d8a46357be0ff1cf9a4758ab2ed70c90b1900e4- Author
- André Peters <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1935
if (item.private_comment !== null) {
if (item.private_comment !== null) {
same change
3d8a463
Merge branch 'master' into admin-login
- Full commit hash
3d8a46357be0ff1cf9a4758ab2ed70c90b1900e4- Author
- André Peters <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1936
item.private_comment = escapeHtml(item.private_comment);
item.private_comment = escapeHtml(item.private_comment);
same change
3d8a463
Merge branch 'master' into admin-login
- Full commit hash
3d8a46357be0ff1cf9a4758ab2ed70c90b1900e4- Author
- André Peters <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1937
}
}
same change
3d8a463
Merge branch 'master' into admin-login
- Full commit hash
3d8a46357be0ff1cf9a4758ab2ed70c90b1900e4- Author
- André Peters <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1938
else {
else {
same change
3d8a463
Merge branch 'master' into admin-login
- Full commit hash
3d8a46357be0ff1cf9a4758ab2ed70c90b1900e4- Author
- André Peters <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1939
item.private_comment = '-';
item.private_comment = '-';
same change
3d8a463
Merge branch 'master' into admin-login
- Full commit hash
3d8a46357be0ff1cf9a4758ab2ed70c90b1900e4- Author
- André Peters <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1940
}
}
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1941
if (item.is_catch_all == 1) {
if (item.is_catch_all == 1) {
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1942
item.address = '<div class="badge fs-6 bg-secondary">' + lang.catch_all + '</div> ' + escapeHtml(item.address);
item.address = '<div class="badge fs-6 bg-secondary">' + lang.catch_all + '</div> ' + escapeHtml(item.address);
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1943
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1944
else {
else {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1945
item.address = escapeHtml(item.address);
item.address = escapeHtml(item.address);
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1946
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1947
if (item.goto == "null@localhost") {
if (item.goto == "null@localhost") {
andryyy
about 5 years ago
5065667
[Postfix] Allow to set and override a relayhost per mailbox
- Full commit hash
5065667ae467261d6a2336ec01faf9d26998044c- Author
- andryyy <[email protected]>
- Date
- about 5 years ago
- Selected line
- 1948
item.goto = '⤷ <i class="bi bi-trash" style="font-size:12px"></i>';
item.goto = '⤷ <i class="bi bi-trash" style="font-size:12px"></i>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1949
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1950
else if (item.goto == "spam@localhost") {
else if (item.goto == "spam@localhost") {
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1951
item.goto = '<span class="badge fs-6 bg-danger">' + lang.goto_spam + '</span>';
item.goto = '<span class="badge fs-6 bg-danger">' + lang.goto_spam + '</span>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1952
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1953
else if (item.goto == "ham@localhost") {
else if (item.goto == "ham@localhost") {
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1954
item.goto = '<span class="badge fs-6 bg-success">' + lang.goto_ham + '</span>';
item.goto = '<span class="badge fs-6 bg-success">' + lang.goto_ham + '</span>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1955
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1956
if (item.in_primary_domain !== "") {
if (item.in_primary_domain !== "") {
FreddleSpl0it
over 4 years ago
e62069d
[BS5] change bootstrap in js
- Full commit hash
e62069d3db7e7049c1c799ace32dab78b3de2fe5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 1957
item.domain = '<i data-domainname="' + item.domain + '" class="bi bi-info-circle-fill alias-domain-info text-info" data-bs-toggle="tooltip" title="' + lang.target_domain + ': ' + item.in_primary_domain + '"></i> ' + item.domain;
item.domain = '<i data-domainname="' + item.domain + '" class="bi bi-info-circle-fill alias-domain-info text-info" data-bs-toggle="tooltip" title="' + lang.target_domain + ': ' + item.in_primary_domain + '"></i> ' + item.domain;
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1958
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1959
});
});
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1960
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1961
return json;
return json;
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 1962
}
}
friedPotat0
almost 7 years ago
d1153b4
Restrict row toggle for remaing tables
- Full commit hash
d1153b470f6a2fad5b71e44446e1e94ad44c6d7a- Author
- friedPotat0 <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 1963
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 1964
columns: [
columns: [
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
- 1965
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1966
// 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
- 1967
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
- 1968
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
- 1969
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
- 1970
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
- 1971
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
- 1972
responsivePriority: 1
responsivePriority: 1
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1973
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1974
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1975
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
- 1976
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
- 1977
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
- 1978
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
- 1979
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
- 1980
responsivePriority: 2
responsivePriority: 2
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1981
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1982
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1983
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
- 1984
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
- 1985
responsivePriority: 3,
responsivePriority: 3,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1986
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
- 1987
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1988
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1989
title: lang.alias,
title: lang.alias,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1990
data: 'address',
data: 'address',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1991
responsivePriority: 4,
responsivePriority: 4,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1992
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
- 1993
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1994
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1995
title: lang.target_address,
title: lang.target_address,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1996
data: 'goto',
data: 'goto',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1997
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
- 1998
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 1999
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2000
title: lang.domain,
title: lang.domain,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2001
data: 'domain',
data: 'domain',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2002
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
- 2003
responsivePriority: 5,
responsivePriority: 5,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2004
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2005
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2006
title: lang.sogo_visible,
title: lang.sogo_visible,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2007
data: 'sogo_visible',
data: 'sogo_visible',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2008
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
- 2009
render: function(data, type){
render: function(data, type){
goodygh
over 3 years ago
c737ff4
Fix sorting datatable in aliases
- Full commit hash
c737ff418030431d8562cd87c62034d63fa31ecc- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2010
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':0==data&&'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':0==data&&'<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
- 2011
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2012
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2013
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2014
title: lang.public_comment,
title: lang.public_comment,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2015
data: 'public_comment',
data: 'public_comment',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2016
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
- 2017
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2018
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2019
title: lang.private_comment,
title: lang.private_comment,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2020
data: 'private_comment',
data: 'private_comment',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2021
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
- 2022
},
},
FreddleSpl0it
11 months ago
f67c053
[Rspamd][Web] Internal alias support
- Full commit hash
f67c0530f56495d4b7a2c3b8816a8140c2f25586- Author
- FreddleSpl0it <[email protected]>
- Date
- 11 months ago
- Selected line
- 2023
{
{
same change
f67c053
[Rspamd][Web] Internal alias support
- Full commit hash
f67c0530f56495d4b7a2c3b8816a8140c2f25586- Author
- FreddleSpl0it <[email protected]>
- Date
- 11 months ago
- Selected line
- 2024
title: lang.internal,
title: lang.internal,
same change
f67c053
[Rspamd][Web] Internal alias support
- Full commit hash
f67c0530f56495d4b7a2c3b8816a8140c2f25586- Author
- FreddleSpl0it <[email protected]>
- Date
- 11 months ago
- Selected line
- 2025
data: 'internal',
data: 'internal',
same change
f67c053
[Rspamd][Web] Internal alias support
- Full commit hash
f67c0530f56495d4b7a2c3b8816a8140c2f25586- Author
- FreddleSpl0it <[email protected]>
- Date
- 11 months ago
- Selected line
- 2026
defaultContent: '',
defaultContent: '',
same change
f67c053
[Rspamd][Web] Internal alias support
- Full commit hash
f67c0530f56495d4b7a2c3b8816a8140c2f25586- Author
- FreddleSpl0it <[email protected]>
- Date
- 11 months ago
- Selected line
- 2027
responsivePriority: 6,
responsivePriority: 6,
same change
f67c053
[Rspamd][Web] Internal alias support
- Full commit hash
f67c0530f56495d4b7a2c3b8816a8140c2f25586- Author
- FreddleSpl0it <[email protected]>
- Date
- 11 months ago
- Selected line
- 2028
render: function (data, type) {
render: function (data, type) {
same change
f67c053
[Rspamd][Web] Internal alias support
- Full commit hash
f67c0530f56495d4b7a2c3b8816a8140c2f25586- Author
- FreddleSpl0it <[email protected]>
- Date
- 11 months ago
- Selected line
- 2029
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':0==data&&'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':0==data&&'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
same change
f67c053
[Rspamd][Web] Internal alias support
- Full commit hash
f67c0530f56495d4b7a2c3b8816a8140c2f25586- Author
- FreddleSpl0it <[email protected]>
- Date
- 11 months ago
- Selected line
- 2030
}
}
same change
f67c053
[Rspamd][Web] Internal alias support
- Full commit hash
f67c0530f56495d4b7a2c3b8816a8140c2f25586- Author
- FreddleSpl0it <[email protected]>
- Date
- 11 months ago
- Selected line
- 2031
},
},
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
- 2032
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2033
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
- 2034
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
- 2035
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
- 2036
responsivePriority: 6,
responsivePriority: 6,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2037
render: function (data, type) {
render: function (data, type) {
goodygh
over 3 years ago
c737ff4
Fix sorting datatable in aliases
- Full commit hash
c737ff418030431d8562cd87c62034d63fa31ecc- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2038
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':0==data&&'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':0==data&&'<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
- 2039
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2040
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2041
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2042
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
- 2043
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
- 2044
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md dt-text-right',
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md 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
- 2045
responsivePriority: 5,
responsivePriority: 5,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2046
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
- 2047
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2048
]
]
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2049
});
});
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
- 2050
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2051
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2052
hideTableExpandCollapseBtn('#tab-mbox-aliases', '#alias_table');
hideTableExpandCollapseBtn('#tab-mbox-aliases', '#alias_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2053
});
});
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
- 2054
Kristian Feldsam
over 3 years ago
e5e6418
[web] fixed tooltips in ajax loaded alias table
- Full commit hash
e5e6418be869a373b4af152e3f5a051a0d616146- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2055
table.on( 'draw', function (){
table.on( 'draw', function (){
same change
e5e6418
[web] fixed tooltips in ajax loaded alias table
- Full commit hash
e5e6418be869a373b4af152e3f5a051a0d616146- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2056
$('#alias_table [data-bs-toggle="tooltip"]').tooltip();
$('#alias_table [data-bs-toggle="tooltip"]').tooltip();
same change
e5e6418
[web] fixed tooltips in ajax loaded alias table
- Full commit hash
e5e6418be869a373b4af152e3f5a051a0d616146- Author
- Kristian Feldsam <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2057
});
});
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2058
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2059
function draw_aliasdomain_table() {
function draw_aliasdomain_table() {
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2060
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2061
if ($.fn.DataTable.isDataTable('#aliasdomain_table') ) {
if ($.fn.DataTable.isDataTable('#aliasdomain_table') ) {
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2062
$('#aliasdomain_table').DataTable().columns.adjust().responsive.recalc();
$('#aliasdomain_table').DataTable().columns.adjust().responsive.recalc();
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2063
return;
return;
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2064
}
}
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2065
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2066
var table = $('#aliasdomain_table').DataTable({
var table = $('#aliasdomain_table').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2067
responsive: true,
responsive: true,
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2068
processing: true,
processing: true,
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2069
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2070
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2071
pageLength: pagination_size,
pageLength: pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2072
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2073
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2074
"<'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>>",
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2075
language: lang_datatables,
language: lang_datatables,
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2076
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2077
hideTableExpandCollapseBtn('#tab-domain-aliases', '#aliasdomain_table');
hideTableExpandCollapseBtn('#tab-domain-aliases', '#aliasdomain_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2078
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2079
ajax: {
ajax: {
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2080
type: "GET",
type: "GET",
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2081
url: "/api/v1/get/alias-domain/all",
url: "/api/v1/get/alias-domain/all",
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2082
dataSrc: function(json){
dataSrc: function(json){
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2083
$.each(json, function (i, item) {
$.each(json, function (i, item) {
FreddleSpl0it
over 3 years ago
6704377
[Web] escape more html data
- Full commit hash
6704377402138576e25b5daa062f7d5ba203987e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2084
item.alias_domain = escapeHtml(item.alias_domain);
item.alias_domain = escapeHtml(item.alias_domain);
same change
6704377
[Web] escape more html data
- Full commit hash
6704377402138576e25b5daa062f7d5ba203987e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2085
FreddleSpl0it
about 4 years ago
fdb56de
[BS5] jquery datatable - add classes to action column
- Full commit hash
fdb56de0a833042c72d5fcd528607482f89f7a05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2086
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
- 2087
'<a href="/edit/aliasdomain/' + encodeURIComponent(item.alias_domain) + '" class="btn btn-sm btn-xs-lg btn-xs-third btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
'<a href="/edit/aliasdomain/' + encodeURIComponent(item.alias_domain) + '" class="btn btn-sm 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
- 2088
'<a href="#" data-action="delete_selected" data-id="single-alias-domain" data-api-url="delete/alias-domain" data-item="' + encodeURIComponent(item.alias_domain) + '" class="btn btn-sm 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-alias-domain" data-api-url="delete/alias-domain" data-item="' + encodeURIComponent(item.alias_domain) + '" class="btn btn-sm btn-xs-lg btn-xs-third btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</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
- 2089
'<a href="#dnsInfoModal" class="btn btn-sm btn-xs-lg btn-xs-third btn-info" data-bs-toggle="modal" data-domain="' + encodeURIComponent(item.alias_domain) + '"><i class="bi bi-globe2"></i> DNS</a></div>' +
'<a href="#dnsInfoModal" class="btn btn-sm btn-xs-lg btn-xs-third btn-info" data-bs-toggle="modal" data-domain="' + encodeURIComponent(item.alias_domain) + '"><i class="bi bi-globe2"></i> DNS</a></div>' +
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2090
'</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
- 2091
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="alias-domain" name="multi_select" value="' + encodeURIComponent(item.alias_domain) + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="alias-domain" name="multi_select" value="' + encodeURIComponent(item.alias_domain) + '" />';
andryyy
almost 7 years ago
893ce5a
[Web] Allow to add external sender addresses, can be disabled by domain admin ACL and is disabled by default
- Full commit hash
893ce5a7895108a63d70bea324e64b330fc8f400- Author
- andryyy <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 2092
if(item.parent_is_backupmx == '1') {
if(item.parent_is_backupmx == '1') {
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2093
item.target_domain = '<span><a href="/edit/domain/' + item.target_domain + '">' + item.target_domain + '</a> <div class="badge fs-6 bg-warning">' + lang.alias_domain_backupmx + '</div></span>';
item.target_domain = '<span><a href="/edit/domain/' + item.target_domain + '">' + item.target_domain + '</a> <div class="badge fs-6 bg-warning">' + lang.alias_domain_backupmx + '</div></span>';
andryyy
almost 7 years ago
893ce5a
[Web] Allow to add external sender addresses, can be disabled by domain admin ACL and is disabled by default
- Full commit hash
893ce5a7895108a63d70bea324e64b330fc8f400- Author
- andryyy <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 2094
} else {
} else {
same change
893ce5a
[Web] Allow to add external sender addresses, can be disabled by domain admin ACL and is disabled by default
- Full commit hash
893ce5a7895108a63d70bea324e64b330fc8f400- Author
- andryyy <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 2095
item.target_domain = '<span><a href="/edit/domain/' + item.target_domain + '">' + item.target_domain + '</a></span>';
item.target_domain = '<span><a href="/edit/domain/' + item.target_domain + '">' + item.target_domain + '</a></span>';
same change
893ce5a
[Web] Allow to add external sender addresses, can be disabled by domain admin ACL and is disabled by default
- Full commit hash
893ce5a7895108a63d70bea324e64b330fc8f400- Author
- andryyy <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 2096
}
}
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2097
});
});
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2098
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2099
return json;
return json;
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2100
}
}
friedPotat0
almost 7 years ago
c48ae23
Restrict toggle for tbl with specific breakpoints
- Full commit hash
c48ae234cebc96260baca88c3e67523ce52c7591- Author
- friedPotat0 <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 2101
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2102
columns: [
columns: [
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
- 2103
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2104
// 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
- 2105
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
- 2106
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
- 2107
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
- 2108
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
- 2109
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
- 2110
responsivePriority: 1
responsivePriority: 1
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2111
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2112
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2113
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
- 2114
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
- 2115
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
- 2116
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
- 2117
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
- 2118
responsivePriority: 2
responsivePriority: 2
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2119
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2120
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2121
title: lang.alias,
title: lang.alias,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2122
data: 'alias_domain',
data: 'alias_domain',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2123
responsivePriority: 3,
responsivePriority: 3,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2124
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
- 2125
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2126
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2127
title: lang.target_domain,
title: lang.target_domain,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2128
data: 'target_domain',
data: 'target_domain',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2129
responsivePriority: 4,
responsivePriority: 4,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2130
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
- 2131
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2132
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2133
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
- 2134
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
- 2135
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
- 2136
render: function (data, type) {
render: function (data, type) {
goodygh
over 3 years ago
44585e1
Fix sorting datatable in domain aliases
- Full commit hash
44585e1c15fe014870b015735cf4cdd707327af0- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2137
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':0==data&&'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':0==data&&'<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
- 2138
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2139
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2140
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2141
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
- 2142
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
- 2143
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md dt-text-right',
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md 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
- 2144
responsivePriority: 5,
responsivePriority: 5,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2145
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
- 2146
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2147
]
]
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2148
});
});
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2149
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2150
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2151
hideTableExpandCollapseBtn('#tab-domain-aliases', '#aliasdomain_table');
hideTableExpandCollapseBtn('#tab-domain-aliases', '#aliasdomain_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2152
});
});
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2153
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2154
function draw_sync_job_table() {
function draw_sync_job_table() {
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2155
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2156
if ($.fn.DataTable.isDataTable('#sync_job_table') ) {
if ($.fn.DataTable.isDataTable('#sync_job_table') ) {
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2157
$('#sync_job_table').DataTable().columns.adjust().responsive.recalc();
$('#sync_job_table').DataTable().columns.adjust().responsive.recalc();
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2158
return;
return;
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2159
}
}
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2160
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2161
var table = $('#sync_job_table').DataTable({
var table = $('#sync_job_table').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2162
responsive: true,
responsive: true,
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2163
processing: true,
processing: true,
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2164
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2165
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2166
pageLength: pagination_size,
pageLength: pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2167
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2168
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2169
"<'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>>",
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2170
language: lang_datatables,
language: lang_datatables,
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
- 2171
order: [[2, 'desc']],
order: [[2, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2172
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2173
hideTableExpandCollapseBtn('#tab-syncjobs', '#sync_job_table');
hideTableExpandCollapseBtn('#tab-syncjobs', '#sync_job_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2174
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2175
ajax: {
ajax: {
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2176
type: "GET",
type: "GET",
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2177
url: "/api/v1/get/syncjobs/all/no_log",
url: "/api/v1/get/syncjobs/all/no_log",
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2178
dataSrc: function(json){
dataSrc: function(json){
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2179
$.each(json, function (i, item) {
$.each(json, function (i, item) {
FreddleSpl0it
over 4 years ago
e62069d
[BS5] change bootstrap in js
- Full commit hash
e62069d3db7e7049c1c799ace32dab78b3de2fe5- Author
- FreddleSpl0it <[email protected]>
- Date
- over 4 years ago
- Selected line
- 2180
item.log = '<a href="#syncjobLogModal" data-bs-toggle="modal" data-syncjob-id="' + encodeURIComponent(item.id) + '">' + lang.open_logs + '</a>'
item.log = '<a href="#syncjobLogModal" data-bs-toggle="modal" data-syncjob-id="' + encodeURIComponent(item.id) + '">' + lang.open_logs + '</a>'
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2181
item.user2 = escapeHtml(item.user2);
item.user2 = escapeHtml(item.user2);
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2182
if (!item.exclude > 0) {
if (!item.exclude > 0) {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2183
item.exclude = '-';
item.exclude = '-';
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2184
} else {
} else {
Niklas Meyer
about 4 years ago
1edd401
[Web] escapehtml in mailbox.js (#4604)
- Full commit hash
1edd4012e4d3f0ab9456d5750e7be19ee55ee1f5- Author
- Niklas Meyer <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2185
item.exclude = '<code>' + escapeHtml(item.exclude) + '</code>';
item.exclude = '<code>' + escapeHtml(item.exclude) + '</code>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2186
}
}
FreddleSpl0it
over 3 years ago
6704377
[Web] escape more html data
- Full commit hash
6704377402138576e25b5daa062f7d5ba203987e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2187
item.server_w_port = escapeHtml(item.user1) + '@' + escapeHtml(item.host1) + ':' + escapeHtml(item.port1);
item.server_w_port = escapeHtml(item.user1) + '@' + escapeHtml(item.host1) + ':' + escapeHtml(item.port1);
FreddleSpl0it
about 4 years ago
fdb56de
[BS5] jquery datatable - add classes to action column
- Full commit hash
fdb56de0a833042c72d5fcd528607482f89f7a05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2188
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
- 2189
'<a href="/edit/syncjob/' + item.id + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
'<a href="/edit/syncjob/' + item.id + '" class="btn btn-sm 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
- 2190
'<a href="#" data-action="delete_selected" data-id="single-syncjob" data-api-url="delete/syncjob" data-item="' + item.id + '" class="btn btn-sm 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-syncjob" data-api-url="delete/syncjob" data-item="' + item.id + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2191
'</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
- 2192
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="syncjob" name="multi_select" value="' + item.id + '" />';
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="syncjob" name="multi_select" value="' + item.id + '" />';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2193
if (item.is_running == 1) {
if (item.is_running == 1) {
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2194
item.is_running = '<span id="active-script" class="badge fs-6 bg-success">' + lang.running + '</span>';
item.is_running = '<span id="active-script" class="badge fs-6 bg-success">' + lang.running + '</span>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2195
} else {
} else {
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2196
item.is_running = '<span id="inactive-script" class="badge fs-6 bg-warning">' + lang.waiting + '</span>';
item.is_running = '<span id="inactive-script" class="badge fs-6 bg-warning">' + lang.waiting + '</span>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2197
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2198
if (!item.last_run > 0) {
if (!item.last_run > 0) {
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2199
item.last_run = lang.waiting;
item.last_run = lang.waiting;
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2200
}
}
Kristian Feldsam
almost 5 years ago
54c4d7e
[Dovecot: Imapsync] Parse, save and show last run status (#4253)
- Full commit hash
54c4d7e49c53fbbc4f5df697b27b9dfa37052533- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 5 years ago
- Selected line
- 2201
if (item.success == null) {
if (item.success == null) {
same change
54c4d7e
[Dovecot: Imapsync] Parse, save and show last run status (#4253)
- Full commit hash
54c4d7e49c53fbbc4f5df697b27b9dfa37052533- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 5 years ago
- Selected line
- 2202
item.success = '-';
item.success = '-';
same change
54c4d7e
[Dovecot: Imapsync] Parse, save and show last run status (#4253)
- Full commit hash
54c4d7e49c53fbbc4f5df697b27b9dfa37052533- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 5 years ago
- Selected line
- 2203
item.exit_status = '';
item.exit_status = '';
same change
54c4d7e
[Dovecot: Imapsync] Parse, save and show last run status (#4253)
- Full commit hash
54c4d7e49c53fbbc4f5df697b27b9dfa37052533- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 5 years ago
- Selected line
- 2204
} else {
} else {
same change
54c4d7e
[Dovecot: Imapsync] Parse, save and show last run status (#4253)
- Full commit hash
54c4d7e49c53fbbc4f5df697b27b9dfa37052533- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 5 years ago
- Selected line
- 2205
item.success = '<i class="text-' + (item.success == 1 ? 'success' : 'danger') + ' bi bi-' + (item.success == 1 ? 'check-lg' : 'x-lg') + '"></i>';
item.success = '<i class="text-' + (item.success == 1 ? 'success' : 'danger') + ' bi bi-' + (item.success == 1 ? 'check-lg' : 'x-lg') + '"></i>';
same change
54c4d7e
[Dovecot: Imapsync] Parse, save and show last run status (#4253)
- Full commit hash
54c4d7e49c53fbbc4f5df697b27b9dfa37052533- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 5 years ago
- Selected line
- 2206
}
}
same change
54c4d7e
[Dovecot: Imapsync] Parse, save and show last run status (#4253)
- Full commit hash
54c4d7e49c53fbbc4f5df697b27b9dfa37052533- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 5 years ago
- Selected line
- 2207
if (lang['syncjob_'+item.exit_status]) {
if (lang['syncjob_'+item.exit_status]) {
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
- 2208
item.exit_status = lang['syncjob_'+item.exit_status];
item.exit_status = lang['syncjob_'+item.exit_status];
Kristian Feldsam
almost 5 years ago
54c4d7e
[Dovecot: Imapsync] Parse, save and show last run status (#4253)
- Full commit hash
54c4d7e49c53fbbc4f5df697b27b9dfa37052533- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 5 years ago
- Selected line
- 2209
} else if (item.success != '-') {
} else if (item.success != '-') {
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
- 2210
item.exit_status = lang.syncjob_check_log;
item.exit_status = lang.syncjob_check_log;
Kristian Feldsam
almost 5 years ago
54c4d7e
[Dovecot: Imapsync] Parse, save and show last run status (#4253)
- Full commit hash
54c4d7e49c53fbbc4f5df697b27b9dfa37052533- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 5 years ago
- Selected line
- 2211
}
}
same change
54c4d7e
[Dovecot: Imapsync] Parse, save and show last run status (#4253)
- Full commit hash
54c4d7e49c53fbbc4f5df697b27b9dfa37052533- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 5 years ago
- Selected line
- 2212
item.exit_status = item.success + ' ' + item.exit_status;
item.exit_status = item.success + ' ' + item.exit_status;
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2213
});
});
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2214
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2215
return json;
return json;
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2216
}
}
friedPotat0
almost 7 years ago
d1153b4
Restrict row toggle for remaing tables
- Full commit hash
d1153b470f6a2fad5b71e44446e1e94ad44c6d7a- Author
- friedPotat0 <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 2217
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2218
columns: [
columns: [
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
- 2219
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2220
// 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
- 2221
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
- 2222
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
- 2223
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
- 2224
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
- 2225
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
- 2226
responsivePriority: 1
responsivePriority: 1
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2227
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2228
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2229
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
- 2230
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
- 2231
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
- 2232
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
- 2233
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
- 2234
responsivePriority: 2
responsivePriority: 2
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2235
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2236
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2237
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
- 2238
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
- 2239
responsivePriority: 3,
responsivePriority: 3,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2240
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
- 2241
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2242
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2243
title: lang.owner,
title: lang.owner,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2244
data: 'user2',
data: 'user2',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2245
responsivePriority: 4,
responsivePriority: 4,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2246
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
- 2247
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2248
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2249
title: 'Server',
title: 'Server',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2250
data: 'server_w_port',
data: 'server_w_port',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2251
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
- 2252
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2253
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2254
title: lang.last_run,
title: lang.last_run,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2255
data: 'last_run',
data: 'last_run',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2256
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
- 2257
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2258
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2259
title: lang.syncjob_last_run_result,
title: lang.syncjob_last_run_result,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2260
data: 'exit_status',
data: 'exit_status',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2261
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
- 2262
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2263
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2264
title: 'Log',
title: 'Log',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2265
data: 'log',
data: 'log',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2266
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
- 2267
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2268
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2269
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
- 2270
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
- 2271
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
- 2272
render: function (data, type) {
render: function (data, type) {
goodygh
over 3 years ago
96f954a
Fix sorting for active syncjobs
- Full commit hash
96f954a4e2b591cb8b9e1a2ad61f055fe50a1989- Author
- goodygh <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2273
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':0==data&&'<i class="bi bi-x-lg"><span class="sorting-value">0</span></i>';
return 1==data?'<i class="bi bi-check-lg"><span class="sorting-value">1</span></i>':0==data&&'<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
- 2274
}
}
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2275
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2276
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2277
title: lang.status,
title: lang.status,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2278
data: 'is_running',
data: 'is_running',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2279
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
- 2280
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2281
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2282
title: lang.excludes,
title: lang.excludes,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2283
data: 'exclude',
data: 'exclude',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2284
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
- 2285
className: 'none'
className: 'none'
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2286
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2287
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2288
title: lang.mins_interval,
title: lang.mins_interval,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2289
data: 'mins_interval',
data: 'mins_interval',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2290
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
- 2291
className: 'none'
className: 'none'
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2292
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2293
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2294
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
- 2295
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
- 2296
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md dt-text-right',
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md 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
- 2297
responsivePriority: 5,
responsivePriority: 5,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2298
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
- 2299
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2300
]
]
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2301
});
});
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2302
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2303
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2304
hideTableExpandCollapseBtn('#tab-syncjobs', '#sync_job_table');
hideTableExpandCollapseBtn('#tab-syncjobs', '#sync_job_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2305
});
});
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2306
}
}
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2307
function draw_filter_table() {
function draw_filter_table() {
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2308
// just recalc width if instance already exists
// just recalc width if instance already exists
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2309
if ($.fn.DataTable.isDataTable('#filter_table') ) {
if ($.fn.DataTable.isDataTable('#filter_table') ) {
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2310
$('#filter_table').DataTable().columns.adjust().responsive.recalc();
$('#filter_table').DataTable().columns.adjust().responsive.recalc();
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2311
return;
return;
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2312
}
}
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2313
same change
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2314
var table = $('#filter_table').DataTable({
var table = $('#filter_table').DataTable({
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2315
responsive: true,
responsive: true,
FreddleSpl0it
about 4 years ago
c9b883d
[BS5] fix datatables
- Full commit hash
c9b883dff5fbfc8d107dabdd2454f8ab8f2a7f29- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2316
autoWidth: false,
autoWidth: false,
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2317
processing: true,
processing: true,
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2318
serverSide: false,
serverSide: false,
FreddleSpl0it
over 3 years ago
b22f74c
[Web] persist table settings + fix quarantine sort
- Full commit hash
b22f74cb5985456eb659ee237c392632e4515166- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2319
stateSave: true,
stateSave: true,
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2320
pageLength: pagination_size,
pageLength: pagination_size,
FreddleSpl0it
over 3 years ago
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2321
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
dom: "<'row'<'col-sm-12 col-md-6'f><'col-sm-12 col-md-6'l>>" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2322
"tr" +
"tr" +
same change
7966f01
[Web] switch table length + filter field positions
- Full commit hash
7966f010a2d487603f990fa352818f9e5087216e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2323
"<'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>>",
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2324
language: lang_datatables,
language: lang_datatables,
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
- 2325
order: [[2, 'desc']],
order: [[2, 'desc']],
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2326
initComplete: function(){
initComplete: function(){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2327
hideTableExpandCollapseBtn('#tab-filters', '#filter_table');
hideTableExpandCollapseBtn('#tab-filters', '#filter_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2328
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2329
ajax: {
ajax: {
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2330
type: "GET",
type: "GET",
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2331
url: "/api/v1/get/filters/all",
url: "/api/v1/get/filters/all",
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2332
dataSrc: function(json){
dataSrc: function(json){
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2333
$.each(json, function (i, item) {
$.each(json, function (i, item) {
andryyy
almost 6 years ago
d9b91fc
[Web] Important: Removed unnecessary *_int attributes from GET elements, _only_ returning int values now (same for all attributes which were provided as html char and int)
- Full commit hash
d9b91fc04f286eaba4266ca60254a02dc5e91867- Author
- andryyy <[email protected]>
- Date
- almost 6 years ago
- Selected line
- 2334
if (item.active == 1) {
if (item.active == 1) {
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2335
item.active = '<span id="active-script" class="badge fs-6 bg-success">' + lang.active + '</span>';
item.active = '<span id="active-script" class="badge fs-6 bg-success">' + lang.active + '</span>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2336
} else {
} else {
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2337
item.active = '<span id="inactive-script" class="badge fs-6 bg-warning">' + lang.inactive + '</span>';
item.active = '<span id="inactive-script" class="badge fs-6 bg-warning">' + lang.inactive + '</span>';
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2338
}
}
FreddleSpl0it
over 3 years ago
6704377
[Web] escape more html data
- Full commit hash
6704377402138576e25b5daa062f7d5ba203987e- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2339
item.script_desc = escapeHtml(item.script_desc);
item.script_desc = escapeHtml(item.script_desc);
FreddleSpl0it
almost 4 years ago
8c4dbae
rework datatables
- Full commit hash
8c4dbaec4f0d75c6d9bd79e46495dbed46de9fee- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 4 years ago
- Selected line
- 2340
item.script_data = '<pre class="text-break" style="margin:0px">' + escapeHtml(item.script_data) + '</pre>'
item.script_data = '<pre class="text-break" style="margin:0px">' + escapeHtml(item.script_data) + '</pre>'
FreddleSpl0it
about 4 years ago
560df58
[BS5] fix minor issues
- Full commit hash
560df58bb4fcf84e8f7cf078cfa9451f288b0034- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2341
item.filter_type = '<div class="badge fs-6 bg-secondary">' + item.filter_type.charAt(0).toUpperCase() + item.filter_type.slice(1).toLowerCase() + '</div>'
item.filter_type = '<div class="badge fs-6 bg-secondary">' + item.filter_type.charAt(0).toUpperCase() + item.filter_type.slice(1).toLowerCase() + '</div>'
FreddleSpl0it
about 4 years ago
fdb56de
[BS5] jquery datatable - add classes to action column
- Full commit hash
fdb56de0a833042c72d5fcd528607482f89f7a05- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2342
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
- 2343
'<a href="/edit/filter/' + item.id + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-secondary"><i class="bi bi-pencil-fill"></i> ' + lang.edit + '</a>' +
'<a href="/edit/filter/' + item.id + '" class="btn btn-sm 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
- 2344
'<a href="#" data-action="delete_selected" data-id="single-filter" data-api-url="delete/filter" data-item="' + encodeURIComponent(item.id) + '" class="btn btn-sm 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-filter" data-api-url="delete/filter" data-item="' + encodeURIComponent(item.id) + '" class="btn btn-sm btn-xs-lg btn-xs-half btn-danger"><i class="bi bi-trash"></i> ' + lang.remove + '</a>' +
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2345
'</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
- 2346
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="filter_item" name="multi_select" value="' + item.id + '" />'
item.chkbox = '<input type="checkbox" class="form-check-input" data-id="filter_item" name="multi_select" value="' + item.id + '" />'
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2347
});
});
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2348
same change
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2349
return json;
return json;
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2350
}
}
friedPotat0
almost 7 years ago
d1153b4
Restrict row toggle for remaing tables
- Full commit hash
d1153b470f6a2fad5b71e44446e1e94ad44c6d7a- Author
- friedPotat0 <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 2351
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2352
columns: [
columns: [
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
- 2353
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2354
// 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
- 2355
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
- 2356
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
- 2357
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
- 2358
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
- 2359
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
- 2360
responsivePriority: 1
responsivePriority: 1
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2361
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2362
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2363
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
- 2364
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
- 2365
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
- 2366
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
- 2367
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
- 2368
responsivePriority: 2
responsivePriority: 2
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2369
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2370
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2371
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
- 2372
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
- 2373
responsivePriority: 2,
responsivePriority: 2,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2374
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
- 2375
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2376
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2377
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
- 2378
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
- 2379
responsivePriority: 3,
responsivePriority: 3,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2380
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
- 2381
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2382
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2383
title: 'Type',
title: '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
- 2384
data: 'filter_type',
data: 'filter_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
- 2385
responsivePriority: 4,
responsivePriority: 4,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2386
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
- 2387
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2388
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2389
title: lang.owner,
title: lang.owner,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2390
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
- 2391
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
- 2392
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2393
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2394
title: lang.description,
title: lang.description,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2395
data: 'script_desc',
data: 'script_desc',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2396
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
- 2397
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2398
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2399
title: 'Script',
title: 'Script',
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2400
data: 'script_data',
data: 'script_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
- 2401
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
- 2402
className: 'none'
className: 'none'
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2403
},
},
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2404
{
{
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2405
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
- 2406
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
- 2407
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md dt-text-right',
className: 'dt-sm-head-hidden dt-data-w100 dtr-col-md 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
- 2408
responsivePriority: 5,
responsivePriority: 5,
same change
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2409
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
- 2410
},
},
FreddleSpl0it
about 4 years ago
0ece065
[BS5] Replace FooTable with jquery Datatables
- Full commit hash
0ece065cb0d1d64be681b71c686abbcbbaee0971- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2411
]
]
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2412
});
});
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2413
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2414
table.on('responsive-resize', function (e, datatable, columns){
table.on('responsive-resize', function (e, datatable, columns){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2415
hideTableExpandCollapseBtn('#tab-filters', '#filter_table');
hideTableExpandCollapseBtn('#tab-filters', '#filter_table');
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2416
});
});
Marcel Hofer
over 7 years ago
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2417
};
};
same change
cac67db
add config ALLOW_ADMIN_EMAIL_LOGIN and implement password-less SOGo login admins
- Full commit hash
cac67db20314e6a023ef4b8a059d82765bb3023e- Author
- Marcel Hofer <[email protected]>
- Date
- over 7 years ago
- Selected line
- 2418
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2419
function hideTableExpandCollapseBtn(tab, table){
function hideTableExpandCollapseBtn(tab, table){
same change
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2420
if ($(table).hasClass('collapsed'))
if ($(table).hasClass('collapsed'))
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2421
$(tab).find(".table_collapse_option").show();
$(tab).find(".table_collapse_option").show();
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2422
else
else
realizelol
over 3 years ago
6ff3f3f
[Web] Set pageLength to pagination_size + repect savedState...
- Full commit hash
6ff3f3f044b8673d315d0e7dc3f7c33e70bef977- Author
- realizelol <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2423
$(tab).find(".table_collapse_option").hide();
$(tab).find(".table_collapse_option").hide();
FreddleSpl0it
over 3 years ago
8782304
[Web] show fold/unfold action if child rows exists
- Full commit hash
8782304e8dea57fc7991af0654f3f89c48ba2792- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2424
}
}
FreddleSpl0it
almost 2 years ago
29d8cfe
[Web] Set min-width and text-align for last login badges
- Full commit hash
29d8cfe2bab1ac2afe59ee98fa75115fb3d55c9f- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 2425
Kristian Feldsam
almost 3 years ago
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2426
function filterByDomain(json, column, table){
function filterByDomain(json, column, table){
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2427
var tableId = $(table.table().container()).attr('id');
var tableId = $(table.table().container()).attr('id');
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2428
// Create the `select` element
// Create the `select` element
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2429
var select = $('<select class="btn btn-sm btn-xs-lg btn-light text-start mx-2"><option value="">'+lang.all_domains+'</option></select>')
var select = $('<select class="btn btn-sm btn-xs-lg btn-light text-start mx-2"><option value="">'+lang.all_domains+'</option></select>')
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2430
.insertBefore(
.insertBefore(
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2431
$('#'+tableId+' .dataTables_filter > label > input')
$('#'+tableId+' .dataTables_filter > label > input')
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2432
)
)
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2433
.on( 'change', function(){
.on( 'change', function(){
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2434
table.column(column)
table.column(column)
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2435
.search($(this).val())
.search($(this).val())
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2436
.draw();
.draw();
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2437
});
});
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2438
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2439
// get all domains
// get all domains
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2440
var domains = [];
var domains = [];
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2441
json.forEach(obj => {
json.forEach(obj => {
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2442
Object.entries(obj).forEach(([key, value]) => {
Object.entries(obj).forEach(([key, value]) => {
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2443
if(key === 'domain') {
if(key === 'domain') {
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2444
domains.push(value)
domains.push(value)
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2445
}
}
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2446
});
});
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2447
});
});
FreddleSpl0it
almost 2 years ago
29d8cfe
[Web] Set min-width and text-align for last login badges
- Full commit hash
29d8cfe2bab1ac2afe59ee98fa75115fb3d55c9f- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 2448
Kristian Feldsam
almost 3 years ago
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2449
// get unique domain list
// get unique domain list
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2450
domains = domains.filter(function(value, index, array) {
domains = domains.filter(function(value, index, array) {
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2451
return array.indexOf(value) === index;
return array.indexOf(value) === index;
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2452
});
});
FreddleSpl0it
almost 2 years ago
29d8cfe
[Web] Set min-width and text-align for last login badges
- Full commit hash
29d8cfe2bab1ac2afe59ee98fa75115fb3d55c9f- Author
- FreddleSpl0it <[email protected]>
- Date
- almost 2 years ago
- Selected line
- 2453
Kristian Feldsam
almost 3 years ago
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2454
// add domains to select
// add domains to select
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2455
domains.forEach(function(domain) {
domains.forEach(function(domain) {
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2456
select.append($('<option>' + domain + '</option>'));
select.append($('<option>' + domain + '</option>'));
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2457
});
});
same change
8e5cd90
[Web] Filter tables by Domain where possible
- Full commit hash
8e5cd907072a75cee8116367b234362e97616c53- Author
- Kristian Feldsam <[email protected]>
- Date
- almost 3 years ago
- Selected line
- 2458
}
}
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
- 2459
Marco Jarjour
about 4 years ago
fb10764
Execute API calls only when needed
- Full commit hash
fb1076416768557ad2b55aa409eac837fe7d329d- Author
- Marco Jarjour <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2460
// detect element visibility changes
// detect element visibility changes
same change
fb10764
Execute API calls only when needed
- Full commit hash
fb1076416768557ad2b55aa409eac837fe7d329d- Author
- Marco Jarjour <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2461
function onVisible(element, callback) {
function onVisible(element, callback) {
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2462
$(document).ready(function() {
$(document).ready(function() {
FreddleSpl0it
about 3 years ago
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 2463
let element_object = document.querySelector(element);
let element_object = document.querySelector(element);
FreddleSpl0it
about 4 years ago
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2464
if (element_object === null) return;
if (element_object === null) return;
same change
496c68d
[BS5] datatables handle null values
- Full commit hash
496c68d2af64bd101a0be17a9c62a987da4fbc7e- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2465
FreddleSpl0it
about 3 years ago
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 2466
let observer = new IntersectionObserver((entries, observer) => {
let observer = new IntersectionObserver((entries, observer) => {
Marco Jarjour
about 4 years ago
fb10764
Execute API calls only when needed
- Full commit hash
fb1076416768557ad2b55aa409eac837fe7d329d- Author
- Marco Jarjour <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2467
entries.forEach(entry => {
entries.forEach(entry => {
same change
fb10764
Execute API calls only when needed
- Full commit hash
fb1076416768557ad2b55aa409eac837fe7d329d- Author
- Marco Jarjour <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2468
if(entry.intersectionRatio > 0) {
if(entry.intersectionRatio > 0) {
same change
fb10764
Execute API calls only when needed
- Full commit hash
fb1076416768557ad2b55aa409eac837fe7d329d- Author
- Marco Jarjour <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2469
callback(element_object);
callback(element_object);
FreddleSpl0it
about 3 years ago
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 2470
observer.unobserve(element_object);
observer.unobserve(element_object);
Marco Jarjour
about 4 years ago
fb10764
Execute API calls only when needed
- Full commit hash
fb1076416768557ad2b55aa409eac837fe7d329d- Author
- Marco Jarjour <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2471
}
}
same change
fb10764
Execute API calls only when needed
- Full commit hash
fb1076416768557ad2b55aa409eac837fe7d329d- Author
- Marco Jarjour <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2472
});
});
FreddleSpl0it
about 3 years ago
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 2473
})
})
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
- 2474
FreddleSpl0it
about 3 years ago
aabcd10
[Web] fix bcc localdest selectpicker
- Full commit hash
aabcd1053969e7bd3601c0dd7e7aa3e5b333cb97- Author
- FreddleSpl0it <[email protected]>
- Date
- about 3 years ago
- Selected line
- 2475
observer.observe(element_object);
observer.observe(element_object);
Marco Jarjour
about 4 years ago
fb10764
Execute API calls only when needed
- Full commit hash
fb1076416768557ad2b55aa409eac837fe7d329d- Author
- Marco Jarjour <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2476
});
});
same change
fb10764
Execute API calls only when needed
- Full commit hash
fb1076416768557ad2b55aa409eac837fe7d329d- Author
- Marco Jarjour <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2477
}
}
same change
fb10764
Execute API calls only when needed
- Full commit hash
fb1076416768557ad2b55aa409eac837fe7d329d- Author
- Marco Jarjour <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2478
same change
fb10764
Execute API calls only when needed
- Full commit hash
fb1076416768557ad2b55aa409eac837fe7d329d- Author
- Marco Jarjour <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2479
// Load only if the tab is visible
// Load only if the tab is visible
FreddleSpl0it
about 4 years ago
351c803
[BS5] change onVisible querySelectors to table id
- Full commit hash
351c803623ae91812c6918a1fcfbe4d1f7385452- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2480
onVisible("[id^=domain_table]", () => draw_domain_table());
onVisible("[id^=domain_table]", () => draw_domain_table());
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2481
onVisible("[id^=templates_domain_table]", () => draw_templates_domain_table());
onVisible("[id^=templates_domain_table]", () => draw_templates_domain_table());
FreddleSpl0it
about 4 years ago
351c803
[BS5] change onVisible querySelectors to table id
- Full commit hash
351c803623ae91812c6918a1fcfbe4d1f7385452- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2482
onVisible("[id^=mailbox_table]", () => draw_mailbox_table());
onVisible("[id^=mailbox_table]", () => draw_mailbox_table());
FreddleSpl0it
over 3 years ago
79982e0
add template feature for domains and mailboxes
- Full commit hash
79982e0e8da146a60b69c68a43828004dc9d593b- Author
- FreddleSpl0it <[email protected]>
- Date
- over 3 years ago
- Selected line
- 2483
onVisible("[id^=templates_mbox_table]", () => draw_templates_mbox_table());
onVisible("[id^=templates_mbox_table]", () => draw_templates_mbox_table());
FreddleSpl0it
about 4 years ago
351c803
[BS5] change onVisible querySelectors to table id
- Full commit hash
351c803623ae91812c6918a1fcfbe4d1f7385452- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2484
onVisible("[id^=resource_table]", () => draw_resource_table());
onVisible("[id^=resource_table]", () => draw_resource_table());
same change
351c803
[BS5] change onVisible querySelectors to table id
- Full commit hash
351c803623ae91812c6918a1fcfbe4d1f7385452- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2485
onVisible("[id^=alias_table]", () => draw_alias_table());
onVisible("[id^=alias_table]", () => draw_alias_table());
same change
351c803
[BS5] change onVisible querySelectors to table id
- Full commit hash
351c803623ae91812c6918a1fcfbe4d1f7385452- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2486
onVisible("[id^=aliasdomain_table]", () => draw_aliasdomain_table());
onVisible("[id^=aliasdomain_table]", () => draw_aliasdomain_table());
same change
351c803
[BS5] change onVisible querySelectors to table id
- Full commit hash
351c803623ae91812c6918a1fcfbe4d1f7385452- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2487
onVisible("[id^=sync_job_table]", () => draw_sync_job_table());
onVisible("[id^=sync_job_table]", () => draw_sync_job_table());
same change
351c803
[BS5] change onVisible querySelectors to table id
- Full commit hash
351c803623ae91812c6918a1fcfbe4d1f7385452- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2488
onVisible("[id^=filter_table]", () => draw_filter_table());
onVisible("[id^=filter_table]", () => draw_filter_table());
same change
351c803
[BS5] change onVisible querySelectors to table id
- Full commit hash
351c803623ae91812c6918a1fcfbe4d1f7385452- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2489
onVisible("[id^=bcc_table]", () => draw_bcc_table());
onVisible("[id^=bcc_table]", () => draw_bcc_table());
same change
351c803
[BS5] change onVisible querySelectors to table id
- Full commit hash
351c803623ae91812c6918a1fcfbe4d1f7385452- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2490
onVisible("[id^=recipient_map_table]", () => draw_recipient_map_table());
onVisible("[id^=recipient_map_table]", () => draw_recipient_map_table());
same change
351c803
[BS5] change onVisible querySelectors to table id
- Full commit hash
351c803623ae91812c6918a1fcfbe4d1f7385452- Author
- FreddleSpl0it <[email protected]>
- Date
- about 4 years ago
- Selected line
- 2491
onVisible("[id^=tls_policy_table]", () => draw_tls_policy_table());
onVisible("[id^=tls_policy_table]", () => draw_tls_policy_table());
andryyy
almost 7 years ago
4c952dd
[Web] Remove old transport-map from mailbox.js
- Full commit hash
4c952dda3b585dbfa6251780093bcaa24acd1854- Author
- andryyy <[email protected]>
- Date
- almost 7 years ago
- Selected line
- 2492
});
});