1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
package BookDB;
use strict;
use Catalyst ('-Debug',
'Static::Simple',
);
our $VERSION = '0.02';
BookDB->config( name => 'BookDB' );
BookDB->setup;
=head1 NAME
BookDB - Catalyst based application
=head1 SYNOPSIS
script/bookdb_server.pl
=head1 DESCRIPTION
Catalyst based application.
=head1 METHODS
=over 4
=item chained_uri_for
=cut
sub this_chained_uri
{
my $c = shift;
return $c->uri_for($c->action,$c->req->captures,@_);
}
sub chained_uri_for
{
my ($c, $controller, $action, $captures) = @_;
return $c->uri_for($c->controller($controller)->action_for($action),
$captures );
}
=back
=head1 AUTHOR
Gerda Shank
=head1 LICENSE
This library is free software . You can redistribute it and/or modify
it under the same terms as perl itself.
=cut
1;
|