95 lines
4.3 KiB
PHP
95 lines
4.3 KiB
PHP
<?php
|
|
/*
|
|
about.php
|
|
OpenLog Online Logbook
|
|
Copyright (C) 2026 Rod Wright
|
|
|
|
SPDX-License-Identifier: GPL-2.0
|
|
*/
|
|
|
|
include("functions.php");
|
|
$version = OL_VERSION;
|
|
|
|
$print = $_REQUEST['print'] ?? NULL;
|
|
|
|
if ($print) {
|
|
$sbcolor = P_SIDEBAR_COLOR;
|
|
$mbgcolor = P_MENUBG_COLOR;
|
|
} else {
|
|
$sbcolor = SIDEBAR_COLOR;
|
|
$mbgcolor = MENUBG_COLOR;
|
|
}
|
|
|
|
framework("begin", "About OpenLog", "About OpenLog", $print);
|
|
|
|
pagetable("begin");
|
|
if (!$print) {
|
|
pageblock("left", "begin");
|
|
sidemenu();
|
|
pageblock("left", "end");
|
|
}
|
|
pageblock("right", "begin");
|
|
echo "
|
|
<h3 align=\"center\">
|
|
OpenLog $version
|
|
</h3><br>
|
|
<p>This program is licensed under the terms of the <a href=\"gpl.php\">GNU General Public License</a>. Click on the link
|
|
or see the LICENSE file in the distribution to read it. OpenLog is Copyright (C) 2025 by Rod Wright.</p>
|
|
<p>
|
|
Although the code
|
|
that makes OpenLog work is Open Source, proprietary information may be safely entered into the OpenLog database without fear of affecting the status
|
|
of either that information or of OpenLog. This does not conflict with the terms of the GPL, since no database is distributed with OpenLog. If you give a copy of OpenLog to someone else (which you are encouraged to do), you do not need to give them your database
|
|
or anything contained therein.</p>
|
|
<p>
|
|
OpenLog is a simple online logbook application. It allows anyone with a web browser to read, enter, and search for
|
|
notes on any subject. The available shifts, employees, and subjects are easily configured. Notes can be referred to
|
|
other notes and the entire chain of referenced notes can be displayed in a single page. This makes it convenient to
|
|
track ongoing projects or actions on a particular piece of equipment over a long period of time. OpenLog also incorporates
|
|
part tracking functions that allow discrepancies and maintenence actions to be documented. Notes, parts, and maintenance
|
|
forms can be can be searched for based on a number of criteria. The look and feel of the OpenLog pages are easily changed.
|
|
Settings that affect all users can be changed in the Administration menu. User specific settings can be changed in the
|
|
My Profile menu. No browser specific HTML is used in OpenLog, so it should be useable in any browser, and it has been
|
|
tested using Google Chrome, Mozilla Firefox and Microsoft Internet Explorer.
|
|
</p>
|
|
<p>
|
|
To read about the <a href=\"CHANGELOG\" >changes</a> in this latest version of OpenLog, click on the link or see the CHANGELOG file in the distribution.
|
|
</p>
|
|
|
|
<p>Several pieces of Open Source software make OpenLog possible.
|
|
<br>
|
|
<table border=0 cellpadding=20>
|
|
<tr>
|
|
<td><a href=\"http://www.linux.org\" target=\"_blank\"><img src=\"images/linux.png\" border=0></a></td><td><b>Linux</b></td><td>All
|
|
development and most of the testing of OpenLog was done on computers running the
|
|
<a href=\"http://www.linux.org\" target=\"_blank\">Linux</a> operating system.</td>
|
|
</tr>
|
|
<tr>
|
|
<td><a href=\"http://www.php.net\" target=\"_blank\"><img src=\"images/php-small-trans-dark.gif\"
|
|
border=0></a></td><td><b>PHP</b></td><td>OpenLog is written in <a href=\"http://www.php.net\" target=\"_blank\">PHP</a>, a hypertext
|
|
preprocessor, which makes possible the dynamic content of the pages.</td>
|
|
</tr>
|
|
<tr>
|
|
<td><a href=\"http://www.mysql.com\" target=\"_blank\"><img src=\"images/poweredbymysql-125.png\"
|
|
border=0></a></td><td><b>MySQL</b></td><td>OpenLog stores its data in a <a href=\"http://www.mysql.com\" target=\"_blank\">MySQL</a>
|
|
database.</td>
|
|
</tr>
|
|
<tr>
|
|
<td><a href=\"http://http.apache.org\" target=\"_blank\"><img src=\"images/apache_pb.gif\"
|
|
border=0></a></td><td><b>Apache</b></td><td>OpenLog was developed using the <a href=\"httpd.apache.org\" target=\"_blank\">Apache</a> web
|
|
server.</td>
|
|
</tr>
|
|
<tr>
|
|
<td><a href=\"http://p.yusukekamiyamane.com\" target=\"_blank\"><img src=\"images/Kamiyamane.png\"
|
|
border=0></a></td><td><b>Fugue<br>Icons</b></td><td>The icons used in OpenLog are from the Fugue Icon set created by Yusuke Kamiyamane. The entire set is available at
|
|
<a href=\"http://p.yusukekamiyamane.com/\" target=\"_blank\">p.yusukekamiyamane.com</a>, and are licensed under a
|
|
<a href=\"http://creativecommons.org/licenses/by/3.0/legalcode\" target=\"_blank\">Creative Commons Attribution 3.0 License</a>.</td>
|
|
</tr>
|
|
|
|
</table>
|
|
</p>
|
|
";
|
|
pageblock("right", "end");
|
|
pagetable("end");
|
|
|
|
framework("end", "", "", $print);
|