Remove old code

This commit is contained in:
Midgard 2020-06-18 12:58:21 +02:00
parent 05abd1789b
commit 1fd0f751ee
Signed by: midgard
GPG key ID: 511C112F1331BBB4
3 changed files with 0 additions and 138 deletions

View file

@ -1,91 +0,0 @@
body {
font-family: sans-serif;
margin: 0;
padding: 10px 0;
}
h1 {
margin: 0;
padding: 0;
font-size: 120%;
text-align: center;
}
.info, .footnote {
text-align: center;
padding: 0 1em;
}
.info {
margin-bottom: 1em;
}
@media (min-width:500px) {
.info {
width: 400px;
text-align: right;
min-width: 30%;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}
.info .stopref {
float: left;
}
}
table.stopInfoboard {
min-width: 30%;
max-width: 1000px;
margin: 0 auto;
border-spacing: 0;
border-collapse: collapse;
}
table.stopInfoboard td {
padding: 0.4em 0.1em;
}
@media (min-width:500px) {
table.stopInfoboard td {
padding: 0.4em;
}
}
tr.line.even td {
background-color: #eee;
}
tr.line .lineNumber {
text-align: right;
width: 3em;
}
tr.line .lineNumber span {
display: inline-block;
text-align: center;
width: 2em;
padding: 0.1em;
margin-right: 0.4em;
border: 2px solid transparent;
border-radius: 5px;
}
tr.line .departure {
text-align: right;
padding: 0 0.2em;
}
@media (min-width:500px) {
tr.line .departure {
padding: 0 1em;
}
}
.delay {
font-weight: bold;
font-size: 90%;
color: #f00;
}
.theoretical {
font-size: 90%;
color: #a00;
font-family: Impact, fantasy, serif;
}

View file

@ -1,27 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="format-detection" content="telephone=no" />
<title>Haltebord lite</title>
<style>
@import url('haltebord.css');
</style>
</head>
<body>
<?php
require('./main.php');
$stopRef = '506415';
if (isset($_GET['h'])) {
$stopRef = $_GET['h'];
}
$infoboard = new StopInfoboard($stopRef);
$infoboard->make();
?>
</body>
</html>

View file

@ -1,20 +0,0 @@
<?php
$timezone = new DateTimeZone('Europe/Brussels');
$includesDir = '/mnt/imagestore/rumores.eu/delijnincludes/old/';
require($includesDir.'/ApiRequest.php');
require($includesDir.'/ApiCoreRequest.php');
require($includesDir.'/PTElement.php');
require($includesDir.'/PTLine.php');
require($includesDir.'/PTStop.php');
require($includesDir.'/StopInfoboard.php');
require($includesDir.'/DepartureFormatter.php');
require($includesDir.'/DelayCalculator.php');
class NotImplementedException extends Exception {}
?>