File: HTTP.pm

package info (click to toggle)
libcatalyst-perl 5.90015-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,352 kB
  • sloc: perl: 16,643; makefile: 9
file content (23 lines) | stat: -rw-r--r-- 524 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package # Hide from PAUSE
    Catalyst::Engine::HTTP;
use strict;
use warnings;

use base 'Catalyst::Engine';

warn("You are loading Catalyst::Engine::HTTP explicitly.

This is almost certainly a bad idea, as Catalyst::Engine::HTTP
has been removed in this version of Catalyst.

Please update your application's scripts with:

  catalyst.pl -force -scripts MyApp

to update your scripts to not do this.\n") unless $ENV{HARNESS_ACTIVE};

1;

# This is here only as some old generated scripts require Catalyst::Engine::HTTP