summaryrefslogtreecommitdiff
path: root/templates/layouts/default.html.ep
blob: f7a5f024817f8f5402ed8ab99c57df3adc18eb3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<!DOCTYPE html>
<html lang="de">
<head>
	<title><%= stash('title') // 'db-infoscreen' %></title>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
% if ($self->stash('refresh_interval')) {
	<meta http-equiv="refresh" content="<%= $self->stash('refresh_interval') %>"/>
% }


	%= stylesheet '/static/default.css'
	%= stylesheet '/static/jquery-ui.min.css'
% my $force_mobile = param('force_mobile') // -1;
% if ($force_mobile == 1 or ($self->browser->mobile and $force_mobile != 0)) {
	%= stylesheet '/static/mobile.css'
% }
	%= javascript '/static/jquery-1.10.2.min.js'
	%= javascript '/static/jquery-ui.min.js'
	%= javascript '/static/autocomplete.js'
	%= javascript '/static/collapse.js'
	%= javascript '/static/marquee.js'
	%= javascript begin
	$(function () {  $('marquee').marquee() });
	% end
	% if (stash('with_geolocation')) {
	%= javascript '/static/geolocation.js'
	% }
</head>
<body style="<%= (stash('hide_opts') ? 'margin: 0; padding: 0;' : q{}) %>">

% if (my $error = stash 'error') {
<div class="container">
<div class="error">Backend-Fehler:</div>
<div>
<pre>
%= $error
</pre>
</div>
% }
% elsif (stash('stationlist')) {
<div class="error">Mehrdeutige Eingabe</div>
<div>Bitte eine Station aus der Liste auswählen</div>
</div>
% }

%= content

