Localise execeptions
[catagits/Catalyst-View-TT.git] / lib / Catalyst / View / TT.pm
CommitLineData
8077080c 1package Catalyst::View::TT;
2
3use strict;
6229ce0d 4use warnings;
5
7d8aa5ec 6use base qw/Catalyst::View/;
9e739e1e 7use Data::Dump 'dump';
8077080c 8use Template;
9use Template::Timer;
e8693f1b 10use MRO::Compat;
8077080c 11
ebba23fa 12our $VERSION = '0.32';
8077080c 13
14__PACKAGE__->mk_accessors('template');
e2bbd784 15__PACKAGE__->mk_accessors('include_path');
8077080c 16
9d574573 17*paths = \&include_path;
18
8077080c 19=head1 NAME
20
21Catalyst::View::TT - Template View Class
22
23=head1 SYNOPSIS
24
bd4ee63a 25# use the helper to create your View
ad50568f 26
722fede4 27 myapp_create.pl view TT TT
8077080c 28
6175bba7 29# configure in lib/MyApp.pm (Could be set from configfile instead)
8cd017a8 30
ae035767 31 MyApp->config(
8cd017a8 32 name => 'MyApp',
e1c15a53 33 root => MyApp->path_to('root'),
ae035767 34 'View::TT' => {
8cd017a8 35 # any TT configurations items go here
36 INCLUDE_PATH => [
f5b61ad7 37 MyApp->path_to( 'root', 'src' ),
38 MyApp->path_to( 'root', 'lib' ),
8cd017a8 39 ],
6175bba7 40 TEMPLATE_EXTENSION => '.tt',
41 CATALYST_VAR => 'c',
42 TIMER => 0,
43 # Not set by default
07571b2f 44 PRE_PROCESS => 'config/main',
45 WRAPPER => 'site/wrapper',
8cd017a8 46 },
ae035767 47 );
f5b61ad7 48
6229ce0d 49# render view from lib/MyApp.pm or lib/MyApp::Controller::SomeController.pm
f5b61ad7 50
8cd017a8 51 sub message : Global {
94b3529a 52 my ( $self, $c ) = @_;
53 $c->stash->{template} = 'message.tt2';
54 $c->stash->{message} = 'Hello World!';
c18eae32 55 $c->forward( $c->view('TT') );
8cd017a8 56 }
8077080c 57
8cd017a8 58# access variables from template
59
60 The message is: [% message %].
f5b61ad7 61
8cd017a8 62 # example when CATALYST_VAR is set to 'Catalyst'
f5b61ad7 63 Context is [% Catalyst %]
64 The base is [% Catalyst.req.base %]
65 The name is [% Catalyst.config.name %]
66
8cd017a8 67 # example when CATALYST_VAR isn't set
68 Context is [% c %]
69 The base is [% base %]
70 The name is [% name %]
71
bd4ee63a 72=cut
73
74sub _coerce_paths {
75 my ( $paths, $dlim ) = shift;
76 return () if ( !$paths );
77 return @{$paths} if ( ref $paths eq 'ARRAY' );
78
79 # tweak delim to ignore C:/
80 unless ( defined $dlim ) {
81 $dlim = ( $^O eq 'MSWin32' ) ? ':(?!\\/)' : ':';
82 }
83 return split( /$dlim/, $paths );
84}
85
86sub new {
87 my ( $class, $c, $arguments ) = @_;
88 my $config = {
89 EVAL_PERL => 0,
90 TEMPLATE_EXTENSION => '',
91 %{ $class->config },
92 %{$arguments},
93 };
94 if ( ! (ref $config->{INCLUDE_PATH} eq 'ARRAY') ) {
95 my $delim = $config->{DELIMITER};
96 my @include_path
97 = _coerce_paths( $config->{INCLUDE_PATH}, $delim );
98 if ( !@include_path ) {
99 my $root = $c->config->{root};
100 my $base = Path::Class::dir( $root, 'base' );
101 @include_path = ( "$root", "$base" );
102 }
103 $config->{INCLUDE_PATH} = \@include_path;
104 }
105
106 # if we're debugging and/or the TIMER option is set, then we install
107 # Template::Timer as a custom CONTEXT object, but only if we haven't
108 # already got a custom CONTEXT defined
109
110 if ( $config->{TIMER} ) {
111 if ( $config->{CONTEXT} ) {
112 $c->log->error(
113 'Cannot use Template::Timer - a TT CONTEXT is already defined'
114 );
115 }
116 else {
117 $config->{CONTEXT} = Template::Timer->new(%$config);
118 }
119 }
120
121 if ( $c->debug && $config->{DUMP_CONFIG} ) {
9e739e1e 122 $c->log->debug( "TT Config: ", dump($config) );
bd4ee63a 123 }
6175bba7 124
e8693f1b 125 my $self = $class->next::method(
f5b61ad7 126 $c, { %$config },
6175bba7 127 );
128
129 # Set base include paths. Local'd in render if needed
130 $self->include_path($config->{INCLUDE_PATH});
f5b61ad7 131
6175bba7 132 $self->config($config);
133
134 # Creation of template outside of call to new so that we can pass [ $self ]
135 # as INCLUDE_PATH config item, which then gets ->paths() called to get list
136 # of include paths to search for templates.
f5b61ad7 137
6175bba7 138 # Use a weakend copy of self so we dont have loops preventing GC from working
139 my $copy = $self;
140 Scalar::Util::weaken($copy);
141 $config->{INCLUDE_PATH} = [ sub { $copy->paths } ];
142
bd4ee63a 143 if ( $config->{PROVIDERS} ) {
144 my @providers = ();
145 if ( ref($config->{PROVIDERS}) eq 'ARRAY') {
146 foreach my $p (@{$config->{PROVIDERS}}) {
147 my $pname = $p->{name};
148 my $prov = 'Template::Provider';
149 if($pname eq '_file_')
150 {
151 $p->{args} = { %$config };
152 }
153 else
154 {
51199593 155 if($pname =~ s/^\+//) {
156 $prov = $pname;
157 }
158 else
159 {
160 $prov .= "::$pname";
161 }
6175bba7 162 # We copy the args people want from the config
163 # to the args
164 $p->{args} ||= {};
165 if ($p->{copy_config}) {
166 map { $p->{args}->{$_} = $config->{$_} }
167 grep { exists $config->{$_} }
168 @{ $p->{copy_config} };
169 }
bd4ee63a 170 }
fc0ffed0 171 local $@;
bd4ee63a 172 eval "require $prov";
173 if(!$@) {
174 push @providers, "$prov"->new($p->{args});
175 }
176 else
177 {
178 $c->log->warn("Can't load $prov, ($@)");
179 }
180 }
181 }
182 delete $config->{PROVIDERS};
183 if(@providers) {
184 $config->{LOAD_TEMPLATES} = \@providers;
185 }
186 }
f5b61ad7 187
188 $self->{template} =
bd4ee63a 189 Template->new($config) || do {
190 my $error = Template->error();
191 $c->log->error($error);
192 $c->error($error);
193 return undef;
194 };
195
196
197 return $self;
198}
199
200sub process {
201 my ( $self, $c ) = @_;
202
203 my $template = $c->stash->{template}
204 || $c->action . $self->config->{TEMPLATE_EXTENSION};
205
206 unless (defined $template) {
207 $c->log->debug('No template specified for rendering') if $c->debug;
208 return 0;
209 }
210
fc0ffed0 211 local $@;
cad820fe 212 my $output = eval { $self->render($c, $template) };
213 if (my $err = $@) {
214 my $error = qq/Couldn't render template "$template"/;
bd4ee63a 215 $c->log->error($error);
216 $c->error($error);
217 return 0;
218 }
219
220 unless ( $c->response->content_type ) {
221 $c->response->content_type('text/html; charset=utf-8');
222 }
223
224 $c->response->body($output);
225
226 return 1;
227}
228
229sub render {
230 my ($self, $c, $template, $args) = @_;
231
cbb149dc 232 $c->log->debug(qq/Rendering template "$template"/) if $c && $c->debug;
bd4ee63a 233
234 my $output;
f5b61ad7 235 my $vars = {
bd4ee63a 236 (ref $args eq 'HASH' ? %$args : %{ $c->stash() }),
237 $self->template_vars($c)
238 };
239
f5b61ad7 240 local $self->{include_path} =
bd4ee63a 241 [ @{ $vars->{additional_template_paths} }, @{ $self->{include_path} } ]
242 if ref $vars->{additional_template_paths};
243
cad820fe 244 $self->template->process( $template, $vars, \$output )
245 or die $self->template->error;
246 return $output;
bd4ee63a 247}
248
249sub template_vars {
250 my ( $self, $c ) = @_;
251
cbb149dc 252 return () unless $c;
bd4ee63a 253 my $cvar = $self->config->{CATALYST_VAR};
254
255 defined $cvar
256 ? ( $cvar => $c )
257 : (
258 c => $c,
259 base => $c->req->base,
260 name => $c->config->{name}
261 )
262}
263
264
2651;
266
267__END__
268
8cd017a8 269=head1 DESCRIPTION
270
271This is the Catalyst view class for the L<Template Toolkit|Template>.
272Your application should defined a view class which is a subclass of
273this module. The easiest way to achieve this is using the
274F<myapp_create.pl> script (where F<myapp> should be replaced with
275whatever your application is called). This script is created as part
276of the Catalyst setup.
277
278 $ script/myapp_create.pl view TT TT
279
6229ce0d 280This creates a MyApp::View::TT.pm module in the F<lib> directory (again,
8cd017a8 281replacing C<MyApp> with the name of your application) which looks
282something like this:
283
6229ce0d 284 package FooBar::View::TT;
f5b61ad7 285
8cd017a8 286 use strict;
c18eae32 287 use warnings;
f5b61ad7 288
c18eae32 289 use base 'Catalyst::View::TT';
8077080c 290
a1b7968f 291 __PACKAGE__->config(DEBUG => 'all');
8077080c 292
8cd017a8 293Now you can modify your action handlers in the main application and/or
294controllers to forward to your view class. You might choose to do this
295in the end() method, for example, to automatically forward all actions
296to the TT view class.
722fede4 297
8cd017a8 298 # In MyApp or MyApp::Controller::SomeController
f5b61ad7 299
8cd017a8 300 sub end : Private {
94b3529a 301 my( $self, $c ) = @_;
c18eae32 302 $c->forward( $c->view('TT') );
8cd017a8 303 }
8077080c 304
2844488f 305But if you are using the standard auto-generated end action, you don't even need
306to do this!
307
308 # in MyApp::Controller::Root
309 sub end : ActionClass('RenderView') {} # no need to change this line
310
311 # in MyApp.pm
312 __PACKAGE__->config(
313 ...
314 default_view => 'TT',
315 );
316
317This will Just Work. And it has the advantages that:
318
319=over 4
320
321=item *
322
323If you want to use a different view for a given request, just set
324<< $c->stash->{current_view} >>. (See L<Catalyst>'s C<< $c->view >> method
325for details.
326
327=item *
328
329<< $c->res->redirect >> is handled by default. If you just forward to
330C<View::TT> in your C<end> routine, you could break this by sending additional
331content.
332
333=back
334
335See L<Catalyst::Action::RenderView> for more details.
336
8cd017a8 337=head2 CONFIGURATION
4687ac0d 338
8cd017a8 339There are a three different ways to configure your view class. The
340first way is to call the C<config()> method in the view subclass. This
341happens when the module is first loaded.
8077080c 342
6229ce0d 343 package MyApp::View::TT;
f5b61ad7 344
8cd017a8 345 use strict;
346 use base 'Catalyst::View::TT';
722fede4 347
6229ce0d 348 MyApp::View::TT->config({
7d8aa5ec 349 INCLUDE_PATH => [
350 MyApp->path_to( 'root', 'templates', 'lib' ),
351 MyApp->path_to( 'root', 'templates', 'src' ),
352 ],
8cd017a8 353 PRE_PROCESS => 'config/main',
354 WRAPPER => 'site/wrapper',
355 });
356
357The second way is to define a C<new()> method in your view subclass.
358This performs the configuration when the view object is created,
359shortly after being loaded. Remember to delegate to the base class
e8693f1b 360C<new()> method (via C<$self-E<gt>next::method()> in the example below) after
8cd017a8 361performing any configuration.
362
363 sub new {
364 my $self = shift;
365 $self->config({
7d8aa5ec 366 INCLUDE_PATH => [
367 MyApp->path_to( 'root', 'templates', 'lib' ),
368 MyApp->path_to( 'root', 'templates', 'src' ),
369 ],
8cd017a8 370 PRE_PROCESS => 'config/main',
371 WRAPPER => 'site/wrapper',
372 });
e8693f1b 373 return $self->next::method(@_);
8cd017a8 374 }
f5b61ad7 375
94b3529a 376The final, and perhaps most direct way, is to define a class
8cd017a8 377item in your main application configuration, again by calling the
ad50568f 378ubiquitous C<config()> method. The items in the class hash are
8cd017a8 379added to those already defined by the above two methods. This happens
380in the base class new() method (which is one reason why you must
f5b61ad7 381remember to call it via C<MRO::Compat> if you redefine the C<new()>
e8693f1b 382method in a subclass).
8cd017a8 383
384 package MyApp;
f5b61ad7 385
8cd017a8 386 use strict;
387 use Catalyst;
f5b61ad7 388
8cd017a8 389 MyApp->config({
390 name => 'MyApp',
7d8aa5ec 391 root => MyApp->path_to('root'),
6229ce0d 392 'View::TT' => {
7d8aa5ec 393 INCLUDE_PATH => [
394 MyApp->path_to( 'root', 'templates', 'lib' ),
395 MyApp->path_to( 'root', 'templates', 'src' ),
396 ],
8cd017a8 397 PRE_PROCESS => 'config/main',
398 WRAPPER => 'site/wrapper',
399 },
400 });
401
402Note that any configuration items defined by one of the earlier
403methods will be overwritten by items of the same name provided by the
f5b61ad7 404latter methods.
8cd017a8 405
e2bbd784 406=head2 DYNAMIC INCLUDE_PATH
407
f7dfca06 408Sometimes it is desirable to modify INCLUDE_PATH for your templates at run time.
f5b61ad7 409
f7dfca06 410Additional paths can be added to the start of INCLUDE_PATH via the stash as
411follows:
412
413 $c->stash->{additional_template_paths} =
414 [$c->config->{root} . '/test_include_path'];
415
416If you need to add paths to the end of INCLUDE_PATH, there is also an
417include_path() accessor available:
418
419 push( @{ $c->view('TT')->include_path }, qw/path/ );
420
421Note that if you use include_path() to add extra paths to INCLUDE_PATH, you
422MUST check for duplicate paths. Without such checking, the above code will add
423"path" to INCLUDE_PATH at every request, causing a memory leak.
424
425A safer approach is to use include_path() to overwrite the array of paths
426rather than adding to it. This eliminates both the need to perform duplicate
427checking and the chance of a memory leak:
e2bbd784 428
f7dfca06 429 @{ $c->view('TT')->include_path } = qw/path another_path/;
e2bbd784 430
f5b61ad7 431If you are calling C<render> directly then you can specify dynamic paths by
9d574573 432having a C<additional_template_paths> key with a value of additonal directories
1bc9fc55 433to search. See L<CAPTURING TEMPLATE OUTPUT> for an example showing this.
434
8cd017a8 435=head2 RENDERING VIEWS
436
437The view plugin renders the template specified in the C<template>
f5b61ad7 438item in the stash.
8cd017a8 439
440 sub message : Global {
94b3529a 441 my ( $self, $c ) = @_;
442 $c->stash->{template} = 'message.tt2';
6229ce0d 443 $c->forward( $c->view('TT') );
8cd017a8 444 }
722fede4 445
c969f23a 446If a stash item isn't defined, then it instead uses the
447stringification of the action dispatched to (as defined by $c->action)
448in the above example, this would be C<message>, but because the default
449is to append '.tt', it would load C<root/message.tt>.
8cd017a8 450
451The items defined in the stash are passed to the Template Toolkit for
452use as template variables.
453
8cd017a8 454 sub default : Private {
94b3529a 455 my ( $self, $c ) = @_;
456 $c->stash->{template} = 'message.tt2';
457 $c->stash->{message} = 'Hello World!';
6229ce0d 458 $c->forward( $c->view('TT') );
8cd017a8 459 }
7b592fc7 460
8cd017a8 461A number of other template variables are also added:
8077080c 462
8cd017a8 463 c A reference to the context object, $c
464 base The URL base, from $c->req->base()
465 name The application name, from $c->config->{ name }
466
467These can be accessed from the template in the usual way:
468
469<message.tt2>:
470
471 The message is: [% message %]
472 The base is [% base %]
473 The name is [% name %]
474
8cd017a8 475
1bc9fc55 476The output generated by the template is stored in C<< $c->response->body >>.
477
478=head2 CAPTURING TEMPLATE OUTPUT
479
480If you wish to use the output of a template for some other purpose than
481displaying in the response, e.g. for sending an email, this is possible using
482L<Catalyst::Plugin::Email> and the L<render> method:
483
484 sub send_email : Local {
485 my ($self, $c) = @_;
f5b61ad7 486
1bc9fc55 487 $c->email(
488 header => [
489 To => 'me@localhost',
490 Subject => 'A TT Email',
491 ],
492 body => $c->view('TT')->render($c, 'email.tt', {
9d574573 493 additional_template_paths => [ $c->config->{root} . '/email_templates'],
1bc9fc55 494 email_tmpl_param1 => 'foo'
495 }
496 ),
497 );
498 # Redirect or display a message
499 }
8cd017a8 500
501=head2 TEMPLATE PROFILING
502
1bc9fc55 503See L<C<TIMER>> property of the L<config> method.
504
caa61517 505=head2 METHODS
8077080c 506
b63ddd04 507=head2 new
2774dc77 508
f5b61ad7 509The constructor for the TT view. Sets up the template provider,
2774dc77 510and reads the application config.
511
81b7f2a2 512=head2 process($c)
8077080c 513
1bc9fc55 514Renders the template specified in C<< $c->stash->{template} >> or
ad50568f 515C<< $c->action >> (the private name of the matched action). Calls L<render> to
1bc9fc55 516perform actual rendering. Output is stored in C<< $c->response->body >>.
8077080c 517
81b7f2a2 518It is possible to forward to the process method of a TT view from inside
519Catalyst like this:
520
521 $c->forward('View::TT');
522
523N.B. This is usually done automatically by L<Catalyst::Action::RenderView>.
f2ee4d6c 524
b63ddd04 525=head2 render($c, $template, \%args)
1bc9fc55 526
cad820fe 527Renders the given template and returns output. Throws a L<Template::Exception>
f5b61ad7 528object upon error.
1bc9fc55 529
f5b61ad7 530The template variables are set to C<%$args> if $args is a hashref, or
531$C<< $c->stash >> otherwise. In either case the variables are augmented with
1bc9fc55 532C<base> set to C< << $c->req->base >>, C<c> to C<$c> and C<name> to
533C<< $c->config->{name} >>. Alternately, the C<CATALYST_VAR> configuration item
534can be defined to specify the name of a template variable through which the
535context reference (C<$c>) can be accessed. In this case, the C<c>, C<base> and
536C<name> variables are omitted.
537
f5b61ad7 538C<$template> can be anything that Template::process understands how to
1bc9fc55 539process, including the name of a template file or a reference to a test string.
540See L<Template::process|Template/process> for a full list of supported formats.
541
f59953e1 542To use the render method outside of your Catalyst app, just pass a undef context.
cbb149dc 543This can be useful for tests, for instance.
544
81b7f2a2 545It is possible to forward to the render method of a TT view from inside Catalyst
546to render page fragments like this:
547
548 my $fragment = $c->forward("View::TT", "render", $template_name, $c->stash->{fragment_data});
f2ee4d6c 549
b63ddd04 550=head2 template_vars
850ee226 551
1bc9fc55 552Returns a list of keys/values to be used as the catalyst variables in the
850ee226 553template.
554
b63ddd04 555=head2 config
8077080c 556
8cd017a8 557This method allows your view subclass to pass additional settings to
4729c102 558the TT configuration hash, or to set the options as below:
559
b63ddd04 560=head2 paths
561
562The list of paths TT will look for templates in.
4729c102 563
f5b61ad7 564=head2 C<CATALYST_VAR>
4729c102 565
566Allows you to change the name of the Catalyst context object. If set, it will also
567remove the base and name aliases, so you will have access them through <context>.
568
569For example:
570
571 MyApp->config({
572 name => 'MyApp',
7d8aa5ec 573 root => MyApp->path_to('root'),
6229ce0d 574 'View::TT' => {
4729c102 575 CATALYST_VAR => 'Catalyst',
576 },
577 });
578
579F<message.tt2>:
580
581 The base is [% Catalyst.req.base %]
582 The name is [% Catalyst.config.name %]
583
b63ddd04 584=head2 C<TIMER>
4729c102 585
586If you have configured Catalyst for debug output, and turned on the TIMER setting,
587C<Catalyst::View::TT> will enable profiling of template processing
588(using L<Template::Timer>). This will embed HTML comments in the
589output from your templates, such as:
590
591 <!-- TIMER START: process mainmenu/mainmenu.ttml -->
592 <!-- TIMER START: include mainmenu/cssindex.tt -->
593 <!-- TIMER START: process mainmenu/cssindex.tt -->
594 <!-- TIMER END: process mainmenu/cssindex.tt (0.017279 seconds) -->
595 <!-- TIMER END: include mainmenu/cssindex.tt (0.017401 seconds) -->
596
597 ....
598
599 <!-- TIMER END: process mainmenu/footer.tt (0.003016 seconds) -->
600
601
b63ddd04 602=head2 C<TEMPLATE_EXTENSION>
4729c102 603
747f2b6d 604a sufix to add when looking for templates bases on the C<match> method in L<Catalyst::Request>.
4729c102 605
606For example:
607
6229ce0d 608 package MyApp::Controller::Test;
f5b61ad7 609 sub test : Local { .. }
4729c102 610
611Would by default look for a template in <root>/test/test. If you set TEMPLATE_EXTENSION to '.tt', it will look for
612<root>/test/test.tt.
613
51199593 614=head2 C<PROVIDERS>
615
616Allows you to specify the template providers that TT will use.
617
618 MyApp->config({
619 name => 'MyApp',
620 root => MyApp->path_to('root'),
6229ce0d 621 'View::TT' => {
51199593 622 PROVIDERS => [
623 {
624 name => 'DBI',
625 args => {
626 DBI_DSN => 'dbi:DB2:books',
627 DBI_USER=> 'foo'
628 }
629 }, {
630 name => '_file_',
631 args => {}
632 }
633 ]
634 },
635 });
636
637The 'name' key should correspond to the class name of the provider you
638want to use. The _file_ name is a special case that represents the default
639TT file-based provider. By default the name is will be prefixed with
640'Template::Provider::'. You can fully qualify the name by using a unary
641plus:
642
643 name => '+MyApp::Provider::Foo'
644
6175bba7 645You can also specify the 'copy_config' key as an arrayref, to copy those keys
646from the general config, into the config for the provider:
f5b61ad7 647
6175bba7 648 DEFAULT_ENCODING => 'utf-8',
649 PROVIDERS => [
650 {
651 name => 'Encoding',
652 copy_config => [qw(DEFAULT_ENCODING INCLUDE_PATH)]
653 }
654 ]
f5b61ad7 655
6175bba7 656This can prove useful when you want to use the additional_template_paths hack
657in your own provider, or if you need to use Template::Provider::Encoding
658
8cd017a8 659=head2 HELPERS
660
661The L<Catalyst::Helper::View::TT> and
662L<Catalyst::Helper::View::TTSite> helper modules are provided to create
663your view module. There are invoked by the F<myapp_create.pl> script:
664
665 $ script/myapp_create.pl view TT TT
666
667 $ script/myapp_create.pl view TT TTSite
668
669The L<Catalyst::Helper::View::TT> module creates a basic TT view
670module. The L<Catalyst::Helper::View::TTSite> module goes a little
671further. It also creates a default set of templates to get you
672started. It also configures the view module to locate the templates
673automatically.
674
02c64502 675=head1 NOTES
676
677If you are using the L<CGI> module inside your templates, you will
678experience that the Catalyst server appears to hang while rendering
679the web page. This is due to the debug mode of L<CGI> (which is
680waiting for input in the terminal window). Turning off the
681debug mode using the "-no_debug" option solves the
682problem, eg.:
683
684 [% USE CGI('-no_debug') %]
685
8077080c 686=head1 SEE ALSO
687
8cd017a8 688L<Catalyst>, L<Catalyst::Helper::View::TT>,
689L<Catalyst::Helper::View::TTSite>, L<Template::Manual>
8077080c 690
c0eb0527 691=head1 AUTHORS
8077080c 692
693Sebastian Riedel, C<sri@cpan.org>
c0eb0527 694
d938377b 695Marcus Ramberg, C<mramberg@cpan.org>
c0eb0527 696
722fede4 697Jesse Sheidlower, C<jester@panix.com>
c0eb0527 698
8cd017a8 699Andy Wardley, C<abw@cpan.org>
8077080c 700
701=head1 COPYRIGHT
702
f5b61ad7 703This program is free software. You can redistribute it and/or modify it
2774dc77 704under the same terms as Perl itself.
8077080c 705
706=cut