From: lpsolit%gmail.com <> Date: Mon, 15 May 2006 02:47:34 +0000 (+0000) Subject: Bug 137751: Linkify bug numbers in dependency fields on show_activity.cgi - Patch... X-Git-Tag: bugzilla-2.23.2~176 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b47dd2c3b8edd338acae76ca5579b84efb7e4f8;p=thirdparty%2Fbugzilla.git Bug 137751: Linkify bug numbers in dependency fields on show_activity.cgi - Patch by David D. Kilzer (ddk) and timeless r=wicked a=justdave --- diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index edfc037c62..5cf9bce9c6 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -642,6 +642,12 @@ sub create { 1 ], + bug_list_link => sub + { + my $buglist = shift; + return join(", ", map(get_bug_link($_, $_), split(/ *, */, $buglist))); + }, + # In CSV, quotes are doubled, and any value containing a quote or a # comma is enclosed in quotes. csv => sub diff --git a/template/en/default/bug/activity/table.html.tmpl b/template/en/default/bug/activity/table.html.tmpl index 2a96b8689f..31556623d3 100644 --- a/template/en/default/bug/activity/table.html.tmpl +++ b/template/en/default/bug/activity/table.html.tmpl @@ -17,6 +17,7 @@ # Rights Reserved. # # Contributor(s): Gervase Markham + # David D. Kilzer #%] [%# INTERFACE: @@ -85,6 +86,9 @@ [% status_descs.${change.removed} FILTER html %] [% ELSIF change.fieldname == 'resolution' %] [% resolution_descs.${change.removed} FILTER html %] + [% ELSIF change.fieldname == 'blocked' || + change.fieldname == 'dependson' %] + [% change.removed FILTER bug_list_link FILTER none %] [% ELSE %] [% change.removed FILTER html %] [% END %] @@ -102,6 +106,9 @@ [% status_descs.${change.added} FILTER html %] [% ELSIF change.fieldname == 'resolution' %] [% resolution_descs.${change.added} FILTER html %] + [% ELSIF change.fieldname == 'blocked' || + change.fieldname == 'dependson' %] + [% change.added FILTER bug_list_link FILTER none %] [% ELSE %] [% change.added FILTER html %] [% END %]