% if (not stash('hide_opts')) {
<div class="container">
<div class="input-field">


%= form_for _redirect => begin
<div>
  <div class="field">
    <div class="desc">Bahnhof / Haltestelle</div>
    <div>
% if (stash('stationlist')) {
      %= select_field station => stash('stationlist')
% }
% elsif (stash('station')) {
      %= text_field 'station', class => 'station'
% }
% else {
      %= text_field 'station', class => 'station', autofocus => 'autofocus'
% }
    </div>
  </div>
  <div class="field">
    %= submit_button 'Abfartsmonitor'
  </div>
  <div class="break"></div>
  <span class="optional">Optionale Einstellungen:</span>
  <div class="field">
    <div class="desc">
      Frontend
    </div>
    <div>
      %= select_field mode => [ ['App / Infoscreen' => 'clean'], ['Bahnhofstafel' => 'multi'], ['Gleis' => 'single'] ]
    </div>
  </div>
  <div class="field">
    <div class="desc">
      Backend
    </div>
    <div>
      %= select_field backend => [ ['IRIS' => 'iris'], ['HAFAS' => 'ris'] ]
    </div>
  </div>
  <div class="field">
    <div class="desc">
      Nur Züge über
    </div>
    <div>
      %= text_field 'via', placeholder => 'Bahnhof 1, Bhf2, ... (oder regulärer Ausdruck)'
    </div>
  </div>
  <div class="field">
    <div class="desc">
      Gleise
    </div>
    <div>
      %= text_field 'platforms', placeholder => '1, 2, 5, ...'
    </div>
  </div>
  <div class="field">
    <div class="desc">
      %= check_box 'hidelowdelay' => 1, id => 'id_hidelowdelay'
      <label for="id_hidelowdelay">
        Nur Verspätungen &gt;5 Min. anzeigen
      </label>
    </div>
  </div>
  <div class="field">
    <div class="desc">
      %= check_box 'hide_opts' => 1, id => 'id_hide_opts'
      <label for="id_hide_opts">
        Formular verstecken (für Infoscreens)
      </label>
    </div>
  </div>
  <div class="break"></div>
  <span class="optional">Nur für IRIS-Backend:</span>
  <div class="field">
    <div class="desc">
      Ankunfts- oder Abfahrtszeit anzeigen?
    </div>
    <div>
      %= select_field admode => [['Abfahrt bevorzugen' => 'deparr'], ['Nur Abfahrt' => 'dep'], ['Nur Ankunft' => 'arr']]
    </div>
  </div>
  <div class="field">
    <div class="desc">
      %= check_box 'show_realtime' => 1, id => 'id_show_realtime'
      <label for="id_show_realtime">
        Erwartete Zeiten statt Fahrplandaten
      </label>
    </div>
  </div>
  <div class="field">
    <div class="desc">
      %= check_box 'recursive' => 1, id => 'id_recursive'
      <label for="id_recursive">
      Betriebliche Bahnhofstrennungen ignorieren (z.B. "Hbf (Fern+Regio)" vs. "Hbf (S)")
      </label>
    </div>
  </div>
  <div class="field">
    %= submit_button 'Anzeigen'
  </div>
</div>
% end

</div> <!-- input-field -->

<div class="notes">
<span class="notes">Beispiele:</span>
<ul>
<li><a href="/Essen%20Hbf?mode=multi">Essen HBf</a> (IRIS, Bahnhofstafel)</li>
<li><a href="/Dortmund%20Hbf/Bochum%7CHamm?mode=multi">Dortmund HBf</a> (IRIS, Bahnhofstafel,
nur Züge via Bochum oder Hamm)</li>
<li><a href="/Dortmund%20Universität?mode=clean">Dortmund Universit&auml;t</a> (IRIS, Mobile/Infoscreen)</li>
<li><a href="/KD?mode=single">D&uuml;sseldorf HBf</a> (IRIS, Gleistafel)</li>
</ul>
</div>

<div class="notes">
<span class="notes">Siehe auch:</span>
<ul>
<li><a href="http://reiseauskunft.bahn.de/bin/bhftafel.exe/dn">DB RIS</a>
   (<a href="http://mobile.bahn.de/bin/mobil/bhftafel.exe/dox">mobil</a>)</li>
<li><a href="http://data.deutschebahn.com/datasets/betriebsstellen/">Betriebsstellenliste</a></li>
<li><a href="https://vrrf.finalrewind.org/">vrr-infoscreen</a></li>
</ul>
</div> <!-- notes -->

<div class="notes">
<span class="notes">Developers Developers Developers Developers:</span>
<ul>
<li>Diese Seite kann gerne als iframe in eigene Infoscreens o.ä. eingebunden werden.
	Das App/Infoscreen-Template kann dazu (falls nötig) mit
	<span style="font-family: monospace;">force_mobile=1</span> bzw.
	<span style="font-family: monospace;">force_mobile=0</span> auf die mobile
	bzw. die Desktopversion festgelegt werden</li>
<li>Die Parameter <span style="font-family: monospace;">mode=marudor&amp;version=3</span>
	liefern ein JSON-Interface. Die route-Elemente können zusätzlich
	die Felder "isAdditional" oder "isCancelled" enthalten, der Rest sollte
	selbsterklärend sein</li>
</ul>
</div> <!-- notes -->

</div> <!-- container -->

<div class="about">
<a href="https://finalrewind.org/projects/db-fakedisplay/">db-infoscreen</a>
v<%= stash('version') // '???' %><br/>
Backends:<br/>
<a href="https://finalrewind.org/projects/Travel-Status-DE-DeutscheBahn/">Travel::Status::DE::HAFAS</a>
v<%= $Travel::Status::DE::HAFAS::VERSION %><br/>
<a href="https://finalrewind.org/projects/Travel-Status-DE-IRIS/">Travel::Status::DE::IRIS</a>
v<%= $Travel::Status::DE::IRIS::VERSION %><br/>
<a href="http://data.deutschebahn.com/dataset/data-haltestellen">Haltestellendaten</a>
© DB Station&amp;Service AG,
Europaplatz 1,
10557 Berlin, lizensiert unter CC-BY 4.0
</div>
% }

</body>
</html>