From 0b47dd2c3b8edd338acae76ca5579b84efb7e4f8 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Mon, 15 May 2006 02:47:34 +0000 Subject: Bug 137751: Linkify bug numbers in dependency fields on show_activity.cgi - Patch by David D. Kilzer (ddk) and timeless r=wicked a=justdave --- Bugzilla/Template.pm | 6 ++++++ template/en/default/bug/activity/table.html.tmpl | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index edfc037c6..5cf9bce9c 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 2a96b8689..31556623d 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 %] -- cgit v1.2.3-24-g4f1b