Implemented chaining so that Catalyst::Controller::WrapCGI::wrap_cgi can properly...
[catagits/Catalyst-Controller-MovableType.git] / README
CommitLineData
0f0899e8 1NAME
2 Catalyst::Controller::MovableType - Run Movable Type through Catalyst
3
9839e790 4SYNOPSIS
962d061e 5 package MyApp::Controller::Mt;
9839e790 6
962d061e 7 use Moose;
8 BEGIN {extends 'Catalyst::Controller::MovableType'; }
9 use utf8;
9839e790 10
962d061e 11 1;
9839e790 12
13INSTALLATION
14 Install Movable Type by extracting the zip into your template root
15 directory. Move mt-static to root/static/mt, and configure Movable Type
16 accordingly.
17
18DESCRIPTION
19 Runs Movable Type 5 through Catalyst. Download Movable Type 5 from
20 http://www.movabletype.org/
21
22METHODS
23 run_mt_script
24 Runs the requested Movable Type .cgi script transparently with
25 cgi_to_response.
26
27 not_found
28 Sets the response to a simple 404 Not found page. You can override this
29 method with your own.
30
31BUGS
32 None known.
33
34SEE ALSO
35 Catalyst::Controller::WrapCGI
36
37AUTHOR
38 Oskari 'Okko' Ojala <perl@okko.net>
39
40CONTRIBUTORS
41 Matt S. Trout <mst@shadowcatsystems.co.uk>
42
0f0899e8 43COPYRIGHT & LICENSE
44 Copyright 2010 the above author(s).
45
46 This sofware is free software, and is licensed under the same terms as
47 Perl itself.
9839e790 48