From: Tomas Doran Date: Mon, 5 Sep 2011 10:58:04 +0000 (+0100) Subject: Fix old scripts by having empty Catalyst::Engine::HTTP X-Git-Tag: 5.90003~16 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=5cb939e800d2797c0c972ff63d76a799d1579663;hp=fabe0bc68c2025aec35fb8e242128cc160d5eff9 Fix old scripts by having empty Catalyst::Engine::HTTP --- diff --git a/Changes b/Changes index c1b361f..7133408 100644 --- a/Changes +++ b/Changes @@ -5,6 +5,11 @@ - Set a matching Content-type for the redirect if Catalyst sets the body. This is for compatibility with a WatchGuard Firewall. + Backward compatibility fixes: + + - Restore (an almost empty) Catalyst::Engine::HTTP to the dist for old + scripts which explictly require Catalyst::Engine::HTTP + Documentation fixes: - Document Catalyst::Plugin::Authentication fails tests unless diff --git a/lib/Catalyst/Engine/HTTP.pm b/lib/Catalyst/Engine/HTTP.pm new file mode 100644 index 0000000..e354a8a --- /dev/null +++ b/lib/Catalyst/Engine/HTTP.pm @@ -0,0 +1,12 @@ +package # Hide from PAUSE + Catalyst::Engine::HTTP; +use strict; +use warnings; + +use base 'Catalyst::Engine'; + +1; + +# This is here only as some old generated scripts require Catalyst::Engine::HTTP + +