This is a tad on the late side. :-)
The situation you discuss earlier is one that I'm also facing. I'd be interested in breaking a C::A into one or more C::As.
I've tried to recreate the method you've used but I've hit a snag.
You have
package My::Application::Base;
use CGI::Application;
our @ISA = qw( CGI::Application );
sub setup{
# Do basic stuff, including run_modes everyone has, like 'redirect
+_login'
}
Note the reference to run_modes. Later you have
package My::Application::Reports;
use My::Application::Base;
our @ISA = qw( My::Application::Base );
sub setup{
my $self = shift;
$self->runmodes([qw(
choose
display
)]);
}
As far as I can tell the run_modes in Base are overwritten by the run_modes in Reports and I get a "No such run mode..." error when reffering to any run_mode in Base.
Did you encounter this?
Also, how would you implement such a scheme as this? Would each C::A have its own instance script?
Update:
fwi, I've post my attempt here
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|