diff options
Diffstat (limited to 'share')
| -rw-r--r-- | share/multi-lcd.html | 137 | ||||
| -rw-r--r-- | share/single-lcd.html | 121 | 
2 files changed, 0 insertions, 258 deletions
| diff --git a/share/multi-lcd.html b/share/multi-lcd.html deleted file mode 100644 index fda4cf5..0000000 --- a/share/multi-lcd.html +++ /dev/null @@ -1,137 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" -	"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> -	<title></title> -	<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/> -	<style type="text/css"> - -	div.outer { -		border: 0.2em solid #000066; -		width: 55em; -	} - -	div.display { -		background-color: #0000ff; -		color: white; -		font-family: Sans-Serif; -		font-weight: bold; -		position: relative; -		margin-bottom: 0; -		margin-top: 0; -		padding-top: 0; -		padding-bottom: 0; -		width: 55em; -		height: 1.4em; -	} - -	div.display div { -		overflow: hidden; -		position: absolute; -		height: 100%; -	} - -	div.time { -		left: 0; -		width: 6%; -		font-size: 95%; -	} - -	div.train { -		left: 5%; -		width: 9%; -		background-color: white; -		color: #0000ff; -		font-size: 95%; -	} - -	div.via { -		left: 15%; -		width: 35%; -	} - -	div.via span { -		margin-right: 0.4em; -		font-size: 80%; -	} - -	div.destination { -		left: 50%; -		width: 25%; -		font-size: 120%; -	} - -	div.platform { -		left: 75%; -		width: 5%; -	} - -	div.info { -		left: 80%; -		width: 20%; -		background-color: white; -		color: #0000ff; -		font-size: 80%; -		line-height: 150%; -	} - -	div.separator { -		border-bottom: 0.1em solid #000066; -	} - -	div.about { -		text-align: right;; -		font-family: Sans-Serif; -		color: #666666; -	} - -	div.about a { -		color: #000066; -	} - -	</style> -</head> -<body> - -<div class="outer"> -<TMPL_LOOP departures> - -<div class="display <TMPL_IF __even__>separator</TMPL_IF>"> -<div class="platform"> -<TMPL_VAR platform> -</div> - -<div class="time"> -<TMPL_VAR time> -</div> -<div class="train"> -<TMPL_VAR train> -</div> -<div class="via"> -<TMPL_LOOP via> -<span><TMPL_VAR stop></span> -<TMPL_UNLESS __last__> - </TMPL_UNLESS> -</TMPL_LOOP> -</div> -<div class="destination"> -<TMPL_VAR destination> -</div> -<TMPL_IF info> -<div class="info"> -<TMPL_VAR info> -</div> -</TMPL_IF> - -</div> <!-- display --> - -</TMPL_LOOP> - -</div> <!-- outer --> - -<div class="about"> -<a href="http://finalrewind.org/projects/db-fakedisplay/">db-fakedisplay</a> -v<TMPL_VAR version> -</div> - -</body> -</html> diff --git a/share/single-lcd.html b/share/single-lcd.html deleted file mode 100644 index 6c5d26b..0000000 --- a/share/single-lcd.html +++ /dev/null @@ -1,121 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" -	"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> -	<title></title> -	<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/> -	<style type="text/css"> - -	div.display { -		background-color: #0000ff; -		color: white; -		font-family: Sans-Serif; -		font-weight: bold; -		position: relative; -		margin-left: 1em; -		margin-top: 1em; -		float: left; -		width: 28em; -		height: 4.5em; -		border: 0.7em solid #000066; -	} - -	div.display div { -		overflow: hidden; -		position: absolute; -	} - -	div.no-data { -		top: 0.5em; -		left: 1em; -		font-size: 2em; -	} - -	div.time { -		top: 0em; -		left: 0em; -		font-size: 1.7em; -	} - -	div.train { -		left: 0em; -		top: 1.8em; -	} - -	div.via { -		top: 1.5em; -		left: 5.8em; -		width: 17em; -		height: 1em; -	} - -	div.via span { -		margin-right: 0.4em; -	} - -	div.destination { -		top: 1.32em; -		left: 3.2em; -		width: 9.2em; -		font-size: 1.8em; -		height: 1em; -	} - -	div.platform { -		top: 0em; -		right: 0em; -		font-size: 3em; -	} - -	div.info { -		top: 0em; -		left: 5.8em; -		width: 16.5em; -		height: 1em; -		background-color: white; -		color: #0000ff; -	} - -	</style> -</head> -<body> - -<TMPL_LOOP departures> - -<div class="display"> -<div class="platform"> -<TMPL_VAR platform> -</div> - -<TMPL_IF train> -<div class="time"> -<TMPL_VAR time> -</div> -<div class="train"> -<TMPL_VAR train> -</div> -<div class="via"> -<TMPL_LOOP via> -<span><TMPL_VAR stop></span> -</TMPL_LOOP> -</div> -<div class="destination"> -<TMPL_VAR destination> -</div> -<TMPL_IF info> -<div class="info"> -<TMPL_VAR info> -</div> -</TMPL_IF> -<TMPL_ELSE> -<div class="no-data"> -Bitte Ansage beachten -</div> -</TMPL_IF> - -</div> <!-- display --> - -</TMPL_LOOP> - -</body> -</html> | 
