summaryrefslogtreecommitdiff
path: root/index.pl
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2015-05-20 06:28:58 +0200
committerDaniel Friesel <derf@finalrewind.org>2015-05-20 06:28:58 +0200
commita300fcdacd9296a13e293f15d047b94dd7f55bed (patch)
tree3c1170da84b598bae25c0cc2c8738fade5565131 /index.pl
parent5572c4b69fb7dc6afc8447eeb71950ab13f7f218 (diff)
change default backend mode to infoscreen with iris backend as well
Diffstat (limited to 'index.pl')
-rw-r--r--index.pl16
1 files changed, 6 insertions, 10 deletions
diff --git a/index.pl b/index.pl
index b03f312..bc52561 100644
--- a/index.pl
+++ b/index.pl
@@ -81,11 +81,11 @@ sub handle_request {
my @platforms = split( /,/, $self->param('platforms') // q{} );
my @lines = split( /,/, $self->param('lines') // q{} );
- my $template = $self->param('mode') // 'multi';
+ my $template = $self->param('mode') // 'clean';
my $hide_low_delay = $self->param('hidelowdelay') // 0;
my $hide_opts = $self->param('hide_opts') // 0;
my $show_realtime = $self->param('show_realtime') // 0;
- my $backend = $self->param('backend') // 'ris';
+ my $backend = $self->param('backend') // 'iris';
my $admode = $self->param('admode') // 'deparr';
my $callback = $self->param('callback');
my $apiver = $self->param('version') // 0;
@@ -102,12 +102,12 @@ sub handle_request {
if ( not( $template ~~ [qw[clean json marudor_v1 marudor multi single]] ) )
{
- $template = 'multi';
+ $template = 'clean';
}
if ( not $station ) {
$self->render(
- $template,
+ 'landingpage',
hide_opts => 0,
show_intro => 1
);
@@ -191,7 +191,7 @@ sub handle_request {
or ( @candidates == 1 and $candidates[0][1] ne $station ) )
{
$self->render(
- 'multi',
+ 'landingpage',
stationlist => \@candidates,
hide_opts => 0
);
@@ -199,7 +199,7 @@ sub handle_request {
}
}
$self->render(
- 'multi',
+ 'landingpage',
error => ( $errstr // "Got no results for '$station'" ),
hide_opts => 0
);
@@ -625,10 +625,6 @@ get '/_redirect' => sub {
$params->remove('station');
$params->remove('via');
- if ( $params->param('mode') and $params->param('mode') eq 'multi' ) {
- $params->remove('mode');
- }
-
for my $param (qw(platforms)) {
if ( not $params->param($param) ) {
$params->remove($param);