X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDispatchType%2FRegex.pm;h=354fe3303d103253e7b4e121cbd00e2fde5dfce3;hb=2c527b9130ee042eaa8e5996f565c75764d18117;hp=4d8d28abd5cd606ad3b8ccfac056322279c02e18;hpb=2f3812528068bc1d9f7840067f0c03d36cd47e6d;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/DispatchType/Regex.pm b/lib/Catalyst/DispatchType/Regex.pm index 4d8d28a..354fe33 100644 --- a/lib/Catalyst/DispatchType/Regex.pm +++ b/lib/Catalyst/DispatchType/Regex.pm @@ -4,6 +4,7 @@ use Moose; extends 'Catalyst::DispatchType::Path'; use Text::SimpleTable; +use Catalyst::Utils; use Text::Balanced (); has _compiled => ( @@ -21,10 +22,21 @@ Catalyst::DispatchType::Regex - Regex DispatchType =head1 SYNOPSIS -See L. +See L. =head1 DESCRIPTION +Dispatch type managing path-matching behaviour using regexes. For +more information on dispatch types, see: + +=over 4 + +=item * L for how they affect application authors + +=item * L for implementation information. + +=back + =head1 METHODS =head2 $self->list($c) @@ -35,7 +47,8 @@ Output a table of all regex actions, and their private equivalent. sub list { my ( $self, $c ) = @_; - my $re = Text::SimpleTable->new( [ 35, 'Regex' ], [ 36, 'Private' ] ); + my $column_width = Catalyst::Utils::term_width() - 35 - 9; + my $re = Text::SimpleTable->new( [ 35, 'Regex' ], [ $column_width, 'Private' ] ); for my $regex ( @{ $self->_compiled } ) { my $action = $regex->{action}; $re->row( $regex->{path}, "/$action" ); @@ -135,13 +148,15 @@ sub uri_for_action { $re =~ s/^\^//; $re =~ s/\$$//; my $final = '/'; - my @captures = @$captures; + my @captures = map { s/([^A-Za-z0-9\-_.!~*'()])/$URI::Escape::escapes{$1}/go; $_; } @$captures; while (my ($front, $rest) = split(/\(/, $re, 2)) { + last unless defined $rest; ($rest, $re) = Text::Balanced::extract_bracketed("(${rest}", '('); next REGEX unless @captures; $final .= $front.shift(@captures); } + $final .= $re; next REGEX if @captures; return $final; }