From e0f5a368c8cf5c3cd5814b55d95711edd1b3b190 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Sun, 25 Dec 2016 20:36:48 +0000
Subject: [PATCH] Ignore invalid duplicated tram stops returned in autocomplete response (id > 6000)

---
 index.html |   40 +++++++++++++---------------------------
 1 files changed, 13 insertions(+), 27 deletions(-)

diff --git a/index.html b/index.html
index c7be53f..87a2cd0 100644
--- a/index.html
+++ b/index.html
@@ -6,32 +6,7 @@
 		<meta http-equiv="X-UA-Compatible" content="IE=edge">
 		<meta name="viewport" content="width=device-width, initial-scale=1">
 		<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
-		<style type="text/css">
-			tr.active {
-				color: gray;
-			}
-			.form-round-left {
-				border-top-left-radius: 4px !important;
-				border-bottom-left-radius: 4px !important;
-				border-right: 0;
-			}
-			.navbar-text {
-				margin-right: 15px;
-				margin-left: 15px;
-			}
-			.input-group-btn:first-child {
-				width: 50%;
-			}
-			@keyframes blink {
-				50% { color: transparent; }
-			}
-			.status-boarding {
-				animation: blink 1s linear infinite;
-			}
-			.status-delayed {
-				font-weight: bold;
-			}
-		</style>
+		<link rel="stylesheet" type="text/css" href="index.css">
 	</head>
 	<body>
 		<nav class="navbar navbar-default">
@@ -116,7 +91,18 @@
 					</table>
 					-->
 					
-					<p>&copy; 2016 Jacek Kowalski - <a href="https://github.com/jacekkow/mpk-ttss">Source</a> - <a href="https://raw.githubusercontent.com/jacekkow/mpk-ttss/master/LICENSE">License</a></p>
+					<p class="small">
+						Legend:
+						<span class="label bg-active">Departed</span>
+						<span class="label bg-success">At stop</span>
+						<span class="label bg-default">En route</span>
+						<span class="label bg-warning">Delayed 4′+</span>
+						<span class="label bg-danger">Delayed 10′+</span>
+					</p>
+					
+					<p class="small">Relative times (eg. 3 min) are real-time arrivals based on tram location data. Absolute times (eg. 8:01) are scheduled departures, shown when the tram cannot be located. "?" means unknown delay.</p>
+					
+					<p class="small">&copy; 2016 Jacek Kowalski - <a href="https://github.com/jacekkow/mpk-ttss">Source</a> - <a href="https://raw.githubusercontent.com/jacekkow/mpk-ttss/master/LICENSE">License</a></p>
 				</div>
 			</div>
 		</div>

--
Gitblit v1.9.1