X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FUtils.pm;h=1a0dd41df0dc0b6b40d07cef7323f53afd246bbb;hb=9e6091e2f24701da88b4592f4192e6731faa4813;hp=53bf7957ac7dfb5c0cc4b995b57009a7a3c4579b;hpb=7d7519a4bbd079da53bf50f4822cabb0e3af74a1;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Utils.pm b/lib/Catalyst/Utils.pm index 53bf795..1a0dd41 100644 --- a/lib/Catalyst/Utils.pm +++ b/lib/Catalyst/Utils.pm @@ -1,14 +1,13 @@ package Catalyst::Utils; use strict; -use Catalyst::Exception; use File::Spec; use HTTP::Request; use Path::Class; use URI; use Carp qw/croak/; use Cwd; - +use Class::MOP; use String::RewritePrefix; use namespace::clean; @@ -85,6 +84,20 @@ sub class2classsuffix { return $class; } +=head2 class2classshortsuffix($class) + + MyApp::Controller::Foo::Bar becomes Foo::Bar + +=cut + +sub class2classshortsuffix { + my $class = shift || ''; + my $prefix = class2classprefix($class) || ''; + $class =~ s/$prefix\:://; + return $class; +} + + =head2 class2env($class); Returns the environment name for class. @@ -140,6 +153,13 @@ sub class2tempdir { eval { $tmpdir->mkpath }; if ($@) { + # don't load Catalyst::Exception as a BEGIN in Utils, + # because Utils often gets loaded before MyApp.pm, and if + # Catalyst::Exception is loaded before MyApp.pm, it does + # not honor setting + # $Catalyst::Exception::CATALYST_EXCEPTION_CLASS in + # MyApp.pm + require Catalyst::Exception; Catalyst::Exception->throw( message => qq/Couldn't create tmpdir '$tmpdir', "$@"/ ); }