Commit 34f2b77f authored by Matt Selsky's avatar Matt Selsky Committed by Gervase Markham

Bug 919122 - support for sourceforge.net Allura bugs in see_also field. r=gerv.

parent 3afc1b78
...@@ -22,12 +22,18 @@ sub should_handle { ...@@ -22,12 +22,18 @@ sub should_handle {
# SourceForge tracker URLs have only one form: # SourceForge tracker URLs have only one form:
# http://sourceforge.net/tracker/?func=detail&aid=111&group_id=111&atid=111 # http://sourceforge.net/tracker/?func=detail&aid=111&group_id=111&atid=111
# SourceForge Allura ticket URLs have several forms:
# http://sourceforge.net/p/project/bugs/12345/
# http://sourceforge.net/p/project/feature-requests/12345/
# http://sourceforge.net/p/project/patches/12345/
# http://sourceforge.net/p/project/support-requests/12345/
return (lc($uri->authority) eq 'sourceforge.net' return (lc($uri->authority) eq 'sourceforge.net'
and $uri->path =~ m|/tracker/| and (($uri->path eq '/tracker/'
and $uri->query_param('func') eq 'detail' and $uri->query_param('func') eq 'detail'
and $uri->query_param('aid') and $uri->query_param('aid')
and $uri->query_param('group_id') and $uri->query_param('group_id')
and $uri->query_param('atid')) ? 1 : 0; and $uri->query_param('atid'))
or $uri->path =~ m!^/p/[^/]+/(?:bugs|feature-requests|patches|support-requests)/\d+/?$!)) ? 1 : 0;
} }
sub _check_value { sub _check_value {
...@@ -38,6 +44,11 @@ sub _check_value { ...@@ -38,6 +44,11 @@ sub _check_value {
# Remove any # part if there is one. # Remove any # part if there is one.
$uri->fragment(undef); $uri->fragment(undef);
# Make sure the trailing slash is present
my $path = $uri->path;
$path =~ s!/*$!/!;
$uri->path($path);
return $uri; return $uri;
} }
......
...@@ -291,7 +291,7 @@ ...@@ -291,7 +291,7 @@
<li>An issue in a JIRA installation.</li> <li>An issue in a JIRA installation.</li>
<li>A ticket in a Trac installation.</li> <li>A ticket in a Trac installation.</li>
<li>A b[% %]ug in a MantisBT installation.</li> <li>A b[% %]ug in a MantisBT installation.</li>
<li>A b[% %]ug on sourceforge.net.</li> <li>A b[% %]ug or ticket on sourceforge.net.</li>
<li>An issue/pull request on github.com.</li> <li>An issue/pull request on github.com.</li>
[% Hook.process('bug_url_invalid_tracker') %] [% Hook.process('bug_url_invalid_tracker') %]
</ul> </ul>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment