From 51ae055728e7c266e8d192c8bfd836af17eda288 Mon Sep 17 00:00:00 2001 From: Matt Selsky Date: Mon, 24 Nov 2014 19:36:43 +0000 Subject: Bug 919122 - support for sourceforge.net Allura bugs in see_also field. r=gerv. (cherry picked from commit 34f2b77f153f9f5ab4a4ef6723dcc31fff50a4d9) Signed-off-by: Sam James --- Bugzilla/BugUrl/SourceForge.pm | 30 ++++++++++++++++++++----- template/en/default/global/user-error.html.tmpl | 2 +- 2 files changed, 25 insertions(+), 7 deletions(-) diff --git a/Bugzilla/BugUrl/SourceForge.pm b/Bugzilla/BugUrl/SourceForge.pm index ffdde42f4..c79b83b84 100644 --- a/Bugzilla/BugUrl/SourceForge.pm +++ b/Bugzilla/BugUrl/SourceForge.pm @@ -22,12 +22,25 @@ sub should_handle { # SourceForge tracker URLs have only one form: # http://sourceforge.net/tracker/?func=detail&aid=111&group_id=111&atid=111 - return (lc($uri->authority) eq 'sourceforge.net' - and $uri->path =~ m|/tracker/| - and $uri->query_param('func') eq 'detail' - and $uri->query_param('aid') - and $uri->query_param('group_id') - and $uri->query_param('atid')) ? 1 : 0; + # 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' + and ( + ( + $uri->path eq '/tracker/' + and $uri->query_param('func') eq 'detail' + and $uri->query_param('aid') + and $uri->query_param('group_id') + and $uri->query_param('atid') + ) + or $uri->path + =~ m!^/p/[^/]+/(?:bugs|feature-requests|patches|support-requests)/\d+/?$! + ) + ) ? 1 : 0; } sub _check_value { @@ -38,6 +51,11 @@ sub _check_value { # Remove any # part if there is one. $uri->fragment(undef); + # Make sure the trailing slash is present + my $path = $uri->path; + $path =~ s!/*$!/!; + $uri->path($path); + return $uri; } diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 4ebb0b95b..da14f55ad 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -289,7 +289,7 @@
  • An issue in a JIRA installation.
  • A ticket in a Trac installation.
  • A b[% %]ug in a MantisBT installation.
  • -
  • A b[% %]ug on sourceforge.net.
  • +
  • A b[% %]ug or ticket on sourceforge.net.
  • An issue/pull request on github.com.
  • An issue/merge request on a GitLab system.
  • A task on a Flyspray tracking system.
  • -- cgit v1.2.3-65-gdbad