Tagged Questions
The cgiapp tag has no wiki summary.
4
votes
2answers
413 views
Perl CGI::Application::Plugin:Stream + Jquery Taconite plugin - Cannot download file
I am using the Stream (qw/stream_file/) Plugin for CGI::Application within a runmode to read a file from the filesystem and stream it back to the user.
The user clicks on a link whose "id" attribute ...
4
votes
2answers
435 views
How do I have a persistent DBIx::Class in CGI::Application with mod_perl?
I am using CGI::Application on mod_perl with DBIx::Class and I'd like to have something like new define a new dbic schema on instantiation. So far I haven't been able to get it to work. The closest ...
3
votes
1answer
230 views
Problem with mixins in a MooseX::NonMoose class
Consider the following:
package MyApp::CGI;
use Moose;
use MooseX::NonMoose;
use Data::Dumper;
extends 'CGI::Application';
BEGIN {
print "begin isa = " . Dumper \@MyApp::CGI::ISA;
};
print ...
3
votes
1answer
497 views
Dealing with multiple-inherited constructors in Moose
Greetings,
I'm learning Moose and I'm trying to write a CGI::Application subclass with Moose, which is made difficult by the fact that CGI-App is not based on Moose.
In my other CGI-App subclasses, ...
3
votes
2answers
124 views
Can I have regular parameters along with CGI::Application::Dispatch?
I appreciate the ability to be able to do: http://server/controller/runmode or even http://server/controller/runmode/id. But if I have a lot of optional parameters I'd like to be able to do the ...