a926bd7e48ecf24c4945ade4b1aeaf8d1122505e
[catagits/Catalyst-Controller-WrapCGI.git] / lib / Catalyst / Plugin / CGIBin.pm
1 package Catalyst::Plugin::CGIBin;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 Catalyst::Plugin::CGIBin - Server CGIs from root/cgi-bin
9
10 =head1 VERSION
11
12 Version 0.001
13
14 =cut
15
16 our $VERSION = '0.001';
17
18
19 =head1 SYNOPSIS
20
21 In your .conf:
22     <Plugin::CGIBin>
23         controller MyApp::Controller::Foo
24     </Plugin::CGIBin>
25
26     <MyApp::Controller::Foo>
27         <CGI>
28             pass_env PERL5LIB
29             pass_env PATH
30         </CGI>
31     </MyApp::Controller::Foo>
32
33 =head1 DESCRIPTION
34
35 Dispatches to CGI files in root/cgi-bin through the configured controller, which
36 must inherit from L<Catalyst::Controller::WrapCGI>.
37
38 I still need to write the code :)
39
40 =cut
41
42 =head1 AUTHOR
43
44 Rafael Kitover, C<< <rkitover at cpan.org> >>
45
46 =head1 BUGS
47
48 Please report any bugs or feature requests to C<bug-catalyst-controller-wrapcgi at
49 rt.cpan.org>, or through the web interface at
50 L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Catalyst-Controller-WrapCGI>.
51 I will be notified, and then you'll automatically be notified of progress on
52 your bug as I make changes.
53
54 =head1 SUPPORT
55
56 More information at:
57
58 =over 4
59
60 =item * RT: CPAN's request tracker
61
62 L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Catalyst-Controller-WrapCGI>
63
64 =item * AnnoCPAN: Annotated CPAN documentation
65
66 L<http://annocpan.org/dist/Catalyst-Controller-WrapCGI>
67
68 =item * CPAN Ratings
69
70 L<http://cpanratings.perl.org/d/Catalyst-Controller-WrapCGI>
71
72 =item * Search CPAN
73
74 L<http://search.cpan.org/dist/Catalyst-Controller-WrapCGI>
75
76 =back
77
78 =head1 COPYRIGHT & LICENSE
79
80 Copyright (c) 2008 Rafael Kitover
81
82 This program is free software; you can redistribute it and/or modify it
83 under the same terms as Perl itself.
84
85 =cut
86
87 1; # End of Catalyst::Plugin::CGIBin
88
89 # vim: expandtab shiftwidth=4 ts=4 tw=80: