diff options
-rw-r--r-- | Bugzilla/BugUrl.pm | 3 | ||||
-rw-r--r-- | Bugzilla/BugUrl/ServiceNow.pm | 24 | ||||
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/field.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 5 |
4 files changed, 32 insertions, 4 deletions
diff --git a/Bugzilla/BugUrl.pm b/Bugzilla/BugUrl.pm index 74a69e6f9..2475390f2 100644 --- a/Bugzilla/BugUrl.pm +++ b/Bugzilla/BugUrl.pm @@ -60,7 +60,6 @@ use constant VALIDATORS => { # pick the first one that should handle the url. New # subclasses should be added at the end of the list. use constant SUB_CLASSES => qw( - Bugzilla::BugUrl::Aha Bugzilla::BugUrl::Bugzilla::Local Bugzilla::BugUrl::Bugzilla Bugzilla::BugUrl::Launchpad @@ -72,7 +71,9 @@ use constant SUB_CLASSES => qw( Bugzilla::BugUrl::SourceForge Bugzilla::BugUrl::GitHub Bugzilla::BugUrl::MozSupport + Bugzilla::BugUrl::Aha Bugzilla::BugUrl::WebCompat + Bugzilla::BugUrl::ServiceNow ); ############################### diff --git a/Bugzilla/BugUrl/ServiceNow.pm b/Bugzilla/BugUrl/ServiceNow.pm new file mode 100644 index 000000000..b73f56a00 --- /dev/null +++ b/Bugzilla/BugUrl/ServiceNow.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::ServiceNow; +use strict; +use base qw(Bugzilla::BugUrl); + +sub should_handle { + my ($class, $uri) = @_; + return $uri =~ m#^https?://[^.]+\.service-now\.com/nav_to\.do\?#; +} + +sub _check_value { + my ($class, $uri) = @_; + $uri = $class->SUPER::_check_value($uri); + $uri->scheme('https'); + return $uri; +} + +1; diff --git a/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl index b31052d36..0fe143919 100644 --- a/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/field.html.tmpl @@ -308,7 +308,9 @@ END; [% IF url.isa('Bugzilla::BugUrl::Bugzilla::Local') %] [% url.target_bug_id FILTER bug_link(url.target_bug_id, use_alias => 1) FILTER none %] [% ELSE %] - <a href="[% url.name FILTER html %]">[% url.name FILTER html %]</a> + <a href="[% url.name FILTER html %]" + title="[% url.name FILTER truncate(256) FILTER html %]" + >[% url.name FILTER truncate(40) FILTER html %]</a> [% END %] [% IF edit %] <label> diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 1d3742b09..2ecad03fd 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -328,7 +328,7 @@ <ul> <li><code>show_bug.cgi</code> in a [% terms.Bugzilla %] installation.</li> - <li>A b[% %]ug on launchpad.net</li> + <li>A b[% %]ug on launchpad.net.</li> <li>An issue on code.google.com.</li> <li>A b[% %]ug on b[% %]ugs.debian.org.</li> <li>An issue in a JIRA installation.</li> @@ -337,8 +337,9 @@ <li>A b[% %]ug on sourceforge.net.</li> <li>An issue/pull request on github.com.</li> <li>A question on support.mozilla.org.</li> - <li>An Aha feature on aha.io</li> + <li>An Aha feature on aha.io.</li> <li>An issue on webcompat.com.</li> + <li>A request on ServiceNow.</li> </ul> [% ELSIF reason == 'id' %] There is no valid [% terms.bug %] id in that URL. |