From 234486663dbe1712c10888121d9bf38c4cbd2cc8 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 21 Mar 2021 08:19:33 +0100 Subject: add preliminary support for station-independent train details --- lib/DBInfoscreen.pm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lib/DBInfoscreen.pm') diff --git a/lib/DBInfoscreen.pm b/lib/DBInfoscreen.pm index bf18be2..4445d7f 100644 --- a/lib/DBInfoscreen.pm +++ b/lib/DBInfoscreen.pm @@ -40,8 +40,8 @@ sub startup { workers => $ENV{DBFAKEDISPLAY_WORKERS} // 2, }, source_url => 'https://github.com/derf/db-fakedisplay', - issue_url => 'https://github.com/derf/db-fakedisplay/issues', - version => $ENV{DBFAKEDISPLAY_VERSION} // qx{git describe --dirty} + issue_url => 'https://github.com/derf/db-fakedisplay/issues', + version => $ENV{DBFAKEDISPLAY_VERSION} // qx{git describe --dirty} // '???', ); @@ -364,7 +364,8 @@ sub startup { $r->get('/_ajax_mapinfo/:tripid/:lineno')->to('map#ajax_route'); $r->get('/map/:tripid/:lineno')->to('map#route'); $r->get('/intersection/:trips')->to('map#intersection'); - $r->get('/z/:train/:station')->to('stationboard#train_details'); + $r->get('/z/:train/:station')->to('stationboard#station_train_details'); + $r->get('/z/:train')->to('stationboard#train_details'); $r->get('/map')->to('map#search_form'); $r->get('/_trainsearch')->to('map#search'); -- cgit v1.2.3