actually document the new request body_data method
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / HTTP.pm
1 package # Hide from PAUSE
2     Catalyst::Engine::HTTP;
3 use strict;
4 use warnings;
5
6 use base 'Catalyst::Engine';
7
8 warn("You are loading Catalyst::Engine::HTTP explicitly.
9
10 This is almost certainly a bad idea, as Catalyst::Engine::HTTP
11 has been removed in this version of Catalyst.
12
13 Please update your application's scripts with:
14
15   catalyst.pl -force -scripts MyApp
16
17 to update your scripts to not do this.\n") unless $ENV{HARNESS_ACTIVE};
18
19 1;
20
21 __END__
22
23 =head1 NAME
24
25 Catalyst::Engine::HTTP
26
27 =head1 SYNOPSIS
28
29 See L<Catalyst>.
30
31 =head1 DESCRIPTION
32
33 This is here only as some old generated scripts require Catalyst::Engine::HTTP
34
35 =head1 AUTHORS
36
37 Catalyst Contributors, see Catalyst.pm
38
39 =head1 COPYRIGHT
40
41 This library is free software. You can redistribute it and/or modify it under
42 the same terms as Perl itself.
43
44 =cut