diff options
Diffstat (limited to 'cgi/index.pl')
-rw-r--r-- | cgi/index.pl | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/cgi/index.pl b/cgi/index.pl index 92197b1..27aafd0 100644 --- a/cgi/index.pl +++ b/cgi/index.pl @@ -93,7 +93,9 @@ sub handle_request { city => $city, stop => $stop, version => $VERSION, - title => "departures for ${city} ${stop}", + title => $city + ? "departures for ${city} ${stop}" + : "vrr-fakedisplay ${VERSION}", ); } @@ -301,10 +303,10 @@ get '/:city/:stop' => \&handle_request; app->config( hypnotoad => { - accepts => 10, - listen => ['http://*:8091'], + accepts => 10, + listen => ['http://*:8091'], pid_file => '/tmp/vrr-fake.pid', - workers => 2, + workers => 2, }, ); @@ -383,8 +385,8 @@ the Lumino LED displays used at some stops. </p> <p> -It was written for the VRR (Verkehrsverbund Rhein-Ruhr), but supports most other -local transit networks as well. +It works best for the VRR (Verkehrsverbund Rhein-Ruhr), but also supports most +other German transit networks. </p> % } @@ -443,7 +445,7 @@ local transit networks as well. <li>For Düsseldorf, the DB backend usually gives better results</li> <li>If you write the city correctly (like "Essen", not "essen"), vrr-fake can shorten destination names</li> -<li><a href="/vrr-fake/Düsseldorf/Luisenstr?no_lines=8&backend=db">Example</a> +<li><a href="/Essen/Martinstr?no_lines=8">Example</a> </li> </ul> </div> <!-- notes --> |