mirror of
https://github.com/ShaYmez/HBMonv2.git
synced 2025-05-29 12:42:26 -04:00
Make html less verbose, include footer, update html versioning
This commit is contained in:
parent
add3238166
commit
be06f100b0
@ -1,19 +1,20 @@
|
||||
<?php
|
||||
$progname = basename($_SERVER['SCRIPT_FILENAME'],".php");
|
||||
include_once 'include/config.php';
|
||||
?>
|
||||
include_once 'include/version.php';?>
|
||||
<!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" xmlns:v="urn:schemas-microsoft-com:vml" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>DMR Server monitor - STATUS</title>
|
||||
<title>HBlink3 DMR Server - Bridges</title>
|
||||
<script type="text/javascript" src="scripts/hbmon.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="css/styles.php" />
|
||||
<meta name="description" content="Copyright © 2016-2022.The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2022" />
|
||||
<meta name="description" content="Copyright © 2016-2023. The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2023 (v20230102) HBlink3 Dashboard " />
|
||||
</head>
|
||||
<body style="background-color: #d0d0d0;font: 10pt arial, sans-serif;">
|
||||
<center><div style="width:1100px; text-align: center; margin-top:5px;">
|
||||
<p style="font-size: 10px; text-align: right; margin-right: 16px">Dashboard Version: <?php echo DASH; ?></p>
|
||||
<img src="img/HBLINK_logoV2.png?random=323527528432525.24234" alt="" />
|
||||
</div>
|
||||
<div style="width: 1100px;">
|
||||
@ -24,12 +25,9 @@ include_once 'include/config.php';
|
||||
<noscript>You must enable JavaScript</noscript>
|
||||
<p id="bridge"></p>
|
||||
</div>
|
||||
<div style="width: 1100px; margin-left:0px;">
|
||||
<p style="text-align: center;"><span style="text-align: center;">
|
||||
Copyright © 2016-2022<br>The Regents of the <a href=http://k0usy.mystrikingly.com/>K0USY Group</a>. All rights reserved.<br><a href=https://github.com/sp2ong/HBMonv2>Version SP2ONG 2019-2022</a><br><br></span>
|
||||
<!-- THIS COPYRIGHT NOTICE MUST BE DISPLAYED AS A CONDITION OF THE LICENCE GRANT FOR THIS SOFTWARE. ALL DERIVATEIVES WORKS MUST CARRY THIS NOTICE -->
|
||||
<!-- This is version of HBMonitor SP2ONG 2019-2022 -->
|
||||
</p></div>
|
||||
<!--footer-->
|
||||
<?php include_once 'elements/footer.php'; ?>
|
||||
<!--//footer-->
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,6 +1,6 @@
|
||||
<div style="width: 1100px;">
|
||||
<!-- HBMonitor buttons HTML code -->
|
||||
<a href="index.php"><button class="button link"> Home </button></a>
|
||||
<!-- HBMonv2 buttons HTML code -->
|
||||
<a href="index.php"><button class="button link"> Dashboard </button></a>
|
||||
<!--
|
||||
|
||||
<div class="dropdown">
|
||||
@ -24,11 +24,11 @@
|
||||
|
||||
<a href="moni.php"><button class="button link"> Monitor </button></a>
|
||||
|
||||
<a href="sysinfo.php"><button class="button link"> System Info </button></a>
|
||||
<a href="info.php"><button class="button link"> Talkgroup Info </button></a>
|
||||
|
||||
<a title="Lastheard long list" href="log.php"><button class="button link"> Lastheard </button></a>
|
||||
|
||||
<a href="info.php"><button class="button link"> Info </button></a>
|
||||
<a href="sysinfo.php"><button class="button link"> System Info </button></a>
|
||||
|
||||
<!--
|
||||
|
||||
|
8
html/elements/footer.php
Normal file
8
html/elements/footer.php
Normal file
@ -0,0 +1,8 @@
|
||||
<div style="width: 1100px;">
|
||||
<p style="text-align: center;"><span style="text-align: center;">
|
||||
<a target="_blank" href="https://github.com/ShaYmez/hblink3">HBlink 3</a> Cortney T. Buffington, N0MJS. Copyright © 2016-2023<br>The Regents of the <a target="_blank" href=http://k0usy.mystrikingly.com/>K0USY Group</a>. All Rights Reserved.<br><a title="HBMonv2 SP2ONG v20211012" target="_blank" href=https://github.com/sp2ong/HBMonv2>Version SP2ONG 2019-2023</a><br><a title="HBlink Docker by Shaymez" target="_blank" href=https://github.com/shaymez/hblink-docker-installer>Docker Version 1.6.9</a><br></span>
|
||||
<!-- THIS COPYRIGHT NOTICE MUST BE DISPLAYED AS A CONDITION OF THE LICENCE GRANT FOR THIS SOFTWARE. ALL DERIVATEIVES WORKS MUST CARRY THIS NOTICE -->
|
||||
<!-- This is version of HBMonitor SP2ONG 2019-2023 -->
|
||||
<!-- HBlink Docker Installer ShaYmez 2021-2023 -->
|
||||
</p>
|
||||
</div>
|
@ -5,7 +5,7 @@ error_reporting(E_ALL & ~E_NOTICE);
|
||||
|
||||
|
||||
// Name of the monitored Dashboard
|
||||
define("REPORT_NAME","Dashboard of local DMR Network");
|
||||
define("REPORT_NAME","HBlink 3 Master Server");
|
||||
|
||||
// Height of Server Activity window: 45px; 1 row, 60px 2 rows, 80px 3 rows
|
||||
define("HEIGHT_ACTIVITY","45px");
|
||||
|
4
html/include/version.php
Normal file
4
html/include/version.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
define("VERSION", "Ver 1.6.9");
|
||||
define("DASH", "ShaYmez-20230102");
|
||||
?>
|
@ -1,19 +1,20 @@
|
||||
<?php
|
||||
$progname = basename($_SERVER['SCRIPT_FILENAME'],".php");
|
||||
include_once 'include/config.php';
|
||||
?>
|
||||
include_once 'include/version.php';?>
|
||||
<!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" xmlns:v="urn:schemas-microsoft-com:vml" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>DMR Server monitor - STATUS</title>
|
||||
<title>HBlink3 DMR Server - Dashboard</title>
|
||||
<script type="text/javascript" src="scripts/hbmon.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="css/styles.php" />
|
||||
<meta name="description" content="Copyright © 2016-2022.The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2022 (v20211012)" />
|
||||
<meta name="description" content="Copyright © 2016-2023. The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2023 (v20230102) HBlink3 Dashboard " />
|
||||
</head>
|
||||
<body style="background-color: #d0d0d0;font: 10pt arial, sans-serif;">
|
||||
<center><div style="width:1100px; text-align: center; margin-top:5px;">
|
||||
<p style="font-size: 10px; text-align: right; margin-right: 16px">Dashboard Version: <?php echo DASH; ?></p>
|
||||
<img src="img/HBLINK_logoV2.png?random=323527528432525.24234" alt="" />
|
||||
</div>
|
||||
<div style="width: 1100px;">
|
||||
@ -31,14 +32,9 @@ include_once 'include/config.php';
|
||||
<legend><b><font color="#000"> .: Call Log :. </font></b></legend>
|
||||
<pre id="log" style="height: 20em; text-align: left; overflow-y: scroll; font-size:12px; background-color: #000000; color:#729fcf;"></pre>
|
||||
</fieldset></div>
|
||||
|
||||
<div style="width: 1100px;">
|
||||
<p style="text-align: center;"><span style="text-align: center;">
|
||||
Copyright © 2016-2022<br>The Regents of the <a target="_blank" href=http://k0usy.mystrikingly.com/>K0USY Group</a>. All rights reserved.<br><a title="HBMonv2 SP2ONG v20211012" target="_blank" href=https://github.com/sp2ong/HBMonv2>Version SP2ONG 2019-2022</a><br><br></span>
|
||||
<!-- THIS COPYRIGHT NOTICE MUST BE DISPLAYED AS A CONDITION OF THE LICENCE GRANT FOR THIS SOFTWARE. ALL DERIVATEIVES WORKS MUST CARRY THIS NOTICE -->
|
||||
<!-- This is version of HBMonitor SP2ONG 2019-2022 -->
|
||||
</p>
|
||||
</div>
|
||||
<!--footer-->
|
||||
<?php include_once 'elements/footer.php'; ?>
|
||||
<!--//footer-->
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
368
html/index_APACHE.html
Normal file
368
html/index_APACHE.html
Normal file
@ -0,0 +1,368 @@
|
||||
|
||||
<!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>Apache2 Debian Default Page: It works</title>
|
||||
<style type="text/css" media="screen">
|
||||
* {
|
||||
margin: 0px 0px 0px 0px;
|
||||
padding: 0px 0px 0px 0px;
|
||||
}
|
||||
|
||||
body, html {
|
||||
padding: 3px 3px 3px 3px;
|
||||
|
||||
background-color: #D8DBE2;
|
||||
|
||||
font-family: Verdana, sans-serif;
|
||||
font-size: 11pt;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.main_page {
|
||||
position: relative;
|
||||
display: table;
|
||||
|
||||
width: 800px;
|
||||
|
||||
margin-bottom: 3px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding: 0px 0px 0px 0px;
|
||||
|
||||
border-width: 2px;
|
||||
border-color: #212738;
|
||||
border-style: solid;
|
||||
|
||||
background-color: #FFFFFF;
|
||||
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.page_header {
|
||||
height: 99px;
|
||||
width: 100%;
|
||||
|
||||
background-color: #F5F6F7;
|
||||
}
|
||||
|
||||
div.page_header span {
|
||||
margin: 15px 0px 0px 50px;
|
||||
|
||||
font-size: 180%;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.page_header img {
|
||||
margin: 3px 0px 0px 40px;
|
||||
|
||||
border: 0px 0px 0px;
|
||||
}
|
||||
|
||||
div.table_of_contents {
|
||||
clear: left;
|
||||
|
||||
min-width: 200px;
|
||||
|
||||
margin: 3px 3px 3px 3px;
|
||||
|
||||
background-color: #FFFFFF;
|
||||
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
div.table_of_contents_item {
|
||||
clear: left;
|
||||
|
||||
width: 100%;
|
||||
|
||||
margin: 4px 0px 0px 0px;
|
||||
|
||||
background-color: #FFFFFF;
|
||||
|
||||
color: #000000;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
div.table_of_contents_item a {
|
||||
margin: 6px 0px 0px 6px;
|
||||
}
|
||||
|
||||
div.content_section {
|
||||
margin: 3px 3px 3px 3px;
|
||||
|
||||
background-color: #FFFFFF;
|
||||
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
div.content_section_text {
|
||||
padding: 4px 8px 4px 8px;
|
||||
|
||||
color: #000000;
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
div.content_section_text pre {
|
||||
margin: 8px 0px 8px 0px;
|
||||
padding: 8px 8px 8px 8px;
|
||||
|
||||
border-width: 1px;
|
||||
border-style: dotted;
|
||||
border-color: #000000;
|
||||
|
||||
background-color: #F5F6F7;
|
||||
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
div.content_section_text p {
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
div.content_section_text ul, div.content_section_text li {
|
||||
padding: 4px 8px 4px 16px;
|
||||
}
|
||||
|
||||
div.section_header {
|
||||
padding: 3px 6px 3px 6px;
|
||||
|
||||
background-color: #8E9CB2;
|
||||
|
||||
color: #FFFFFF;
|
||||
font-weight: bold;
|
||||
font-size: 112%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.section_header_red {
|
||||
background-color: #CD214F;
|
||||
}
|
||||
|
||||
div.section_header_grey {
|
||||
background-color: #9F9386;
|
||||
}
|
||||
|
||||
.floating_element {
|
||||
position: relative;
|
||||
float: left;
|
||||
}
|
||||
|
||||
div.table_of_contents_item a,
|
||||
div.content_section_text a {
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
div.table_of_contents_item a:link,
|
||||
div.table_of_contents_item a:visited,
|
||||
div.table_of_contents_item a:active {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
div.table_of_contents_item a:hover {
|
||||
background-color: #000000;
|
||||
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
div.content_section_text a:link,
|
||||
div.content_section_text a:visited,
|
||||
div.content_section_text a:active {
|
||||
background-color: #DCDFE6;
|
||||
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
div.content_section_text a:hover {
|
||||
background-color: #000000;
|
||||
|
||||
color: #DCDFE6;
|
||||
}
|
||||
|
||||
div.validator {
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="main_page">
|
||||
<div class="page_header floating_element">
|
||||
<img src="/icons/openlogo-75.png" alt="Debian Logo" class="floating_element"/>
|
||||
<span class="floating_element">
|
||||
Apache2 Debian Default Page
|
||||
</span>
|
||||
</div>
|
||||
<!-- <div class="table_of_contents floating_element">
|
||||
<div class="section_header section_header_grey">
|
||||
TABLE OF CONTENTS
|
||||
</div>
|
||||
<div class="table_of_contents_item floating_element">
|
||||
<a href="#about">About</a>
|
||||
</div>
|
||||
<div class="table_of_contents_item floating_element">
|
||||
<a href="#changes">Changes</a>
|
||||
</div>
|
||||
<div class="table_of_contents_item floating_element">
|
||||
<a href="#scope">Scope</a>
|
||||
</div>
|
||||
<div class="table_of_contents_item floating_element">
|
||||
<a href="#files">Config files</a>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
<div class="content_section floating_element">
|
||||
|
||||
|
||||
<div class="section_header section_header_red">
|
||||
<div id="about"></div>
|
||||
It works!
|
||||
</div>
|
||||
<div class="content_section_text">
|
||||
<p>
|
||||
This is the default welcome page used to test the correct
|
||||
operation of the Apache2 server after installation on Debian systems.
|
||||
If you can read this page, it means that the Apache HTTP server installed at
|
||||
this site is working properly. You should <b>replace this file</b> (located at
|
||||
<tt>/var/www/html/index.html</tt>) before continuing to operate your HTTP server.
|
||||
</p>
|
||||
|
||||
|
||||
<p>
|
||||
If you are a normal user of this web site and don't know what this page is
|
||||
about, this probably means that the site is currently unavailable due to
|
||||
maintenance.
|
||||
If the problem persists, please contact the site's administrator.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class="section_header">
|
||||
<div id="changes"></div>
|
||||
Configuration Overview
|
||||
</div>
|
||||
<div class="content_section_text">
|
||||
<p>
|
||||
Debian's Apache2 default configuration is different from the
|
||||
upstream default configuration, and split into several files optimized for
|
||||
interaction with Debian tools. The configuration system is
|
||||
<b>fully documented in
|
||||
/usr/share/doc/apache2/README.Debian.gz</b>. Refer to this for the full
|
||||
documentation. Documentation for the web server itself can be
|
||||
found by accessing the <a href="/manual">manual</a> if the <tt>apache2-doc</tt>
|
||||
package was installed on this server.
|
||||
|
||||
</p>
|
||||
<p>
|
||||
The configuration layout for an Apache2 web server installation on Debian systems is as follows:
|
||||
</p>
|
||||
<pre>
|
||||
/etc/apache2/
|
||||
|-- apache2.conf
|
||||
| `-- ports.conf
|
||||
|-- mods-enabled
|
||||
| |-- *.load
|
||||
| `-- *.conf
|
||||
|-- conf-enabled
|
||||
| `-- *.conf
|
||||
|-- sites-enabled
|
||||
| `-- *.conf
|
||||
</pre>
|
||||
<ul>
|
||||
<li>
|
||||
<tt>apache2.conf</tt> is the main configuration
|
||||
file. It puts the pieces together by including all remaining configuration
|
||||
files when starting up the web server.
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<tt>ports.conf</tt> is always included from the
|
||||
main configuration file. It is used to determine the listening ports for
|
||||
incoming connections, and this file can be customized anytime.
|
||||
</li>
|
||||
|
||||
<li>
|
||||
Configuration files in the <tt>mods-enabled/</tt>,
|
||||
<tt>conf-enabled/</tt> and <tt>sites-enabled/</tt> directories contain
|
||||
particular configuration snippets which manage modules, global configuration
|
||||
fragments, or virtual host configurations, respectively.
|
||||
</li>
|
||||
|
||||
<li>
|
||||
They are activated by symlinking available
|
||||
configuration files from their respective
|
||||
*-available/ counterparts. These should be managed
|
||||
by using our helpers
|
||||
<tt>
|
||||
a2enmod,
|
||||
a2dismod,
|
||||
</tt>
|
||||
<tt>
|
||||
a2ensite,
|
||||
a2dissite,
|
||||
</tt>
|
||||
and
|
||||
<tt>
|
||||
a2enconf,
|
||||
a2disconf
|
||||
</tt>. See their respective man pages for detailed information.
|
||||
</li>
|
||||
|
||||
<li>
|
||||
The binary is called apache2. Due to the use of
|
||||
environment variables, in the default configuration, apache2 needs to be
|
||||
started/stopped with <tt>/etc/init.d/apache2</tt> or <tt>apache2ctl</tt>.
|
||||
<b>Calling <tt>/usr/bin/apache2</tt> directly will not work</b> with the
|
||||
default configuration.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="section_header">
|
||||
<div id="docroot"></div>
|
||||
Document Roots
|
||||
</div>
|
||||
|
||||
<div class="content_section_text">
|
||||
<p>
|
||||
By default, Debian does not allow access through the web browser to
|
||||
<em>any</em> file apart of those located in <tt>/var/www</tt>,
|
||||
<a href="http://httpd.apache.org/docs/2.4/mod/mod_userdir.html" rel="nofollow">public_html</a>
|
||||
directories (when enabled) and <tt>/usr/share</tt> (for web
|
||||
applications). If your site is using a web document root
|
||||
located elsewhere (such as in <tt>/srv</tt>) you may need to whitelist your
|
||||
document root directory in <tt>/etc/apache2/apache2.conf</tt>.
|
||||
</p>
|
||||
<p>
|
||||
The default Debian document root is <tt>/var/www/html</tt>. You
|
||||
can make your own virtual hosts under /var/www. This is different
|
||||
to previous releases which provides better security out of the box.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="section_header">
|
||||
<div id="bugs"></div>
|
||||
Reporting Problems
|
||||
</div>
|
||||
<div class="content_section_text">
|
||||
<p>
|
||||
Please use the <tt>reportbug</tt> tool to report bugs in the
|
||||
Apache2 package with Debian. However, check <a
|
||||
href="http://bugs.debian.org/cgi-bin/pkgreport.cgi?ordering=normal;archive=0;src=apache2;repeatmerged=0"
|
||||
rel="nofollow">existing bug reports</a> before reporting a new bug.
|
||||
</p>
|
||||
<p>
|
||||
Please report bugs specific to modules (such as PHP and others)
|
||||
to respective packages, not to the web server itself.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="validator">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,19 +1,20 @@
|
||||
<?php
|
||||
$progname = basename($_SERVER['SCRIPT_FILENAME'],".php");
|
||||
include_once 'include/config.php';
|
||||
?>
|
||||
include_once 'include/version.php';?>
|
||||
<!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" xmlns:v="urn:schemas-microsoft-com:vml" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>DMR Server monitor - Info</title>
|
||||
<title>HBlink3 DMR Server - Talkgroup Info</title>
|
||||
<script type="text/javascript" src="scripts/hbmon.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="css/styles.php" />
|
||||
<meta name="description" content="Copyright © 2016-2022.The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2022" />
|
||||
<meta name="description" content="Copyright © 2016-2023. The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2023 (v20230102) HBlink3 Dashboard " />
|
||||
</head>
|
||||
<body style="background-color: #d0d0d0;font: 10pt arial, sans-serif;">
|
||||
<center><div style="width:1100px; text-align: center; margin-top:5px;">
|
||||
<p style="font-size: 10px; text-align: right; margin-right: 16px">Dashboard Version: <?php echo DASH; ?></p>
|
||||
<img src="img/HBLINK_logoV2.png?random=323527528432525.24234" alt="" />
|
||||
</div>
|
||||
<div style="width: 1100px;">
|
||||
@ -36,7 +37,7 @@ include_once 'include/config.php';
|
||||
<td> <b>TG 5</b> </td>
|
||||
<td> <b></b> </td>
|
||||
<td> <b>D | S</b> </td>
|
||||
<td>Talk group XLX132-D D-Star/DMR/C4FM.</td>
|
||||
<td>Talk group XLX750-X D-Star/DMR/C4FM.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> <b>TG 9999</b> </td>
|
||||
@ -48,12 +49,9 @@ include_once 'include/config.php';
|
||||
<br>
|
||||
<span style="text-align: center;">Hotspot: D - duplex | S - simplex</span>
|
||||
</fieldset></div><br>
|
||||
|
||||
<p style="text-align: center;"><span style="text-align: center;">
|
||||
Copyright © 2016-2022<br>The Regents of the <a href=http://k0usy.mystrikingly.com/>K0USY Group</a>. All rights reserved.<br><a href=https://github.com/sp2ong/HBMonv2>Version SP2ONG 2019-2022</a><br><br></span>
|
||||
<!-- THIS COPYRIGHT NOTICE MUST BE DISPLAYED AS A CONDITION OF THE LICENCE GRANT FOR THIS SOFTWARE. ALL DERIVATEIVES WORKS MUST CARRY THIS NOTICE -->
|
||||
<!-- This is version of HBMonitor SP2ONG 2019-2022 -->
|
||||
</p>
|
||||
<!--footer-->
|
||||
<?php include_once 'elements/footer.php'; ?>
|
||||
<!--//footer-->
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
|
18
html/log.php
18
html/log.php
@ -1,20 +1,21 @@
|
||||
<?php
|
||||
$progname = basename($_SERVER['SCRIPT_FILENAME'],".php");
|
||||
include_once 'include/config.php';
|
||||
?>
|
||||
include_once 'include/version.php';?>
|
||||
<!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" xmlns:v="urn:schemas-microsoft-com:vml" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="refresh" content="30">
|
||||
<title>DMR Server monitor - STATUS</title>
|
||||
<title>HBlink3 DMR Server - Lastheard</title>
|
||||
<script type="text/javascript" src="scripts/hbmon.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="css/styles.php" />
|
||||
<meta name="description" content="Copyright © 2016-2022.The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2022" />
|
||||
<meta name="description" content="Copyright © 2016-2023. The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2023 (v20230102) HBlink3 Dashboard " />
|
||||
</head>
|
||||
<body style="background-color: #d0d0d0;font: 10pt arial, sans-serif;">
|
||||
<center><div style="width:1100px; text-align: center; margin-top:5px;">
|
||||
<p style="font-size: 10px; text-align: right; margin-right: 16px">Dashboard Version: <?php echo DASH; ?></p>
|
||||
<img src="img/HBLINK_logoV2.png?random=323527528432525.24234" alt="" />
|
||||
</div>
|
||||
<div style="width: 1150px;">
|
||||
@ -106,14 +107,9 @@ echo "\n</table></fieldset></div>";
|
||||
// close logfile after parsing
|
||||
fclose ($handle);
|
||||
?>
|
||||
<div style="width: 1100px;">
|
||||
<p style="text-align: center;"><span style="text-align: center;">
|
||||
Copyright © 2016-2022<br>The Regents of the <a target="_blank" href=http://k0usy.mystrikingly.com/>K0USY Group</a>. All rights reserved.<br><a title="HBMonv2 SP2ONG" target="_blank" href=https://github.com/sp2ong/HBMonv2>Version SP2ONG 2019-2022</a><br></span>
|
||||
<!-- THIS COPYRIGHT NOTICE MUST BE DISPLAYED AS A CONDITION OF THE LICENCE GRANT FOR THIS SOFTWARE. ALL DERIVATEIVES WORKS MUST CARRY THIS NOTICE -->
|
||||
<!-- This is version of HBMonitor v2 SP2ONG 2019-2022 -->
|
||||
<font size="-2">© developed by DL1BZ as logging-extension of HBmonitor (2018,2019)</font><br>
|
||||
</p>
|
||||
</div>
|
||||
<!--footer-->
|
||||
<?php include_once 'elements/footer.php'; ?>
|
||||
<!--//footer-->
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,19 +1,20 @@
|
||||
<?php
|
||||
$progname = basename($_SERVER['SCRIPT_FILENAME'],".php");
|
||||
include_once 'include/config.php';
|
||||
?>
|
||||
include_once 'include/version.php';?>
|
||||
<!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" xmlns:v="urn:schemas-microsoft-com:vml" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>DMR Server monitor - Masters</title>
|
||||
<title>HBlink3 DMR Server - Masters</title>
|
||||
<script type="text/javascript" src="scripts/hbmon.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="css/styles.php" />
|
||||
<meta name="description" content="Copyright © 2016-2022.The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2022" />
|
||||
<meta name="description" content="Copyright © 2016-2023. The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2023 (v20230102) HBlink3 Dashboard " />
|
||||
</head>
|
||||
<body style="background-color: #d0d0d0;font: 10pt arial, sans-serif;">
|
||||
<center><div style="width:1100px; text-align: center; margin-top:5px;">
|
||||
<p style="font-size: 10px; text-align: right; margin-right: 16px">Dashboard Version: <?php echo DASH; ?></p>
|
||||
<img src="img/HBLINK_logoV2.png?random=323527528432525.24234" alt="" />
|
||||
</div>
|
||||
<div style="width: 1100px;">
|
||||
@ -25,11 +26,9 @@ include_once 'include/config.php';
|
||||
<noscript>You must enable JavaScript</noscript>
|
||||
<p id="masters"></p>
|
||||
</div>
|
||||
<p style="text-align: center;"><span style="text-align: center;">
|
||||
Copyright © 2016-2022<br>The Regents of the <a href=http://k0usy.mystrikingly.com/>K0USY Group</a>. All rights reserved.<br><a href=https://github.com/sp2ong/HBMonv2>Version SP2ONG 2019-2022</a><br><br></span>
|
||||
<!-- THIS COPYRIGHT NOTICE MUST BE DISPLAYED AS A CONDITION OF THE LICENCE GRANT FOR THIS SOFTWARE. ALL DERIVATEIVES WORKS MUST CARRY THIS NOTICE -->
|
||||
<!-- This is version of HBMonitor SP2ONG 2019-2022 -->
|
||||
</p>
|
||||
<!--footer-->
|
||||
<?php include_once 'elements/footer.php'; ?>
|
||||
<!--//footer-->
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,19 +1,20 @@
|
||||
<?php
|
||||
$progname = basename($_SERVER['SCRIPT_FILENAME'],".php");
|
||||
include_once 'include/config.php';
|
||||
?>
|
||||
include_once 'include/version.php';?>
|
||||
<!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" xmlns:v="urn:schemas-microsoft-com:vml" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>DMR Server - Monitor</title>
|
||||
<title>HBlink3 DMR Server - Log Monitor</title>
|
||||
<script type="text/javascript" src="scripts/hbmon.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="css/styles.php" />
|
||||
<meta name="description" content="Copyright © 2016-2022.The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2022" />
|
||||
<meta name="description" content="Copyright © 2016-2023. The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2023 (v20230102) HBlink3 Dashboard " />
|
||||
</head>
|
||||
<body style="background-color: #d0d0d0;font: 10pt arial, sans-serif;">
|
||||
<center><div style="width:1100px; text-align: center; margin-top:5px;">
|
||||
<p style="font-size: 10px; text-align: right; margin-right: 16px">Dashboard Version: <?php echo DASH; ?></p>
|
||||
<img src="img/HBLINK_logoV2.png?random=323527528432525.24234" alt="" />
|
||||
</div>
|
||||
<div style="width: 1100px;">
|
||||
@ -32,11 +33,9 @@ include_once 'include/config.php';
|
||||
<legend><b><font color="#000"> .: Call Log :. </font></b></legend>
|
||||
<pre id="log" style="height: 40em; text-align: left; overflow-y: scroll; font-size:12px; background-color: #000000; color:#729fcf;"></pre>
|
||||
</fieldset></div>
|
||||
<p style="text-align: center;"><span style="text-align: center;">
|
||||
Copyright © 2016-2022<br>The Regents of the <a href=http://k0usy.mystrikingly.com/>K0USY Group</a>. All rights reserved.<br><a href=https://github.com/sp2ong/HBMonv2>Version SP2ONG 2019-2022</a><br><br></span>
|
||||
<!-- THIS COPYRIGHT NOTICE MUST BE DISPLAYED AS A CONDITION OF THE LICENCE GRANT FOR THIS SOFTWARE. ALL DERIVATEIVES WORKS MUST CARRY THIS NOTICE -->
|
||||
<!-- This is version of HBMonitor SP2ONG 2019-2022 -->
|
||||
</p>
|
||||
<!--footer-->
|
||||
<?php include_once 'elements/footer.php'; ?>
|
||||
<!--//footer-->
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
|
15
html/opb.php
15
html/opb.php
@ -1,19 +1,20 @@
|
||||
<?php
|
||||
$progname = basename($_SERVER['SCRIPT_FILENAME'],".php");
|
||||
include_once 'include/config.php';
|
||||
?>
|
||||
include_once 'include/version.php';?>
|
||||
<!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" xmlns:v="urn:schemas-microsoft-com:vml" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>DMR Server monitor - OpenBridge</title>
|
||||
<title>HBlink3 DMR Server - OpenBridge Systems</title>
|
||||
<script type="text/javascript" src="scripts/hbmon.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="css/styles.php" />
|
||||
<meta name="description" content="Copyright © 2016-2022.The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2022" />
|
||||
<meta name="description" content="Copyright © 2016-2023. The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2023 (v20230102) HBlink3 Dashboard " />
|
||||
</head>
|
||||
<body style="background-color: #d0d0d0;font: 10pt arial, sans-serif;">
|
||||
<center><div style="width:1100px; text-align: center; margin-top:5px;">
|
||||
<p style="font-size: 10px; text-align: right; margin-right: 16px">Dashboard Version: <?php echo DASH; ?></p>
|
||||
<img src="img/HBLINK_logoV2.png?random=323527528432525.24234" alt="" />
|
||||
</div>
|
||||
<div style="width: 1100px;">
|
||||
@ -25,11 +26,9 @@ include_once 'include/config.php';
|
||||
<noscript>You must enable JavaScript</noscript>
|
||||
<p id="opb"></p>
|
||||
</div>
|
||||
<p style="text-align: center;"><span style="text-align: center;">
|
||||
Copyright © 2016-2022<br>The Regents of the <a href=http://k0usy.mystrikingly.com/>K0USY Group</a>. All rights reserved.<br><a href=https://github.com/sp2ong/HBMonv2>Version SP2ONG 2019-2022</a><br><br></span>
|
||||
<!-- THIS COPYRIGHT NOTICE MUST BE DISPLAYED AS A CONDITION OF THE LICENCE GRANT FOR THIS SOFTWARE. ALL DERIVATEIVES WORKS MUST CARRY THIS NOTICE -->
|
||||
<!-- This is version of HBMonitor SP2ONG 2019-2022 -->
|
||||
</p>
|
||||
<!--footer-->
|
||||
<?php include_once 'elements/footer.php'; ?>
|
||||
<!--//footer-->
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,19 +1,20 @@
|
||||
<?php
|
||||
$progname = basename($_SERVER['SCRIPT_FILENAME'],".php");
|
||||
include_once 'include/config.php';
|
||||
?>
|
||||
include_once 'include/version.php';?>
|
||||
<!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" xmlns:v="urn:schemas-microsoft-com:vml" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>DMR Server monitor - Peers</title>
|
||||
<title>HBlink3 DMR Server - Peer Systems</title>
|
||||
<script type="text/javascript" src="scripts/hbmon.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="css/styles.php" />
|
||||
<meta name="description" content="Copyright © 2016-2022.The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2022" />
|
||||
<meta name="description" content="Copyright © 2016-2023. The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2023 (v20230102) HBlink3 Dashboard " />
|
||||
</head>
|
||||
<body style="background-color: #d0d0d0;font: 10pt arial, sans-serif;">
|
||||
<center><div style="width:1100px; text-align: center; margin-top:5px;">
|
||||
<p style="font-size: 10px; text-align: right; margin-right: 16px">Dashboard Version: <?php echo DASH; ?></p>
|
||||
<img src="img/HBLINK_logoV2.png?random=323527528432525.24234" alt="" />
|
||||
</div>
|
||||
<div style="width: 1100px;">
|
||||
@ -25,11 +26,9 @@ include_once 'include/config.php';
|
||||
<noscript>You must enable JavaScript</noscript>
|
||||
<p id="peers"></p>
|
||||
</div>
|
||||
<p style="text-align: center;"><span style="text-align: center;">
|
||||
Copyright © 2016-2022<br>The Regents of the <a href=http://k0usy.mystrikingly.com/>K0USY Group</a>. All rights reserved.<br><a href=https://github.com/sp2ong/HBMonv2>Version SP2ONG 2019-2022</a><br><br></span>
|
||||
<!-- THIS COPYRIGHT NOTICE MUST BE DISPLAYED AS A CONDITION OF THE LICENCE GRANT FOR THIS SOFTWARE. ALL DERIVATEIVES WORKS MUST CARRY THIS NOTICE -->
|
||||
<!-- This is version of HBMonitor SP2ONG 2019-2022 -->
|
||||
</p>
|
||||
<!--footer-->
|
||||
<?php include_once 'elements/footer.php'; ?>
|
||||
<!--//footer-->
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,20 +1,21 @@
|
||||
<?php
|
||||
$progname = basename($_SERVER['SCRIPT_FILENAME'],".php");
|
||||
include_once 'include/config.php';
|
||||
?>
|
||||
include_once 'include/version.php';?>
|
||||
<!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" xmlns:v="urn:schemas-microsoft-com:vml" lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="refresh" content="300">
|
||||
<title>DMR Server monitor - System Info</title>
|
||||
<title>HBlink3 DMR Server - System Info</title>
|
||||
<script type="text/javascript" src="scripts/hbmon.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="css/styles.php" />
|
||||
<meta name="description" content="Copyright © 2016-2022.The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2022" />
|
||||
<meta name="description" content="Copyright © 2016-2023. The Regents of the K0USY Group. All rights reserved. Version SP2ONG 2019-2023 (v20230102) HBlink3 Dashboard " />
|
||||
</head>
|
||||
<body style="background-color: #d0d0d0;font: 10pt arial, sans-serif;">
|
||||
<center><div style="width:1100px; text-align: center; margin-top:5px;">
|
||||
<p style="font-size: 10px; text-align: right; margin-right: 16px">Dashboard Version: <?php echo DASH; ?></p>
|
||||
<img src="img/HBLINK_logoV2.png?random=323527528432525.24234" alt="" />
|
||||
</div>
|
||||
<div style="width: 1100px;">
|
||||
@ -45,11 +46,9 @@ include_once 'include/config.php';
|
||||
</br>
|
||||
</fieldset>
|
||||
<br>
|
||||
<p style="text-align: center;"><span style="text-align: center;">
|
||||
Copyright © 2016-2022<br>The Regents of the <a href=http://k0usy.mystrikingly.com/>K0USY Group</a>. All rights reserved.<br><a href=https://github.com/sp2ong/HBMonv2>Version SP2ONG 2019-2022</a><br><br></span>
|
||||
<!-- THIS COPYRIGHT NOTICE MUST BE DISPLAYED AS A CONDITION OF THE LICENCE GRANT FOR THIS SOFTWARE. ALL DERIVATEIVES WORKS MUST CARRY THIS NOTICE -->
|
||||
<!-- This is version of HBMonitor SP2ONG 2019-2022 -->
|
||||
</p>
|
||||
<!--footer-->
|
||||
<?php include_once 'elements/footer.php'; ?>
|
||||
<!--//footer-->
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
x
Reference in New Issue
Block a user