summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2016-04-13 17:57:50 +0200
committerByron Jones <glob@mozilla.com>2016-04-13 18:00:08 +0200
commit197afbecb29bbc96f88c4868541a19172d86e485 (patch)
tree8633d4328553f1bad5620bfbbe26468a2466be30
parent33f61556746e1729746342d802ca7ea9cea18caf (diff)
downloadbugzilla-197afbecb29bbc96f88c4868541a19172d86e485.tar.gz
bugzilla-197afbecb29bbc96f88c4868541a19172d86e485.tar.xz
Bug 1264207 - add support for the hellosplat tracker to 'see also'
-rw-r--r--Bugzilla/BugUrl.pm1
-rw-r--r--Bugzilla/BugUrl/Splat.pm24
-rw-r--r--template/en/default/global/user-error.html.tmpl1
3 files changed, 26 insertions, 0 deletions
diff --git a/Bugzilla/BugUrl.pm b/Bugzilla/BugUrl.pm
index c19f771f5..3b05057f8 100644
--- a/Bugzilla/BugUrl.pm
+++ b/Bugzilla/BugUrl.pm
@@ -75,6 +75,7 @@ use constant SUB_CLASSES => qw(
Bugzilla::BugUrl::Aha
Bugzilla::BugUrl::WebCompat
Bugzilla::BugUrl::ServiceNow
+ Bugzilla::BugUrl::Splat
);
###############################
diff --git a/Bugzilla/BugUrl/Splat.pm b/Bugzilla/BugUrl/Splat.pm
new file mode 100644
index 000000000..42918f0d4
--- /dev/null
+++ b/Bugzilla/BugUrl/Splat.pm
@@ -0,0 +1,24 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+# This Source Code Form is "Incompatible With Secondary Licenses", as
+# defined by the Mozilla Public License, v. 2.0.
+
+package Bugzilla::BugUrl::Splat;
+use strict;
+use base qw(Bugzilla::BugUrl);
+
+sub should_handle {
+ my ($class, $uri) = @_;
+ return $uri =~ m#^https?://hellosplat\.com/s/beanbag/tickets/\d+#;
+}
+
+sub _check_value {
+ my ($class, $uri) = @_;
+ $uri = $class->SUPER::_check_value($uri);
+ $uri->scheme('https'); # force https
+ return $uri;
+}
+
+1;
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl
index 9cd1cc02f..27481eac3 100644
--- a/template/en/default/global/user-error.html.tmpl
+++ b/template/en/default/global/user-error.html.tmpl
@@ -352,6 +352,7 @@
<li>An Aha feature on aha.io.</li>
<li>An issue on webcompat.com.</li>
<li>A request on ServiceNow.</li>
+ <li>A ticket on hellosplat.com.</li>
</ul>
[% ELSIF reason == 'id' %]
There is no valid [% terms.bug %] id in that URL.