summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-05-23 09:21:38 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-05-23 09:21:38 +0200
commitb53f3398eaf581b9029b688428bc75fcb0648594 (patch)
tree0bfa0019f0b295a61e103baba3bf4694b17d0ae2 /lib
parentc2190255f0c25118c118583c8555a9f5cecd948d (diff)
Rename to Net::Travel::DE::VRR
Diffstat (limited to 'lib')
-rw-r--r--lib/Net/Travel/DE/VRR.pm (renamed from lib/WWW/Efa.pm)16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/WWW/Efa.pm b/lib/Net/Travel/DE/VRR.pm
index 99c3181..5d330fd 100644
--- a/lib/WWW/Efa.pm
+++ b/lib/Net/Travel/DE/VRR.pm
@@ -1,4 +1,4 @@
-package WWW::Efa;
+package Net::Travel::DE::VRR;
use strict;
use warnings;
@@ -482,13 +482,13 @@ __END__
=head1 NAME
-WWW::Efa - inofficial interface to the efa.vrr.de German itinerary service
+Net::Travel::DE::VRR - inofficial interface to the efa.vrr.de German itinerary service
=head1 SYNOPSIS
- use WWW::Efa;
+ use Net::Travel::DE::VRR;
- my $efa = WWW::Efa->new(
+ my $efa = Net::Travel::DE::VRR->new(
from => ['Essen', 'HBf'],
to => ['Duisburg', 'HBf'],
);
@@ -513,7 +513,7 @@ version 1.3
=head1 DESCRIPTION
-B<WWW::Efa> is a client for the efa.vrr.de web interface.
+B<Net::Travel::DE::VRR> is a client for the efa.vrr.de web interface.
You pass it the start/stop of your journey, maybe a time and a date and more
details, and it returns the up-to-date scheduled connections between those two
stops.
@@ -524,9 +524,9 @@ It uses B<LWP::USerAgent> and B<XML::LibXML> for this.
=over
-=item $efa = WWW::Efa->new(I<%conf>)
+=item $efa = Net::Travel::DE::VRR->new(I<%conf>)
-Returns a new WWW::Efa object and sets up its POST data via %conf.
+Returns a new Net::Travel::DE::VRR object and sets up its POST data via %conf.
Valid hash keys and their values are:
@@ -652,7 +652,7 @@ Dies with a backtrace when anything goes wrong.
The parser is still somewhat fragile and has no proper error handling.
-It is best not to pass Unicode characters to B<WWW::Efa>.
+It is best not to pass Unicode characters to B<Net::Travel::DE::VRR>.
=head1 AUTHOR