summaryrefslogtreecommitdiff
path: root/scripts/acronyms.pl
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2014-01-02 05:41:37 +0100
committerDaniel Friesel <derf@finalrewind.org>2014-01-02 05:41:37 +0100
commitba7a15a58d52b6f737dc574e0a76a58d14883687 (patch)
tree2701d19ea99d7be3822027ec1a7e31f9fe6a1944 /scripts/acronyms.pl
parentd1b57191186970b3d699cd5b51e9bed4130af3b4 (diff)
rename Travel::Status::DE::IRIS::{Acronyms -> Stations}
Diffstat (limited to 'scripts/acronyms.pl')
-rwxr-xr-xscripts/acronyms.pl18
1 files changed, 9 insertions, 9 deletions
diff --git a/scripts/acronyms.pl b/scripts/acronyms.pl
index b81184a..9d55b3f 100755
--- a/scripts/acronyms.pl
+++ b/scripts/acronyms.pl
@@ -13,7 +13,7 @@ my $re_line = qr{
}x;
say <<'EOF';
-package Travel::Status::DE::IRIS::Acronyms;
+package Travel::Status::DE::IRIS::Stations;
use strict;
use warnings;
@@ -24,38 +24,38 @@ use List::MoreUtils qw(firstval);
our $VERSION = '0.00';
-my @acronyms = (
+my @stations = (
EOF
while (my $line = <STDIN>) {
chomp $line;
if ($line =~ $re_line) {
- my ($acronym, $name) = @+{qw{acronym name}};
+ my ($station, $name) = @+{qw{acronym name}};
$name =~ s{'}{\\'}g;
- printf("\t['%s','%s'],\n", $acronym, $name);
+ printf("\t['%s','%s'],\n", $station, $name);
}
}
say <<'EOF';
);
-sub get_acronyms {
- return @acronyms;
+sub get_stations {
+ return @stations;
}
-sub get_acronym_by_name {
+sub get_station_by_name {
my ( $name ) = @_;
my $nname = lc($name);
- my $actual_match = firstval { $nname eq lc($_->[1]) } @acronyms;
+ my $actual_match = firstval { $nname eq lc($_->[1]) } @stations;
if ($actual_match) {
return ($actual_match);
}
- return ( grep { $_->[1] =~ m{$name}i } @acronyms );
+ return ( grep { $_->[1] =~ m{$name}i } @stations );
}
1;