Skip to content
This repository has been archived by the owner on May 12, 2023. It is now read-only.

Commit

Permalink
MD-S detailed
Browse files Browse the repository at this point in the history
Improved features
  • Loading branch information
Cristian committed May 19, 2022
1 parent f8ca81f commit eb426a7
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 6 deletions.
31 changes: 26 additions & 5 deletions Mediaticon Server V2/ScraperExecutor/config/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,39 @@
<!-- This html document was part of MD Server project created by Cristian -->
<head>
<meta charset="UTF-8">
<!-- Adding Google Icon support for that page -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">

<title> [MD SYS ADM] </title>

<style>
body {background-color:#1f1f23}
h1 {font-size:20pt; font-family: Courier, Arial; font-weight:bold; text-align:center; color:#5c16c5}
div {text-align:center; font-family: Arial;}
body {animation:init 1.75s 1;animation-fill-mode: forwards;letter-spacing:3px;}

@keyframes init {
from {background-color:#000000; opacity:0%;}
to {background-color:#1f1f23; opacity:100%;}
}

h1 {padding: 25px 25px 25px 25px; vertical-align: middle;font-size:24pt; font-family: Impact, Courier, Arial; font-weight:bold; text-align:center; color:#5c16c5}

div {text-align:center;}

div.prop {border: 5px double black;text-align:center; font-family: Arial;}

table {width: 100%; background-color:#eeeee4}

th {color:white; background-color: green; padding-top: 20px; padding-bottom: 20px;}

td {color: black; border: 1px solid black;}

#refreshBTN {color:white; padding: 10px 25px 10px 25px; background-color:green;}

</style>
</head>
<body>
<h1>MEDIATICON WEB ADMIN - PANEL</h1>
<h1> MD SERVER STATUS - WEB ADMIN </h1>
<!-- Sends out information here -->
<div style="border: 5px double black">
<div class="prop">
<table>
<tr> <!-- Table headers -->
<th>Property</th>
Expand Down Expand Up @@ -45,5 +63,8 @@ <h1>MEDIATICON WEB ADMIN - PANEL</h1>
</tr>
</table>
</div>
<div>
<button id="refreshBTN" onclick="location.reload()"><i class="material-icons">refresh</i></button>
</div>
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ public static boolean loadPlan(){
}else {
//Create Plan - Single time
if ((toYear != -1)) { //Create multiple
//System.out.println("\033[37m"+ "Test Case OK" + "\033[0m"); //TODO: REMOVE - DEBUG USE
for (int nowYear = year; nowYear <= toYear; ++nowYear, ++ID) {
loadedPlanList.add(new Plan(ID, AppName, nowYear, Start, of));
}
Expand Down

0 comments on commit eb426a7

Please sign in to comment.