Skip to content
Commits on Source (2)
......@@ -2551,18 +2551,18 @@ DISTRIBUTIONS
Test::Pod 0
Travel::Status::DE::IRIS 1.2
perl v5.20.0
Travel-Status-DE-DeutscheBahn-5.06
pathname: D/DE/DERF/Travel-Status-DE-DeutscheBahn-5.06.tar.gz
provides:
Travel::Status::DE::DeutscheBahn 5.06
Travel::Status::DE::HAFAS 5.06
Travel::Status::DE::HAFAS::Journey 5.06
Travel::Status::DE::HAFAS::Location 5.06
Travel::Status::DE::HAFAS::Message 5.06
Travel::Status::DE::HAFAS::Polyline 5.06
Travel::Status::DE::HAFAS::Product 5.06
Travel::Status::DE::HAFAS::Stop 5.06
Travel::Status::DE::HAFAS::StopFinder 5.06
Travel-Status-DE-DeutscheBahn-6.00
pathname: D/DE/DERF/Travel-Status-DE-DeutscheBahn-6.00.tar.gz
provides:
Travel::Status::DE::DeutscheBahn 6.00
Travel::Status::DE::HAFAS 6.00
Travel::Status::DE::HAFAS::Journey 6.00
Travel::Status::DE::HAFAS::Location 6.00
Travel::Status::DE::HAFAS::Message 6.00
Travel::Status::DE::HAFAS::Polyline 6.00
Travel::Status::DE::HAFAS::Product 6.00
Travel::Status::DE::HAFAS::Stop 6.00
Travel::Status::DE::HAFAS::StopFinder 6.00
requirements:
Carp 0
Class::Accessor 0.16
......
......@@ -93,7 +93,7 @@
<div class="row">
<div class="col s4 center-align">
% if ($hafas) {
<a class="btn-small" href="<%= url_for('sstation', station => stash('station'))->query({hafas => 1, timestamp => $datetime->clone->subtract(hours => 1)->epoch}) %>"><i class="material-icons left" aria-hidden="true">chevron_left</i><span class="hide-on-small-only">früher</span></a>
<a class="btn-small" href="<%= url_for('sstation', station => param('station'))->query({hafas => 1, timestamp => $datetime->clone->subtract(hours => 1)->epoch}) %>"><i class="material-icons left" aria-hidden="true">chevron_left</i><span class="hide-on-small-only">früher</span></a>
% }
</div>
<div class="col s4 center-align">
......@@ -103,7 +103,7 @@
</div>
<div class="col s4 center-align">
% if ($hafas) {
<a class="btn-small" href="<%= url_for('sstation', station => stash('station'))->query({hafas => 1, timestamp => $datetime->clone->add(hours => 1)->epoch}) %>"><span class="hide-on-small-only">später</span><i class="material-icons right" aria-hidden="true">chevron_right</i></a>
<a class="btn-small" href="<%= url_for('sstation', station => param('station'))->query({hafas => 1, timestamp => $datetime->clone->add(hours => 1)->epoch}) %>"><span class="hide-on-small-only">später</span><i class="material-icons right" aria-hidden="true">chevron_right</i></a>
% }
</div>
</div>
......