summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authortravis%sedsystems.ca <>2005-01-25 01:39:15 +0100
committertravis%sedsystems.ca <>2005-01-25 01:39:15 +0100
commit27e28372867471a70621271b394ae31526b36a00 (patch)
treee0828abad957875752d27d26e28e97d101f5d2c2 /template
parentfb8af703ac15c47f9e3392fad6102dcdb07e29b1 (diff)
downloadbugzilla-27e28372867471a70621271b394ae31526b36a00.tar.gz
bugzilla-27e28372867471a70621271b394ae31526b36a00.tar.xz
Bug 201818 : Convert long_list.cgi to a format
Patch by Rob Siklos <robzilla@siklos.ca> r=wurblzap, glob a=myk
Diffstat (limited to 'template')
-rw-r--r--template/en/default/bug/knob.html.tmpl2
-rw-r--r--template/en/default/bug/show-multiple.html.tmpl20
-rw-r--r--template/en/default/filterexceptions.pl4
-rw-r--r--template/en/default/global/site-navigation.html.tmpl2
-rw-r--r--template/en/default/list/list.html.tmpl7
5 files changed, 20 insertions, 15 deletions
diff --git a/template/en/default/bug/knob.html.tmpl b/template/en/default/bug/knob.html.tmpl
index 035db1ae5..463132f9f 100644
--- a/template/en/default/bug/knob.html.tmpl
+++ b/template/en/default/bug/knob.html.tmpl
@@ -168,7 +168,7 @@
<b>
<a href="show_activity.cgi?id=[% bug.bug_id %]">View [% terms.Bug %] Activity</a>
&nbsp; | &nbsp;
- <a href="long_list.cgi?buglist=[% bug.bug_id %]">Format For Printing</a>
+ <a href="show_bug.cgi?format=multiple&amp;id=[% bug.bug_id %]">Format For Printing</a>
</b>
</font>
diff --git a/template/en/default/bug/show-multiple.html.tmpl b/template/en/default/bug/show-multiple.html.tmpl
index a57445084..8b42217c1 100644
--- a/template/en/default/bug/show-multiple.html.tmpl
+++ b/template/en/default/bug/show-multiple.html.tmpl
@@ -89,13 +89,19 @@
<tr>
[% PROCESS cell attr = { description => "Resolution",
name => "resolution" } %]
- [% PROCESS cell attr = { description => "Assigned To",
- name => "assigned_to" } %]
- [% PROCESS cell attr = { description => "Reported By",
- name => "reporter" } %]
+ <td>
+ <b>Assigned To:</b>&nbsp;
+ [% bug.assigned_to.login FILTER html %]
+ </td>
+ <td>
+ <b>Reported By:</b>&nbsp;
+ [% bug.reporter.login FILTER html %]
+ </td>
[% IF Param('useqacontact') %]
- [% PROCESS cell attr = { description => "QA Contact",
- name => "qa_contact" } %]
+ <td>
+ <b>QA Contact:</b>&nbsp;
+ [% bug.qa_contact.login FILTER html %]
+ </td>
[% END %]
</tr>
@@ -190,7 +196,7 @@
</table>
[% PROCESS bug/comments.html.tmpl
- comments = bug.comments %]
+ comments = bug.longdescs %]
<hr>
[% END %]
diff --git a/template/en/default/filterexceptions.pl b/template/en/default/filterexceptions.pl
index e8d63dfb5..045971da5 100644
--- a/template/en/default/filterexceptions.pl
+++ b/template/en/default/filterexceptions.pl
@@ -217,10 +217,6 @@
'title',
],
-'list/list.html.tmpl' => [
- 'buglist',
-],
-
'list/list.rdf.tmpl' => [
'template_version',
'bug.bug_id',
diff --git a/template/en/default/global/site-navigation.html.tmpl b/template/en/default/global/site-navigation.html.tmpl
index 95a7ef423..66c96a137 100644
--- a/template/en/default/global/site-navigation.html.tmpl
+++ b/template/en/default/global/site-navigation.html.tmpl
@@ -73,7 +73,7 @@
<link rel="Show" title="[% terms.Bug %] Activity"
href="show_activity.cgi?id=[% bug.bug_id %]">
<link rel="Show" title="Printer-Friendly Version"
- href="long_list.cgi?buglist=[% bug.bug_id %]">
+ href="show_bug.cgi?format=multiple&amp;id=[% bug.bug_id %]">
[% END %]
diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl
index 48759ceb7..24d00feb6 100644
--- a/template/en/default/list/list.html.tmpl
+++ b/template/en/default/list/list.html.tmpl
@@ -129,8 +129,11 @@
<tr>
[% IF bugs.size > 0 %]
<td valign="middle">
- <form method="post" action="long_list.cgi">
- <input type="hidden" name="buglist" value="[% buglist %]">
+ <form method="post" action="show_bug.cgi">
+ [% FOREACH id = buglist %]
+ <input type="hidden" name="id" value="[% id FILTER html %]">
+ [% END %]
+ <input type="hidden" name="format" value="multiple">
<input type="submit" value="Long Format">
</form>
</td>