summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2015-06-19 20:52:05 +0200
committerDaniel Friesel <derf@finalrewind.org>2015-06-19 20:52:05 +0200
commit4522e465111e856a3911c47a54eb51f52e05e587 (patch)
tree72e1e8fe81f2389bd85d63324e9948c0bcc4d8d1
parent590b7d4c594e6f8e67fa32cff60bf6e673fcb3f0 (diff)
extend ignore-info defaults
todo: automatically remove Fahrradmitnahme when --bike is present, and at some kind of wheelchair support to remove Einstiegshilfe and also enable related EFA options (not supported by the library yet)
-rw-r--r--Changelog2
-rwxr-xr-xbin/efa2
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog b/Changelog
index 43f3c7d..7c538fa 100644
--- a/Changelog
+++ b/Changelog
@@ -8,6 +8,8 @@ git HEAD
* efa: Show current route information provided by the EFA backend, such
as cancelled stops or diversions.
* efa -E: Show transfer walking duration when available
+ * efa: Extend --ignore-info default (this option will probably be
+ overhauled in a future release)
Travel::Routing::DE::VRR 2.11 - Sun Jun 14 2015
diff --git a/bin/efa b/bin/efa
index c69d8ab..7af6e36 100755
--- a/bin/efa
+++ b/bin/efa
@@ -17,7 +17,7 @@ use Getopt::Long qw/:config no_ignore_case/;
use List::Util qw(first);
our $VERSION = '2.11';
-my $ignore_info = 'Fahrradmitnahme';
+my $ignore_info = 'Fahrradmitnahme|Einstiegshilfe';
my $efa;
my $efa_url = 'http://efa.vrr.de/vrr/XSLT_TRIP_REQUEST2';
my ( @from, @to, @via, $from_type, $to_type, $via_type );