X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDispatchType%2FRegex.pm;h=11a9cbf2f378dab5d4576aed915202929246159f;hb=f91554831ad9972ba44453f69a6b633fd3dfa710;hp=4c6bf4c66dbe731b7ccd8e2e2803ffa5efcacb4f;hpb=26dc649ad1a74622697f25fcbf29e806e75fcd2f;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/DispatchType/Regex.pm b/lib/Catalyst/DispatchType/Regex.pm index 4c6bf4c..11a9cbf 100644 --- a/lib/Catalyst/DispatchType/Regex.pm +++ b/lib/Catalyst/DispatchType/Regex.pm @@ -31,7 +31,7 @@ more information on dispatch types, see: =over 4 -=item * L for how they affect website authors +=item * L for how they affect application authors =item * L for implementation information. @@ -150,11 +150,13 @@ sub uri_for_action { my $final = '/'; my @captures = @$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; } @@ -168,7 +170,7 @@ Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT -This program is free software, you can redistribute it and/or modify it under +This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. =cut