Initial import of Catalyst::Plugin::Authenticate::FTP, Catalyst::Plugin::Authenticate...
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Manual / Intro.pod
CommitLineData
fc7ec1d9 1=head1 NAME
2
3Catalyst::Manual::Intro - Introduction to Catalyst
4
5=head1 DESCRIPTION
6
72d9bfc7 7This is a brief overview of why and how to use Catalyst. It explains how Catalyst works and shows how to get a simple application up and running quickly.
fc7ec1d9 8
9=head2 What is Catalyst?
10
11Catalyst is an elegant web application framework, extremely flexible yet extremely simple. It's similar to Ruby on Rails, Spring (Java) and L<Maypole>, upon which it was originally based.
12
13=head3 MVC
14
72d9bfc7 15Catalyst follows the Model-View-Controller (MVC) design pattern, allowing you to easily separate concerns, like content, presentation, and flow control, into separate modules. This separation allows you to modify code that handles one concern without affecting code that handles the others. Catalyst promotes the re-use of existing Perl modules that already handle common web application concerns well.
fc7ec1d9 16
72d9bfc7 17Here's how the M, V, and C map to those concerns, with examples of well-known Perl modules you may want to use for each.
fc7ec1d9 18
19=over 4
20
4a6895ce 21=item * B<Model>
fc7ec1d9 22
23Access and modify content (data). L<Class::DBI>, L<Plucene>, L<Net::LDAP>...
24
4a6895ce 25=item * B<View>
fc7ec1d9 26
c42f5bbf 27Present content to the user. L<Template Toolkit|Template>, L<Mason|HTML::Mason>, L<HTML::Template>...
fc7ec1d9 28
4a6895ce 29=item * B<Controller>
fc7ec1d9 30
31Control the whole request phase, check parameters, dispatch actions, flow control. Catalyst!
32
33=back
34
cda8d1ac 35If you're unfamiliar with MVC and design patterns, you may want to check out the original book on the subject, I<Design Patterns>, by Gamma, Helm, Johson and Vlissides, also known as the Gang of Four (GoF). You can also just google it. Many, many web application frameworks are based on MVC, including all those listed above.
fc7ec1d9 36
37=head3 Flexibility
38
72d9bfc7 39Catalyst is much more flexible than many other frameworks. We'll talk more about this later, but rest assured you can use your favorite Perl modules with Catalyst.
fc7ec1d9 40
41=over 4
42
72d9bfc7 43=item * B<Multiple Models, Views, and Controllers>
fc7ec1d9 44
72d9bfc7 45To build a Catalyst application, you handle each type of concern inside special modules called L</Components>. Often this code will be very simple, just calling out to Perl modules like those listed above under L</MVC>. Catalyst handles these components in a very flexible way. Use as many Models, Views, and Controllers as you like, using as many different Perl modules as you like, all in the same application. Want to manipulate multiple databases, and retrieve some data via LDAP? No problem. Want to present data from the same Model using L<Template Toolkit|Template> and L<PDF::Template>? Easy.
fc7ec1d9 46
cda8d1ac 47=item * B<Reuseable Components>
fc7ec1d9 48
cda8d1ac 49Not only does Catalyst promote the re-use of already existing Perl modules, it also allows you to re-use your Catalyst components in multiple Catalyst applications.
fc7ec1d9 50
4a6895ce 51=item * B<Unrestrained URL-to-Action Dispatching>
fc7ec1d9 52
cda8d1ac 53Catalyst allows you to dispatch any URLs to any application L<Actions>, even through regular expressions! Unlike most other frameworks, it doesn't require mod_rewrite or class and method names in URLs.
fc7ec1d9 54
55With Catalyst you register your actions and address them directly. For example:
56
e3dc9d78 57 sub hello : Global {
fc7ec1d9 58 my ( $self, $context ) = @_;
59 $context->response->output('Hello World!');
5a8ed4fe 60 }
fc7ec1d9 61
62Now http://localhost:3000/hello prints "Hello World!".
63
4a6895ce 64=item * B<Support for CGI, mod_perl, Apache::Request>
fc7ec1d9 65
66Use L<Catalyst::Engine::Apache> or L<Catalyst::Engine::CGI>.
67
68=back
69
70=head3 Simplicity
71
72The best part is that Catalyst implements all this flexibility in a very simple way.
73
6f4e1683 74=over 4
75
4a6895ce 76=item * B<Building Block Interface>
fc7ec1d9 77
cda8d1ac 78Components interoperate very smoothly. For example, Catalyst automatically makes a L<Context> object available to every component. Via the context, you can access the request object, share data between components, and control the flow of your application. Building a Catalyst application feels a lot like snapping together toy building blocks, and everything just works.
fc7ec1d9 79
4a6895ce 80=item * B<Component Auto-Discovery>
fc7ec1d9 81
82No need to C<use> all of your components. Catalyst automatically finds and loads them.
83
4a6895ce 84=item * B<Pre-Built Components for Popular Modules>
fc7ec1d9 85
86See L<Catalyst::Model::CDBI> for L<Class::DBI>, or L<Catalyst::View::TT> for L<Template Toolkit|Template>. You can even get an instant web database front end with L<Catalyst::Model::CDBI::CRUD>.
87
72d9bfc7 88=item * B<Built-in Test Framework>
fc7ec1d9 89
72d9bfc7 90Catalyst comes with a built-in, lightweight http server and test framework, making it easy to test applications from the command line.
fc7ec1d9 91
4a6895ce 92=item * B<Helper Scripts>
fc7ec1d9 93
94Catalyst provides helper scripts to quickly generate running starter code for components and unit tests.
95
6f4e1683 96=back
97
fc7ec1d9 98=head2 Quickstart
99
100Here's how to install Catalyst and get a simple application up and running, using the helper scripts described above.
101
102=head3 Install
103
104 $ perl -MCPAN -e 'install Bundle::Catalyst'
105
106=head3 Setup
107
2feb6632 108 $ catalyst.pl MyApp
109 $ cd MyApp
91864987 110 $ script/create.pl controller My::Controller
fc7ec1d9 111
112=head3 Run
113
91864987 114 $ script/server.pl
fc7ec1d9 115
116Now visit these locations with your favorite browser or user agent to see Catalyst in action:
117
118=over 4
119
120=item http://localhost:3000/
121
bbcadec7 122=item http://localhost:3000/my/controller/
fc7ec1d9 123
124=back
125
126Dead easy!
127
128=head2 How It Works
129
130Let's see how Catalyst works, by taking a closer look at the components and other parts of a Catalyst application.
131
132=head3 Application Class
133
c42f5bbf 134In addition to the Model, View, and Controller components, there's a single class that represents your application itself. This is where you configure your application, load plugins, define application-wide actions, and extend Catalyst.
fc7ec1d9 135
136 package MyApp;
137
138 use strict;
139 use Catalyst qw/-Debug/;
140
141 MyApp->config(
142 name => 'My Application',
143 root => '/home/joeuser/myapp/root',
144
145 # You can put whatever you want in here:
146 # my_param_name => $my_param_value,
147 );
148
5a8ed4fe 149 sub default : Private {
fc7ec1d9 150 my ( $self, $context ) = @_;
151 $context->response->output('Catalyst rockz!');
5a8ed4fe 152 }
fc7ec1d9 153
154 1;
155
156For most applications, Catalyst requires you to define only two config parameters:
157
158=over 4
159
4a6895ce 160=item * B<name>
fc7ec1d9 161
162Name of your application.
163
4a6895ce 164=item * B<root>
fc7ec1d9 165
72d9bfc7 166Path to additional files such as templates, images, or other static data.
fc7ec1d9 167
168=back
169
4a6895ce 170However, you can define as many parameters as you want for plugins or whatever you need. You can access them anywhere in your application via C<$context-E<gt>config-E<gt>{$param_name}>.
fc7ec1d9 171
172=head3 Context
173
c42f5bbf 174Catalyst automatically blesses a Context object into your application class and makes it available everywhere in your application. Use the Context to directly interact with Catalyst and glue your L<Components> together. For example, if you need to use the Context from within a Template Toolkit template, it's already there:
175
176 <h1>Welcome to [% c.config.name %]!</h1>
fc7ec1d9 177
4a6895ce 178As illustrated earlier in our URL-to-Action dispatching example, the Context is always the second method parameter, behind the Component object reference or class name itself. Previously we called it C<$context> for clarity, but most Catalyst developers just call it C<$c>:
fc7ec1d9 179
e3dc9d78 180 sub hello : Global {
fc7ec1d9 181 my ( $self, $c ) = @_;
182 $c->res->output('Hello World!');
5a8ed4fe 183 }
fc7ec1d9 184
185The Context contains several important objects:
186
187=over 4
188
189=item * L<Catalyst::Request>
190
191 $c->request
192 $c->req # alias
193
72d9bfc7 194The request object contains all kinds of request-specific information, like query parameters, cookies, uploads, headers, and more.
fc7ec1d9 195
196 $c->req->params->{foo};
197 $c->req->cookies->{sessionid};
198 $c->req->headers->content_type;
199 $c->req->base;
200
afdca3a3 201=item * L<Catalyst::Response>
fc7ec1d9 202
203 $c->response
204 $c->res # alias
205
4a6895ce 206The response is like the request, but contains just response-specific information.
fc7ec1d9 207
208 $c->res->output('Hello World');
209 $c->res->status(404);
210 $c->res->redirect('http://oook.de');
211
212=item * L<Catalyst::Config>
213
214 $c->config
215
216 $c->config->root;
217 $c->config->name;
218
219=item * L<Catalyst::Log>
220
221 $c->log
222
223 $c->log->debug('Something happened');
224 $c->log->info('Something you should know');
225
4a6895ce 226=item * B<Stash>
fc7ec1d9 227
228 $c->stash
229
230 $c->stash->{foo} = 'bar';
231
232=back
233
4a6895ce 234The last of these, the stash, is a universal hash for sharing data among application components. For an example, we return to our 'hello' action:
fc7ec1d9 235
e3dc9d78 236 sub hello : Global {
5a8ed4fe 237 my ( $self, $c ) = @_;
238 $c->stash->{message} = 'Hello World!';
4c6807d2 239 $c->forward('show_message');
5a8ed4fe 240 }
fc7ec1d9 241
4c6807d2 242 sub show_message : Private {
5a8ed4fe 243 my ( $self, $c ) = @_;
244 $c->res->output( $c->stash->{message} );
245 }
fc7ec1d9 246
dd25a192 247Note that the stash should be used only for passing data in an individual request cycle; it gets cleared at a new request. If you need to maintain more persistent data, use a session.
248
fc7ec1d9 249=head3 Actions
250
72d9bfc7 251A Catalyst controller is defined by its actions. An action is
252a sub with a special attribute. You've already seen some
253examples of actions in this document.
cda8d1ac 254
255Catalyst supports several types of actions:
fc7ec1d9 256
257=over 4
258
4a6895ce 259=item * B<Literal>
fc7ec1d9 260
e3dc9d78 261 sub bar : Path('/foo/bar') { }
fc7ec1d9 262
263Matches only http://localhost:3000/foo/bar.
264
4a6895ce 265=item * B<Regex>
fc7ec1d9 266
cda8d1ac 267 sub bar : Regex('^foo(\d+)/bar(\d+)$') { }
fc7ec1d9 268
cda8d1ac 269Matches any URL that matches the pattern in the action key, e.g. http://localhost:3000/foo23/bar42. The '' around the regexp is optional, but perltidy likes it. :)
fc7ec1d9 270
72d9bfc7 271If you use capturing parentheses to extract values within the matching URL (23, 42 in the above example), those values are available in the $c->req->snippets array. If you want to pass arguments at the end of your URL, you must use regex action keys. See L</URL Argument Handling> below.
fc7ec1d9 272
72d9bfc7 273=item * B<Top-level>
cda8d1ac 274
275 package MyApp;
276 sub foo : Global { }
277
278Matches http://localhost:3000/foo. The function name is mapped
279directly to the application base.
280
4a6895ce 281=item * B<Namespace-Prefixed>
fc7ec1d9 282
2feb6632 283 package MyApp::C::My::Controller;
e3dc9d78 284 sub foo : Local { }
fc7ec1d9 285
cda8d1ac 286Matches http://localhost:3000/my/controller/foo.
fc7ec1d9 287
72d9bfc7 288This action type indicates that the matching URL must be prefixed with a modified form of the component's class (package) name. This modified class name excludes the parts that have a pre-defined meaning in Catalyst ("MyApp::C" in the above example), replaces "::" with "/", and converts the name to lower case. See L</Components> for a full explanation of the pre-defined meaning of Catalyst component class names.
fc7ec1d9 289
4a6895ce 290=item * B<Private>
fc7ec1d9 291
5a8ed4fe 292 sub foo : Private { }
fc7ec1d9 293
294Matches no URL, and cannot be executed by requesting a URL that corresponds to the action key. Private actions can be executed only inside a Catalyst application, by calling the C<forward> method:
295
5a8ed4fe 296 $c->forward('foo');
fc7ec1d9 297
298See L</Flow Control> for a full explanation of C<forward>.
299
300=back
301
72d9bfc7 302B<Note:> After seeing these examples, you probably wonder what the point is of defining names for regex and path actions. Actually, every public
303action is also a private one, so you have one unified way of addressing components in your C<forward>s.
cda8d1ac 304
72d9bfc7 305=head4 Built-in Private Actions
fc7ec1d9 306
72d9bfc7 307In response to specific application states, Catalyst will automatically call these built-in private actions:
fc7ec1d9 308
309=over 4
310
cda8d1ac 311=item * B<default : Private>
fc7ec1d9 312
313Called when no other action matches.
314
cda8d1ac 315=item * B<begin : Private>
fc7ec1d9 316
317Called at the beginning of a request, before any matching actions are called.
318
cda8d1ac 319=item * B<end : Private>
4a6895ce 320
321=back
fc7ec1d9 322
323Called at the end of a request, after all matching actions are called.
324
72d9bfc7 325=head4 B<Built-in actions in controllers/autochaining>
fc7ec1d9 326
cda8d1ac 327 Package MyApp::C::Foo;
328 sub begin : Private { }
5a8ed4fe 329 sub default : Private { }
fc7ec1d9 330
72d9bfc7 331You can define the Built-in Private Actions within your controllers as
80ef2e6d 332well. The actions will override the ones in lower level controllers/
333global.
334
72d9bfc7 335In addition to the normal built-ins, you have a special action for
336making inheritance chains, 'auto'. These will be run after C<begin>,
80ef2e6d 337but before your action is processed.
cda8d1ac 338
339=over 4
340
341=item for a request for /foo/foo
342
343 MyApp::begin
80ef2e6d 344 MyApp::auto
42a57832 345 MyApp::C::Foo::default
cda8d1ac 346 MyApp::end
347
348=item for a request for /foo/bar/foo
349
cda8d1ac 350 MyApp::C::Foo::Bar::begin
80ef2e6d 351 MyApp::auto
352 MyApp::C::Foo::auto
cda8d1ac 353 MyApp::C::Foo::Bar::default
354 MyApp::C::Foo::Bar::end
80ef2e6d 355
356=back
357
358Also, if you need to break out of the chain in one of your auto
359actions, you can return 0, if so, your action will not be processed,
360but the end will, so for the request above, if the first auto returns
361false, it would look like this:
362
363=over 4
364
365=item for a request for /foo/bar/foo where auto returns false
366
367 MyApp::C::Foo::Bar::begin
368 MyApp::auto
369 MyApp::C::Foo::Bar::end
cda8d1ac 370
371=back
4a6895ce 372
72d9bfc7 373B<Note:> auto actions have to return a true value to continue processing!
f32dff11 374You can also die in the autochain action, in that case,
03805733 375the request will go straight to the finalize stage, without processing
376further actions.
377
378
4a6895ce 379=head4 B<URL Argument Handling>
380
381If you want to pass variable arguments at the end of a URL, you must use regex actions keys with '^' and '$' anchors, and the arguments must be separated with forward slashes (/) in the URL. For example, suppose you want to handle /foo/$bar/$baz, where $bar and $baz may vary:
382
cda8d1ac 383 sub foo : Regex('^foo$') { my ($self, $context, $bar, $baz) = @_; }
4a6895ce 384
385But what if you also defined actions for /foo/boo and /foo/boo/hoo ?
386
e3dc9d78 387 sub boo : Path('/foo/boo') { .. }
388 sub hoo : Path('/foo/boo/hoo') { .. }
4a6895ce 389
390Catalyst matches actions in most specific to least specific order:
391
392 /foo/boo/hoo
393 /foo/boo
394 /foo # might be /foo/bar/baz
395
cda8d1ac 396So Catalyst would never mistakenly dispatch the first two URLs to the '^foo$' action.
fc7ec1d9 397
398=head3 Flow Control
399
cda8d1ac 400You control the application flow with the C<forward> method, which accepts the key of an action to execute.
fc7ec1d9 401
e3dc9d78 402 sub hello : Global {
5a8ed4fe 403 my ( $self, $c ) = @_;
404 $c->stash->{message} = 'Hello World!';
4c6807d2 405 $c->forward('check_message');
5a8ed4fe 406 }
fc7ec1d9 407
4c6807d2 408 sub check_message : Private {
5a8ed4fe 409 my ( $self, $c ) = @_;
410 return unless $c->stash->{message};
4c6807d2 411 $c->forward('show_message');
5a8ed4fe 412 }
fc7ec1d9 413
4c6807d2 414 sub show_message : Private {
5a8ed4fe 415 my ( $self, $c ) = @_;
416 $c->res->output( $c->stash->{message} );
417 }
cda8d1ac 418
72d9bfc7 419As you can see from these examples, you can just use the method name as long as you are referring to methods in the same controller. If you want to forward to a method in another controller, or the main application, you will have to refer to the method by absolute path.
cda8d1ac 420
421 $c->forward('/my/controller/action');
422 $c->forward('/default');
fc7ec1d9 423
424You can also forward to classes and methods.
425
e3dc9d78 426 sub hello : Global {
5a8ed4fe 427 my ( $self, $c ) = @_;
428 $c->forward(qw/MyApp::M::Hello say_hello/);
429 }
fc7ec1d9 430
e3dc9d78 431 sub bye : Global {
5a8ed4fe 432 my ( $self, $c ) = @_;
433 $c->forward('MyApp::M::Hello');
434 }
fc7ec1d9 435
436 package MyApp::M::Hello;
437
438 sub say_hello {
439 my ( $self, $c ) = @_;
440 $c->res->output('Hello World!');
441 }
442
443 sub process {
444 my ( $self, $c ) = @_;
445 $c->res->output('Goodbye World!');
446 }
447
cda8d1ac 448Note that C<forward> returns to the calling action and continues processing after the action finishes.
fc7ec1d9 449Catalyst will automatically try to call process() if you omit the method.
450
451=head3 Components
452
72d9bfc7 453Catalyst has an uncommonly flexible component system. You can define as many L<Models>, L<Views>, and L<Controllers> as you like.
fc7ec1d9 454
4a6895ce 455All components must inherit from L<Catalyst::Base>, which provides a simple class structure and some common class methods like C<config> and C<new> (constructor).
fc7ec1d9 456
2feb6632 457 package MyApp::C::MyController;
fc7ec1d9 458
459 use strict;
460 use base 'Catalyst::Base';
461
462 __PACKAGE__->config( foo => 'bar' );
463
464 1;
465
72d9bfc7 466You don't have to C<use> or otherwise register Models, Views, and Controllers. Catalyst automatically discovers and instantiates them when you call C<setup> in the main application. All you need to do is put them in directories named for each Component type. Notice that you can use some very terse aliases for each one.
fc7ec1d9 467
468=over 4
469
4a6895ce 470=item * B<MyApp/Model/>
fc7ec1d9 471
4a6895ce 472=item * B<MyApp/M/>
fc7ec1d9 473
4a6895ce 474=item * B<MyApp/View/>
fc7ec1d9 475
4a6895ce 476=item * B<MyApp/V/>
fc7ec1d9 477
4a6895ce 478=item * B<MyApp/Controller/>
fc7ec1d9 479
4a6895ce 480=item * B<MyApp/C/>
fc7ec1d9 481
482=back
483
484=head4 Views
485
486To show how to define views, we'll use an already-existing base class for the L<Template Toolkit|Template>, L<Catalyst::View::TT>. All we need to do is inherit from this class:
487
488 package MyApp::V::TT;
489
490 use strict;
491 use base 'Catalyst::View::TT';
492
493 1;
494
495This gives us a process() method and we can now just do $c->forward('MyApp::V::TT') to render our templates. The base class makes process() implicit, so we don't have to say C<$c-E<gt>forward(qw/MyApp::V::TT process/)>.
496
e3dc9d78 497 sub hello : Global {
5a8ed4fe 498 my ( $self, $c ) = @_;
499 $c->stash->{template} = 'hello.tt';
500 }
fc7ec1d9 501
5a8ed4fe 502 sub end : Private {
503 my ( $self, $c ) = @_;
2feb6632 504 $c->forward('MyApp::V::TT');
5a8ed4fe 505 }
fc7ec1d9 506
72d9bfc7 507You normally render templates at the end of a request, so it's a perfect use for the global C<end> action.
fc7ec1d9 508
ba120856 509Also, be sure to put the template under the directory specified in C<$c-E<gt>config-E<gt>{root}>, or you'll be forced to look at our eyecandy debug screen. ;)
fc7ec1d9 510
511=head4 Models
512
513To show how to define models, again we'll use an already-existing base class, this time for L<Class::DBI>: L<Catalyst::Model::CDBI>.
514
515But first, we need a database.
516
517 -- myapp.sql
518 CREATE TABLE foo (
519 id INTEGER PRIMARY KEY,
520 data TEXT
521 );
522
523 CREATE TABLE bar (
524 id INTEGER PRIMARY KEY,
525 foo INTEGER REFERENCES foo,
526 data TEXT
527 );
528
529 INSERT INTO foo (data) VALUES ('TEST!');
530
531
532 % sqlite /tmp/myapp.db < myapp.sql
533
534Now we can create a CDBI component for this database.
535
536 package MyApp::M::CDBI;
537
538 use strict;
539 use base 'Catalyst::Model::CDBI';
540
541 __PACKAGE__->config(
542 dsn => 'dbi:SQLite:/tmp/myapp.db',
543 relationships => 1
544 );
545
546 1;
547
548Catalyst automatically loads table layouts and relationships. Use the stash to pass data to your templates.
549
550 package MyApp;
551
552 use strict;
553 use Catalyst '-Debug';
554
555 __PACKAGE__->config(
556 name => 'My Application',
557 root => '/home/joeuser/myapp/root'
558 );
cda8d1ac 559
560 __PACKAGE__->setup;
fc7ec1d9 561
5a8ed4fe 562 sub end : Private {
563 my ( $self, $c ) = @_;
564 $c->stash->{template} ||= 'index.tt';
565 $c->forward('MyApp::V::TT');
566 }
fc7ec1d9 567
e3dc9d78 568 sub view : Global {
5a8ed4fe 569 my ( $self, $c, $id ) = @_;
570 $c->stash->{item} = MyApp::M::CDBI::Foo->retrieve($id);
571 }
fc7ec1d9 572
573 1;
574
575 The id is [% item.data %]
576
577=head4 Controllers
578
72d9bfc7 579Multiple controllers are a good way to separate logical domains of your application.
fc7ec1d9 580
581 package MyApp::C::Login;
582
72d9bfc7 583 sign-in : Local { }
584 new-password : Local { }
585 sign-out : Local { }
fc7ec1d9 586
587 package MyApp::C::Catalog;
588
e3dc9d78 589 sub view : Local { }
590 sub list : Local { }
fc7ec1d9 591
592 package MyApp::C::Cart;
593
e3dc9d78 594 sub add : Local { }
595 sub update : Local { }
596 sub order : Local { }
fc7ec1d9 597
598=head3 Testing
599
72d9bfc7 600Catalyst has a built-in http server for testing! (Later, you can easily use a more powerful server, e.g. Apache/mod_perl, in a production environment.)
fc7ec1d9 601
602Start your application on the command line...
603
fd0b84fe 604 script/server.pl
fc7ec1d9 605
606...then visit http://localhost:3000/ in a browser to view the output.
607
608You can also do it all from the command line:
609
fd0b84fe 610 script/test.pl http://localhost/
fc7ec1d9 611
612Have fun!
613
3cb1db8c 614=head1 SUPPORT
615
616IRC:
617
618 Join #catalyst on irc.perl.org.
619
72d9bfc7 620Mailing-lists:
3cb1db8c 621
622 http://lists.rawmode.org/mailman/listinfo/catalyst
623 http://lists.rawmode.org/mailman/listinfo/catalyst-dev
624
fc7ec1d9 625=head1 AUTHOR
626
cda8d1ac 627Sebastian Riedel, C<sri@oook.de>
628David Naughton, C<naughton@umn.edu>
629Marcus Ramberg, C<mramberg@cpan.org>
f531dd37 630Jesse Sheidlower, C<jester@panix.com>
fc7ec1d9 631
632=head1 COPYRIGHT
633
634This program is free software, you can redistribute it and/or modify it under
635the same terms as Perl itself.