85 lines
4 KiB
PHP
85 lines
4 KiB
PHP
<?php
|
|
|
|
require('PatchObject.php');
|
|
require('Database.php');
|
|
|
|
date_default_timezone_set('UTC');
|
|
$db = new Database(__DIR__ . '/db.json');
|
|
if (!$db->load()) {
|
|
exit(1);
|
|
}
|
|
$db->sort();
|
|
|
|
?>
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="title" content="PatchBot">
|
|
<meta name="author" content="Steffen Lange">
|
|
<meta name="date" content="<?php echo date(DATE_W3C); ?>">
|
|
<meta name="description" content="Patch Notification Robot provides you the latest update notifications.">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:url" content="https://www.patchbot.de/">
|
|
<meta property="og:title" content="PatchBot">
|
|
<meta property="og:description" content="Patch Notification Robot provides you the latest update notifications.">
|
|
<meta property="og:image" content="https://www.patchbot.de/assets/patchbot.jpg">
|
|
<meta property="twitter:card" content="summary">
|
|
<meta property="twitter:url" content="https://www.patchbot.de/">
|
|
<meta property="twitter:title" content="PatchBot">
|
|
<meta property="twitter:description" content="Patch Notification Robot provides you the latest update notifications.">
|
|
<meta property="twitter:image" content="https://www.patchbot.de/assets/patchbot.jpg">
|
|
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css">
|
|
<link rel="stylesheet" type="text/css" href="assets/css/jquery.dataTables.min.css">
|
|
<script src="assets/js/jquery-3.6.0.slim.min.js"></script>
|
|
<script src="assets/js/jquery.dataTables.min.js"></script>
|
|
<script src="assets/js/bootstrap.bundle.min.js"></script>
|
|
<script>
|
|
$(document).ready(function() {
|
|
$('[data-toggle="tooltip"]').tooltip();
|
|
$('#patches').DataTable( {
|
|
stateSave: true
|
|
} );
|
|
});
|
|
</script>
|
|
<title>PatchBot</title>
|
|
</head>
|
|
<body>
|
|
<div class="container p-5">
|
|
<h2 class="mb-4">Patch Notification Robot</h2>
|
|
<p class="text-center"><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WYQZCVJPVSS5L&source=url"><img src="assets/btn_donateCC_LG.gif" alt="Donate" width="147" height="47" /></a></p>
|
|
<p><a href="https://www.patchbot.de/rss.xml"><img src="assets/rss.png" alt="Subscribe" width="24" height="24" /></a> <a href="https://twitter.com/Patchbot_de"><img src="assets/twitter.png" alt="Follow me" width="24" height="24" /></a> <a href="https://github.com/stelas/PatchBot"><img src="assets/github.png" alt="Fork me" width="24" height="24" /></a> Providing you the latest update notifications.</p>
|
|
<table id="patches" class="table table-bordered table-hover table-sm" data-order='[[ 4, "desc" ]]' data-page-length='25'>
|
|
<thead class="table-dark">
|
|
<tr>
|
|
<th>Vendor</th>
|
|
<th>Product</th>
|
|
<th>Branch</th>
|
|
<th>Version</th>
|
|
<th data-toggle="tooltip" title="*) or first discovery time">Release Date<sup>*</sup></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
|
|
for ($i = 0; $i < $db->count(); $i++) {
|
|
$patch = $db->get($i);
|
|
echo ' <tr>';
|
|
echo '<td>' . htmlentities($patch->getVendor()) . '</td>';
|
|
echo '<td><a href="' . htmlspecialchars($patch->getURL()) . '">' . htmlentities($patch->getProduct()) . '</a></td>';
|
|
echo '<td>' . htmlentities($patch->getBranch()) . '</td>';
|
|
echo '<td>' . htmlentities($patch->getVersion()) . '</td>';
|
|
echo '<td>' . date('Y-m-d', $patch->getTimestamp()) . '</td>';
|
|
echo '</tr>' . PHP_EOL;
|
|
}
|
|
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
<hr>
|
|
<p class="text-end">Information are provided without any warranty. Trademarks are property of their respective owners.<br>
|
|
© 2019-<?php echo date('y'); ?> <a href="https://steffen.lange.tl/">Steffen Lange</a> | <a href="https://www.dateihal.de/cms/imprint">Imprint</a> | <a href="https://www.dateihal.de/cms/privacy">Privacy</a></p>
|
|
</div>
|
|
</body>
|
|
</html>
|