fix saimod server tbc

This commit is contained in:
Ulf Gebhardt 2023-11-02 22:22:31 +01:00
parent d6b71eebcc
commit bd9a42c9f4
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
10 changed files with 106 additions and 106 deletions

View File

@ -1,9 +1,9 @@
function init_saimod_mojotrollz_server_tbc(){
{
$('#tabs a').click(function () {
$('#tabs li').each(function(){
$('#tabs li a').each(function(){
$(this).removeClass('active');});
$(this).parent().addClass('active');
$(this).addClass('active');
});
}
}
@ -43,9 +43,9 @@ function init_saimod_mojotrollz_server_tbc_account(){
function init_saimod_mojotrollz_server_tbc_account_show(){
{
$('#tabs li').each(function(){
$('#tabs li a').each(function(){
$(this).removeClass('active');});
$('#menu_account').parent().addClass('active');
$('#menu_account').addClass('active');
}
{
$('.bot').click(function(){
@ -93,9 +93,9 @@ function init_saimod_mojotrollz_server_tbc_account_show(){
function init_saimod_mojotrollz_server_tbc_character(){
{
$('#tabs li').each(function(){
$('#tabs li a').each(function(){
$(this).removeClass('active');});
$('#menu_character').parent().addClass('active');
$('#menu_character').addClass('active');
$('#btn_search').click(function(){
system.load('mojotrollz_server_tbc(character);search.'+$('#input_search').val(),true);
@ -105,9 +105,9 @@ function init_saimod_mojotrollz_server_tbc_character(){
function init_saimod_mojotrollz_server_tbc_character_show(){
{
$('#tabs li').each(function(){
$('#tabs li a').each(function(){
$(this).removeClass('active');});
$('#menu_character').parent().addClass('active');
$('#menu_character').addClass('active');
}
{
$('.bot').click(function(){
@ -157,9 +157,9 @@ function init_saimod_mojotrollz_server_tbc_character_show(){
function init_saimod_mojotrollz_server_tbc_control(){
{
$('#tabs li').each(function(){
$('#tabs li a').each(function(){
$(this).removeClass('active');});
$('#menu_control').parent().addClass('active');
$('#menu_control').addClass('active');
}
{

View File

@ -1,7 +1,7 @@
<div class="panel panel-default">
<div class="panel-heading"><h4>TBC - Accounts</h4></div>
<div class="panel-body">
<button class="btn-sm btn btn-success" id="btn_search" type="submit" style="float: right; margin-left: 10px;"><span class="glyphicon glyphicon-search" aria-hidden="true"></span> Search</button>
<div class="card card-default">
<div class="card-header"><h4>TBC - Accounts</h4></div>
<div class="card-body">
<button class="btn-sm btn btn-success" id="btn_search" type="submit" style="float: right; margin-left: 10px;"><span class="fa fa-search" aria-hidden="true"></span> Search</button>
<input class="input-medium search-query action-control" id="input_search" type="text" placeholder="Search..." size="20" style="float: right;" value="${search}"/>
<h6>Rows: ${count} Page: ${page}</h6>
<table class="table table-hover table-condensed sai_table tablesorter">
@ -23,9 +23,9 @@
</tbody>
</table>
<ul class="pagination">
<li><a href="#!mojotrollz_server_tbc(character);search.${search};page.0">&laquo;</a></li>
<li class="page-item"><a class="page-link" href="#!mojotrollz_server_tbc(character);search.${search};page.0">&laquo;</a></li>
${pagination}
<li><a href="#!mojotrollz_server_tbc(character);search.${search};page.${page_last}">&raquo;</a></li>
<li class="page-item"><a class="page-link" href="#!mojotrollz_server_tbc(character);search.${search};page.${page_last}">&raquo;</a></li>
</ul>
</div>
</div>

View File

@ -1 +1 @@
<li class="${active}"><a href="#!mojotrollz_server_tbc(account);search.${search};page.${page}">${page}</a></li>
<li class="page-item ${active}"><a class="page-link" href="#!mojotrollz_server_tbc(account);search.${search};page.${page}">${page}</a></li>

View File

@ -1,6 +1,6 @@
<div class="panel panel-default">
<div class="panel-heading"><h4>TBC - Account - <b>${username}</b></h4></div>
<div class="panel-body">
<div class="card card-default">
<div class="card-header"><h4>TBC - Account - <b>${username}</b></h4></div>
<div class="card-body">
<table class="table table-hover table-condensed sai_table tablesorter">
<tr>
<th>ID</th>

View File

@ -1,7 +1,7 @@
<div class="panel panel-default">
<div class="panel-heading"><h4>TBC - Characters</h4></div>
<div class="panel-body">
<button class="btn-sm btn btn-success" id="btn_search" type="submit" style="float: right; margin-left: 10px;"><span class="glyphicon glyphicon-search" aria-hidden="true"></span> Search</button>
<div class="card card-default">
<div class="card-header"><h4>TBC - Characters</h4></div>
<div class="card-body">
<button class="btn-sm btn btn-success" id="btn_search" type="submit" style="float: right; margin-left: 10px;"><span class="fa fa-search" aria-hidden="true"></span> Search</button>
<input class="input-medium search-query action-control" id="input_search" type="text" placeholder="Search..." size="20" style="float: right;" value="${search}"/>
<h6>Rows: ${count} Page: ${page}</h6>
<table class="table table-hover table-condensed sai_table tablesorter">
@ -22,9 +22,9 @@
</tbody>
</table>
<ul class="pagination">
<li><a href="#!mojotrollz_server_tbc(character);search.${search};page.0">&laquo;</a></li>
<li class="page-item"><a class="page-link" href="#!mojotrollz_server_tbc(character);search.${search};page.0">&laquo;</a></li>
${pagination}
<li><a href="#!mojotrollz_server_tbc(character);search.${search};page.${page_last}">&raquo;</a></li>
<li class="page-item"><a class="page-link" href="#!mojotrollz_server_tbc(character);search.${search};page.${page_last}">&raquo;</a></li>
</ul>
</div>
</div>

View File

@ -1 +1 @@
<li class="${active}"><a href="#!mojotrollz_server_tbc(character);search.${search};page.${page}">${page}</a></li>
<li class="page-item ${active}"><a class="page-link" href="#!mojotrollz_server_tbc(character);search.${search};page.${page}">${page}</a></li>

View File

@ -1,6 +1,6 @@
<div class="panel panel-default">
<div class="panel-heading"><h4>TBC - Character - <b>${name}</b></h4></div>
<div class="panel-body">
<div class="card card-default">
<div class="card-header"><h4>TBC - Character - <b>${name}</b></h4></div>
<div class="card-body">
<table class="table table-hover table-condensed sai_table tablesorter">
<tr>
<th>GUID</th>

View File

@ -1,6 +1,6 @@
<div class="panel panel-default">
<div class="panel-heading"><h4>TBC - Control</h4></div>
<div class="panel-body">
<div class="card card-default">
<div class="card-header"><h4>TBC - Control</h4></div>
<div class="card-body">
<table>
<thead>
<tr>
@ -13,152 +13,152 @@
</tbody>
</table>
<textarea id="output_log" style="width: 100%; height: 350px;"></textarea>
<button id="btn_clear" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span> Clear</button>
<button id="btn_clear" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span> Clear</button>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading"><h4>TBC - Run</h4></div>
<div class="panel-body">
<div class="card card-default mt-3">
<div class="card-header"><h4>TBC - Run</h4></div>
<div class="card-body">
<table class="table">
<tr>
<th>realm</th>
<td style="text-align: right;"><button id="btn_tbc_realm_start" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-play" aria-hidden="true"></span> start</button></td>
<td style="text-align: right;"><button id="btn_tbc_realm_stop" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-stop" aria-hidden="true"></span> stop</button></td>
<td style="text-align: right;"><button id="btn_tbc_realm_status" class="btn-primary btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-search" aria-hidden="true"></span> status</button></td>
<td style="text-align: right;"><button id="btn_tbc_realm_start" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-play" aria-hidden="true"></span> start</button></td>
<td style="text-align: right;"><button id="btn_tbc_realm_stop" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-stop" aria-hidden="true"></span> stop</button></td>
<td style="text-align: right;"><button id="btn_tbc_realm_status" class="btn-primary btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-search" aria-hidden="true"></span> status</button></td>
</tr>
<tr>
<th>world</th>
<td style="text-align: right;"><button id="btn_tbc_world_start" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-play" aria-hidden="true"></span> start</button></td>
<td style="text-align: right;"><button id="btn_tbc_world_stop" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-stop" aria-hidden="true"></span> stop</button></td>
<td style="text-align: right;"><button id="btn_tbc_world_status" class="btn-primary btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-search" aria-hidden="true"></span> status</button></td>
<td style="text-align: right;"><button id="btn_tbc_world_start" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-play" aria-hidden="true"></span> start</button></td>
<td style="text-align: right;"><button id="btn_tbc_world_stop" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-stop" aria-hidden="true"></span> stop</button></td>
<td style="text-align: right;"><button id="btn_tbc_world_status" class="btn-primary btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-search" aria-hidden="true"></span> status</button></td>
</tr>
<tr>
<th>world_test</th>
<td style="text-align: right;"><button id="btn_tbc_world_test_start" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-play" aria-hidden="true"></span> start</button></td>
<td style="text-align: right;"><button id="btn_tbc_world_test_stop" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-stop" aria-hidden="true"></span> stop</button></td>
<td style="text-align: right;"><button id="btn_tbc_world_test_status" class="btn-primary btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-search" aria-hidden="true"></span> status</button></td>
<td style="text-align: right;"><button id="btn_tbc_world_test_start" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-play" aria-hidden="true"></span> start</button></td>
<td style="text-align: right;"><button id="btn_tbc_world_test_stop" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-stop" aria-hidden="true"></span> stop</button></td>
<td style="text-align: right;"><button id="btn_tbc_world_test_status" class="btn-primary btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-search" aria-hidden="true"></span> status</button></td>
</tr>
</table>
</div>
</div>
</div>
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading"><h4>TBC - Database <font color="red" size="2">Stop the Server first!</font></h4></div>
<div class="panel-body">
<div class="card card-default mt-3">
<div class="card-header"><h4>TBC - Database <font color="red" size="2">Stop the Server first!</font></h4></div>
<div class="card-body">
<table class="table">
<tr>
<th>realm</th>
<td style="text-align: right;"><button id="btn_db_tbc_realm_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-refresh" aria-hidden="true"></span> deploy live</button></td>
<td style="text-align: right;"><button id="btn_db_tbc_realm_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-sync" aria-hidden="true"></span> deploy live</button></td>
<td></td>
</tr>
<tr>
<th>chars</th>
<td style="text-align: right;"><button id="btn_db_tbc_chars_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-refresh" aria-hidden="true"></span> deploy live</button></td>
<td style="text-align: right;"><button id="btn_db_tbc_chars_test" class="btn-warning btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-refresh" aria-hidden="true"></span> deploy test</button></td>
<td style="text-align: right;"><button id="btn_db_tbc_chars_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-sync" aria-hidden="true"></span> deploy live</button></td>
<td style="text-align: right;"><button id="btn_db_tbc_chars_test" class="btn-warning btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-sync" aria-hidden="true"></span> deploy test</button></td>
</tr>
<tr>
<th>world</th>
<td style="text-align: right;"><button id="btn_db_tbc_world_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-refresh" aria-hidden="true"></span> deploy live</button></td>
<td style="text-align: right;"><button id="btn_db_tbc_world_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-refresh" aria-hidden="true"></span> deploy test</button></td>
<td style="text-align: right;"><button id="btn_db_tbc_world_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-sync" aria-hidden="true"></span> deploy live</button></td>
<td style="text-align: right;"><button id="btn_db_tbc_world_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-sync" aria-hidden="true"></span> deploy test</button></td>
</tr>
</table>
</div>
</div>
</div>
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading"><h4>TBC - Compile <font color="red" size="2">Stop the Server first!</font></h4></div>
<div class="panel-body">
<div class="card card-default mt-3">
<div class="card-header"><h4>TBC - Compile <font color="red" size="2">Stop the Server first!</font></h4></div>
<div class="card-body">
<table class="table">
<tr>
<th>live</th>
<td style="text-align: right;"><button id="btn_compile_tbc_live" class="btn-warning btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-wrench" aria-hidden="true"></span> compile</button></td>
<td style="text-align: right;"><button id="btn_compile_tbc_live" class="btn-warning btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-wrench" aria-hidden="true"></span> compile</button></td>
</tr>
<tr>
<th>test</th>
<td style="text-align: right;"><button id="btn_compile_tbc_test" class="btn-warning btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-wrench" aria-hidden="true"></span> compile</button></td>
<td style="text-align: right;"><button id="btn_compile_tbc_test" class="btn-warning btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-wrench" aria-hidden="true"></span> compile</button></td>
</tr>
</table>
</div>
</div>
</div>
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading"><h4>TBC - Log</h4></div>
<div class="panel-body">
<div class="card card-default mt-3">
<div class="card-header"><h4>TBC - Log</h4></div>
<div class="card-body">
<table class="table">
<tr>
<th>Char.log</th>
<td style="text-align: right;"><button id="btn_log_tbc_chars_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_chars_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_chars_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_chars_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_chars_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_chars_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_chars_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_chars_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
</tr>
<tr>
<th>Database.log</th>
<td></td>
<td></td>
<td style="text-align: right;"><button id="btn_log_tbc_database_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_database_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_database_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_database_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
</tr>
<tr>
<th>DBErrors.log</th>
<td style="text-align: right;"><button id="btn_log_tbc_db_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_db_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_db_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_db_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_db_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_db_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_db_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_db_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
</tr>
<tr>
<th>EventAIErrors.log</th>
<td style="text-align: right;"><button id="btn_log_tbc_eventai_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_eventai_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_eventai_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_eventai_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_eventai_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_eventai_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_eventai_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_eventai_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
</tr>
<tr>
<th>GM.log</th>
<td style="text-align: right;"><button id="btn_log_tbc_gm_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_gm_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_gm_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_gm_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_gm_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_gm_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_gm_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_gm_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
</tr>
<tr>
<th>Realmd.log</th>
<td style="text-align: right;"><button id="btn_log_tbc_realm_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_realm_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_realm_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_realm_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
<td></td>
<td></td>
</tr>
<tr>
<th>SD2Errors.log</th>
<td style="text-align: right;"><button id="btn_log_tbc_sd2_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_sd2_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_sd2_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_sd2_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_sd2_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_sd2_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_sd2_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_sd2_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
</tr>
<tr>
<th>Server.log</th>
<td style="text-align: right;"><button id="btn_log_tbc_server_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_server_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_server_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_server_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_server_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_server_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_server_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_server_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
</tr>
<tr>
<th>Crash.log</th>
<td style="text-align: right;"><button id="btn_log_tbc_crash_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_crash_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_crash_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_crash_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_crash_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_crash_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_crash_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_crash_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
</tr>
<tr>
<th>Serverlog</th>
<td style="text-align: right;"><button id="btn_log_tbc_serverlog_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_serverlog_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_serverlog_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_serverlog_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_serverlog_live" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> live</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_serverlog_live" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
<td style="text-align: right;"><button id="btn_log_tbc_serverlog_test" class="btn-success btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-align-justify" aria-hidden="true"></span> test</button></td>
<td style="text-align: right;"><button id="btn_logdel_tbc_serverlog_test" class="btn-danger btn btn-sm" style="margin-right: 15px; height: 32px; font-size: 13px;"><span class="fa fa-trash" aria-hidden="true"></span></button></td>
</tr>
</table>
</div>

View File

@ -1,9 +1,9 @@
<div class="tabbable">
<div class="tabbable pt-3">
<ul class="nav nav-tabs" id="tabs">
<li class="active"><a href="#!mojotrollz_server_tbc" id="menu_status">Status</a></li>
<li><a href="#!mojotrollz_server_tbc(control)" id="menu_control">Control</a></li>
<li><a href="#!mojotrollz_server_tbc(account)" id="menu_account">Account</a></li>
<li><a href="#!mojotrollz_server_tbc(character)" id="menu_character">Character</a></li>
<li class="nav-item"><a class="nav-link active" href="#!mojotrollz_server_tbc" id="menu_status">Status</a></li>
<li class="nav-item"><a class="nav-link" href="#!mojotrollz_server_tbc(control)" id="menu_control">Control</a></li>
<li class="nav-item"><a class="nav-link" href="#!mojotrollz_server_tbc(account)" id="menu_account">Account</a></li>
<li class="nav-item"><a class="nav-link" href="#!mojotrollz_server_tbc(character)" id="menu_character">Character</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="tab"></div>

View File

@ -1,6 +1,6 @@
<div class="panel panel-default">
<div class="panel-heading"><h4>TBC - Status</h4></div>
<div class="panel-body">
<div class="card card-default">
<div class="card-header"><h4>TBC - Status</h4></div>
<div class="card-body">
<div class="row">
<div class="col-md-6">
<div id="vis_tbc_player"></div>