mirror of
https://github.com/ProjectSWGCore/Holocore.git
synced 2026-01-17 00:06:00 -05:00
Merge pull request #294 from madsboddum/removewebfiles
Removed remnant files from old server management interface
This commit is contained in:
@@ -1,68 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>ProjectSWG Server Management Interface</title>
|
||||
<link href="css/style.css" rel="stylesheet" type="text/css" />
|
||||
<link href="css/auth.css" rel="stylesheet" type="text/css" />
|
||||
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://code.jquery.com/jquery-1.10.2.js"></script>
|
||||
<script type="text/javascript">
|
||||
|
||||
$(document).ready(
|
||||
function () {
|
||||
setInterval(function () {
|
||||
var newDate = new Date();
|
||||
var datetime = newDate.getTime();
|
||||
$('#resource_img').html('<img src="memory_usage.png?currenttime?' + datetime + '" style="width:624px;height:225px;" alt="memory_usage" />');
|
||||
$('#online_players_count').load('playercount.html');
|
||||
$('#online_players').load('online.html');
|
||||
$('#character_info').load('charinfo.html');
|
||||
$('#log_container').load('log.html');
|
||||
},3000);
|
||||
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="header"><div class="logo_small"></div></div>
|
||||
<div class="wrapper">
|
||||
|
||||
<div class="content_wrapper">
|
||||
|
||||
<div class="stats_wrapper">
|
||||
<div id="memory_container" class="memory_container">
|
||||
<div class="resoure_label">
|
||||
Resource Usage
|
||||
</div>
|
||||
<div id="resource_img" class="resource_img">
|
||||
<img src="memory_usage.png" style="width:624px;height:225px;" alt="memory_usage" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="dist"> </div>
|
||||
<div class="server_info">
|
||||
<div id="online_players_count" class="online_players_count">
|
||||
${ONLINE_PLAYER_COUNT}
|
||||
</div>
|
||||
<div id="online_players" class="online_players">
|
||||
${ONLINE_PLAYERS}
|
||||
</div>
|
||||
<div class="character_info">
|
||||
${CHARACTER_INFO}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div style="clear:both;"></div>
|
||||
<div class="main_log">
|
||||
<div class="log_label">Server Log</div>
|
||||
<div style="clear:both;"></div>
|
||||
<div id="log_container" class="log_container">
|
||||
${LOG}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1 +0,0 @@
|
||||
${CHARACTER_INFO}
|
||||
@@ -1,198 +0,0 @@
|
||||
body, html {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
color: #444;
|
||||
font-family: Verdana, Geneva, sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
background: #f0f0f0;
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
.wrapper{
|
||||
min-height:100%;
|
||||
height:100%;
|
||||
margin:0 auto;
|
||||
}
|
||||
.content_wrapper {
|
||||
color: #000000;
|
||||
margin-left:20px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
|
||||
.online_players_table {
|
||||
width: 100%;
|
||||
|
||||
}
|
||||
.online_player_cell {
|
||||
border: 1px solid #000;
|
||||
padding-left: 3px;
|
||||
|
||||
|
||||
}
|
||||
|
||||
.memory_container {
|
||||
background: #ecf2f5;
|
||||
width: 650px;
|
||||
height: 63px;
|
||||
margin-top: 20px;
|
||||
-webkit-border-top-left-radius: 40px;
|
||||
-moz-border-top-left-radius: 40px;
|
||||
border-top-left-radius: 40px;
|
||||
-webkit-border-top-right-radius: 40px;
|
||||
-moz-border-top-right-radius: 40px;
|
||||
border-top-right-radius: 40px;
|
||||
border-top:#000 1px solid;
|
||||
border-bottom: #000 1px solid;
|
||||
border-left:#000 1px solid;
|
||||
border-right:#000 1px solid;
|
||||
float:left;
|
||||
}
|
||||
|
||||
.memory_container{
|
||||
height:304px;
|
||||
}
|
||||
|
||||
.resoure_label{
|
||||
padding:20px;
|
||||
text-transform: uppercase;
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.resource_img{
|
||||
background: #ecf2f5;
|
||||
padding-left: 12px;
|
||||
border-left:#000 1px solid;
|
||||
border-right:#000 1px solid;
|
||||
border-bottom:#000 1px solid;
|
||||
border-top:#000 1px solid;
|
||||
margin-left:-1px;
|
||||
width:638px;
|
||||
padding-bottom: 10px;
|
||||
padding-top:10px;
|
||||
}
|
||||
|
||||
.server_info {
|
||||
background: #ecf2f5;
|
||||
border-left: 1px solid #000;
|
||||
border-right: 1px solid #000;
|
||||
border-top: 1px solid #000;
|
||||
border-bottom:1px solid #000;
|
||||
border-top-left-radius: 40px;
|
||||
border-top-right-radius: 40px;
|
||||
float: left;
|
||||
height: 305px;
|
||||
margin-top: 20px;
|
||||
width: 715px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.online_players_count{
|
||||
padding:20px;
|
||||
border-bottom:#000 1px solid;
|
||||
text-transform: uppercase;
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.character_info{
|
||||
padding-left: 12px;
|
||||
border-left:#000 1px solid;
|
||||
border-right:#000 1px solid;
|
||||
border-bottom:#000 1px solid;
|
||||
margin-left:-1px;
|
||||
width:702px;
|
||||
}
|
||||
.main_log{
|
||||
float: left;
|
||||
//margin-top: 229px;
|
||||
position: relative;
|
||||
top: 23px;
|
||||
width: 91%;
|
||||
}
|
||||
|
||||
.log_label{
|
||||
background: #ecf2f5;
|
||||
width: 91%;
|
||||
//margin-top: 20px;
|
||||
-webkit-border-top-left-radius: 40px;
|
||||
-moz-border-top-left-radius: 40px;
|
||||
border-top-left-radius: 40px;
|
||||
-webkit-border-top-right-radius: 40px;
|
||||
-moz-border-top-right-radius: 40px;
|
||||
border-top-right-radius: 40px;
|
||||
border-top:#000 1px solid;
|
||||
border-left:#000 1px solid;
|
||||
border-right:#000 1px solid;
|
||||
float:left;
|
||||
padding:20px;
|
||||
font-size:14px;
|
||||
text-transform: uppercase;
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
height:22px;
|
||||
}
|
||||
|
||||
.log_container{
|
||||
color: #000000;
|
||||
font-size: 12px;
|
||||
overflow: visible;
|
||||
padding: 20px;
|
||||
position: absolute;
|
||||
border-left:#000 1px solid;
|
||||
border-right:#000 1px solid;
|
||||
border-bottom:#000 1px solid;
|
||||
border-top:#000 1px solid;
|
||||
width:91%;
|
||||
background: #ecf2f5;
|
||||
}
|
||||
|
||||
.amount{
|
||||
font-style:normal;
|
||||
}
|
||||
|
||||
table{
|
||||
font-weight: normal;
|
||||
}
|
||||
table tbody{
|
||||
font-weight: normal;
|
||||
}
|
||||
table tbody tr{
|
||||
font-weight: normal;
|
||||
}
|
||||
table tbody tr th{
|
||||
font-weight: normal;
|
||||
}
|
||||
table tbody tr td{
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.dist{
|
||||
float:left;
|
||||
width:30px;
|
||||
}
|
||||
|
||||
.header{
|
||||
height:70px;
|
||||
width:100%;
|
||||
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ecf2f5+0,7db9e8+100,ecf2f5+100&1+0,1+21,1+62,0.7+68,0+100 */
|
||||
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
|
||||
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZWNmMmY1IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMjElIiBzdG9wLWNvbG9yPSIjZWNmMmY1IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNjIlIiBzdG9wLWNvbG9yPSIjZWNmMmY1IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iNjglIiBzdG9wLWNvbG9yPSIjZWNmMmY1IiBzdG9wLW9wYWNpdHk9IjAuNyIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZWNmMmY1IiBzdG9wLW9wYWNpdHk9IjAiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
|
||||
background: -moz-linear-gradient(-45deg, rgba(236,242,245,1) 0%, rgba(236,242,245,1) 21%, rgba(236,242,245,1) 62%, rgba(236,242,245,0.7) 68%, rgba(236,242,245,0) 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(236,242,245,1)), color-stop(21%,rgba(236,242,245,1)), color-stop(62%,rgba(236,242,245,1)), color-stop(68%,rgba(236,242,245,0.7)), color-stop(100%,rgba(236,242,245,0))); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(-45deg, rgba(236,242,245,1) 0%,rgba(236,242,245,1) 21%,rgba(236,242,245,1) 62%,rgba(236,242,245,0.7) 68%,rgba(236,242,245,0) 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(-45deg, rgba(236,242,245,1) 0%,rgba(236,242,245,1) 21%,rgba(236,242,245,1) 62%,rgba(236,242,245,0.7) 68%,rgba(236,242,245,0) 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(-45deg, rgba(236,242,245,1) 0%,rgba(236,242,245,1) 21%,rgba(236,242,245,1) 62%,rgba(236,242,245,0.7) 68%,rgba(236,242,245,0) 100%); /* IE10+ */
|
||||
background: linear-gradient(135deg, rgba(236,242,245,1) 0%,rgba(236,242,245,1) 21%,rgba(236,242,245,1) 62%,rgba(236,242,245,0.7) 68%,rgba(236,242,245,0) 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ecf2f5', endColorstr='#00ecf2f5',GradientType=1 ); /* IE6-8 fallback on horizontal gradient */
|
||||
|
||||
}
|
||||
|
||||
.logo_small{
|
||||
background-image:url(../images/small_logo.png);
|
||||
background-repeat:no-repeat;
|
||||
background-position:50% 50%;">
|
||||
width: 500px;
|
||||
height:70px;
|
||||
}
|
||||
@@ -1,139 +0,0 @@
|
||||
@charset "utf-8";
|
||||
/* CSS Document */
|
||||
|
||||
body, html {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
font-family: "Helvetica Neue", Helvetica, sans-serif;
|
||||
color: #444;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
background: #f0f0f0;
|
||||
}
|
||||
|
||||
.wrapper{
|
||||
min-height:100%;
|
||||
height:100%;
|
||||
}
|
||||
.logo{
|
||||
background-image:url(../images/pswg_server_management.png);
|
||||
width: 200px;
|
||||
height:210px;
|
||||
margin:0 auto;
|
||||
}
|
||||
.login_container {
|
||||
/* position: fixed;*/
|
||||
width: 340px;
|
||||
height: 490px;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin:0 auto;
|
||||
/* margin-top: -140px;
|
||||
margin-left: -170px;*/
|
||||
background: #fff;
|
||||
border-radius: 3px;
|
||||
border: 1px solid #ccc;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
|
||||
-webkit-animation-name: bounceIn;
|
||||
-webkit-animation-fill-mode: both;
|
||||
-webkit-animation-duration: 1s;
|
||||
-webkit-animation-iteration-count: 1;
|
||||
-webkit-animation-timing-function: linear;
|
||||
-moz-animation-name: bounceIn;
|
||||
-moz-animation-fill-mode: both;
|
||||
-moz-animation-duration: 1s;
|
||||
-moz-animation-iteration-count: 1;
|
||||
-moz-animation-timing-function: linear;
|
||||
animation-name: bounceIn;
|
||||
animation-fill-mode: both;
|
||||
animation-duration: 1s;
|
||||
animation-iteration-count: 1;
|
||||
animation-timing-function: linear;
|
||||
}
|
||||
|
||||
form {
|
||||
margin: 0 auto;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
label {
|
||||
color: #555;
|
||||
display: inline-block;
|
||||
margin-left: 18px;
|
||||
padding-top: 10px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
input {
|
||||
font-family: "Helvetica Neue", Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
input[type=text],
|
||||
input[type=password] {
|
||||
color: #777;
|
||||
padding-left: 10px;
|
||||
margin: 10px;
|
||||
margin-top: 12px;
|
||||
margin-left: 18px;
|
||||
width: 290px;
|
||||
height: 35px;
|
||||
border: 1px solid #c7d0d2;
|
||||
border-radius: 2px;
|
||||
-webkit-transition: all .4s ease;
|
||||
-moz-transition: all .4s ease;
|
||||
transition: all .4s ease;
|
||||
}
|
||||
|
||||
#lower {
|
||||
background: #ecf2f5;
|
||||
width: 100%;
|
||||
height: 63px;
|
||||
margin-top: 20px;
|
||||
box-shadow: inset 0 1px 1px #fff;
|
||||
border-top: 1px solid #ccc;
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
}
|
||||
|
||||
input[type=submit] {
|
||||
float: right;
|
||||
margin-right: 20px;
|
||||
margin-top: 16px;
|
||||
width: 80px;
|
||||
height: 30px;
|
||||
background-color: #acd6ef; /*IE fallback*/
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#acd6ef), to(#6ec2e8));
|
||||
background-image: -moz-linear-gradient(top left 90deg, #acd6ef 0%, #6ec2e8 100%);
|
||||
background-image: linear-gradient(top left 90deg, #acd6ef 0%, #6ec2e8 100%);
|
||||
border-radius: 30px;
|
||||
border: 1px solid #66add6;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
input[type=text]:hover,
|
||||
input[type=password]:hover {
|
||||
border: 1px solid #b6bfc0;
|
||||
box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .7), 0 0 0 5px #f5f7f8;
|
||||
}
|
||||
|
||||
input[type=text]:focus,
|
||||
input[type=password]:focus {
|
||||
border: 1px solid #a8c9e4;
|
||||
box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #e6f2f9;
|
||||
}
|
||||
|
||||
input[type=submit]:hover {
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#b6e2ff), to(#6ec2e8));
|
||||
background-image: -moz-linear-gradient(top left 90deg, #b6e2ff 0%, #6ec2e8 100%);
|
||||
background-image: linear-gradient(top left 90deg, #b6e2ff 0%, #6ec2e8 100%);
|
||||
}
|
||||
|
||||
input[type=submit]:active {
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(#6ec2e8), to(#b6e2ff));
|
||||
background-image: -moz-linear-gradient(top left 90deg, #6ec2e8 0%, #b6e2ff 100%);
|
||||
background-image: linear-gradient(top left 90deg, #6ec2e8 0%, #b6e2ff 100%);
|
||||
}
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.1 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 38 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 14 KiB |
@@ -1,25 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>ProjectSWG Server Management Interface</title>
|
||||
<link href="css/style.css" rel="stylesheet" type="text/css" />
|
||||
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="wrapper">
|
||||
|
||||
<div class="login_container">
|
||||
<div class="logo"></div>
|
||||
<form id="login1" name="form" action="#" method="post">
|
||||
<label for="username">Username:</label><input type="text" name="username" id="username" />
|
||||
<br />
|
||||
<label for="password">Password:</label><input type="password" name="password" id="password" /><br />
|
||||
<div id="lower">
|
||||
<input type="submit" value="Login" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1 +0,0 @@
|
||||
${LOG}
|
||||
@@ -1 +0,0 @@
|
||||
<img src="memory_usage.png?currenttime" style="width:624px;height:225px;" alt="memory_usage" />
|
||||
@@ -1 +0,0 @@
|
||||
${ONLINE_PLAYERS}
|
||||
@@ -1 +0,0 @@
|
||||
${ONLINE_PLAYER_COUNT}
|
||||
Reference in New Issue
Block a user