mirror of
https://github.com/derf/travelynx
synced 2024-12-04 10:19:09 +00:00
47f76da4f8
Squashed commit of the following: commit92518024ba
Author: Birte Kristina Friesel <birte.friesel@uos.de> Date: Fri Jul 26 18:39:46 2024 +0200 add_or_update station: remove superfluos 'new backend id := old backend id' commitdf21c20c6e
Author: Birte Kristina Friesel <birte.friesel@uos.de> Date: Fri Jul 26 18:35:51 2024 +0200 revert connection targets min_count to 3 commitbe335cef07
Author: Birte Kristina Friesel <birte.friesel@uos.de> Date: Fri Jul 26 18:20:05 2024 +0200 mention backend selection in API documentation commit9f41828fb4
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Thu Jul 25 20:19:23 2024 +0200 use_history: not all backends provide route data in departure monitor commit09714b4d89
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Thu Jul 25 20:11:44 2024 +0200 disambiguation: pass correct hafas parameter commit8cdf1120fc
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Thu Jul 25 20:11:28 2024 +0200 _checked_in: hide Zuglauf link for non-db checkins commit7455653f54
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Thu Jul 25 20:01:47 2024 +0200 debug output commitb9cda07f85
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Thu Jul 25 19:09:07 2024 +0200 fix remaining get_connection_targets / get_connecting_trains_p invocations commit2759d7258c
Author: Birte Kristina Friesel <derf@finalrewind.org> Date: Wed Jul 24 20:50:12 2024 +0200 support non-DB HAFAS backends (WiP)
34 lines
1.6 KiB
Text
34 lines
1.6 KiB
Text
<div class="row">
|
||
<div class="col s12">
|
||
<h2>Backend auswählen</h2>
|
||
<p style="text-align: justify;">
|
||
Das ausgewählte Backend bestimmt die Datenquelle für Fahrten in travelynx.
|
||
<strong>DB (HAFAS)</strong> ist eine gute Wahl für Nah-, Regional- und Fernverkehr in Deutschland und (teilweise) Nachbarländern.
|
||
<strong>IRIS-TTS</strong> unterstützt ausschließlich Schienenverkehr; im Gegensatz zum HAFAS sind hier detaillierte Verspätungsgründe verfügbar.
|
||
Die restlichen Backends können sich für Fahrten außerhalb Deutschlands sowie in einzelnen innerdeutschen Verkehrsverbünden lohnen.
|
||
Fahrten im Ausland fehlen im DB-HAFAS oft; Fahrten im Inland können mit spezifischen Backends genauere Daten haben – z.B. liefert das AVV-HAFAS im Gegensatz zum DB-HAFAS Kartendaten für dortige Buslinien.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
%= form_for '/account/select_backend' => (method => 'POST') => begin
|
||
% if (stash('redirect_to')) {
|
||
%= hidden_field 'redirect_to' => stash('redirect_to')
|
||
% }
|
||
% for my $backend (@{ stash('backends') // [] }) {
|
||
<div class="row">
|
||
<div class="col s12 m4 l4 center-align">
|
||
<button class="btn waves-effect waves-light <%= $backend->{id} == $user->{backend_id} ? 'disabled' : q{} %>" type="submit" name="backend" value="<%= $backend->{id} %>">
|
||
<%= $backend->{name} %> (<%= $backend->{type} %>)
|
||
</button>
|
||
</div>
|
||
<div class="col s12 m8 l8">
|
||
% if ($backend->{longname}) {
|
||
<%= $backend->{longname} %>
|
||
% }
|
||
% if ($backend->{id} == $user->{backend_id}) {
|
||
(aktuell ausgewählt)
|
||
% }
|
||
</div>
|
||
</div>
|
||
% }
|
||
%= end
|