From aa7127c201ab8be7b6ba7f70767086c4fc6d1e44 Mon Sep 17 00:00:00 2001 From: "bbaetz%student.usyd.edu.au" <> Date: Mon, 1 Jul 2002 10:28:50 +0000 Subject: Bug 150770 - Lost arround query results r=jouni, justdave --- template/en/default/global/useful-links.html.tmpl | 4 +++- template/en/default/list/table.html.tmpl | 11 ++++++++--- 2 files changed, 11 insertions(+), 4 deletions(-) (limited to 'template') diff --git a/template/en/default/global/useful-links.html.tmpl b/template/en/default/global/useful-links.html.tmpl index d8c443775..40207f3d6 100644 --- a/template/en/default/global/useful-links.html.tmpl +++ b/template/en/default/global/useful-links.html.tmpl @@ -106,7 +106,9 @@ [% FOREACH q = user.queries %] [% IF q.linkinfooter %] [% " | " IF print_pipe %] - [% q.name FILTER html FILTER no_break %] + + [% q.name FILTER html %] + [% print_pipe = 1 %] [% END %] [% END %] diff --git a/template/en/default/list/table.html.tmpl b/template/en/default/list/table.html.tmpl index 765883319..6d5ee0d6c 100644 --- a/template/en/default/list/table.html.tmpl +++ b/template/en/default/list/table.html.tmpl @@ -28,6 +28,8 @@ # the shortened title is included. For columns whose values should be # abbreviated, a maximum length is provided along with the ellipsis that # should be added to an abbreviated value, if any. + # wrap is set if a column's contents should be allowed to be word-wrapped + # by the browser. #%] [% abbrev = { @@ -39,8 +41,9 @@ "owner" => { maxlength => 30 , ellipsis => "..." } , "qa_contact" => { maxlength => 30 , ellipsis => "..." , title => "QAContact" } , "resolution" => { maxlength => 4 } , - "summary" => { maxlength => 60 , ellipsis => "..." } , - "status_whiteboard" => { title => "StatusSummary" } , + "summary" => { maxlength => 60 , ellipsis => "..." , wrap => 1 } , + "summaryfull" => { wrap => 1 } , + "status_whiteboard" => { title => "StatusSummary" , wrap => 1 } , "component" => { maxlength => 8 , title => "Comp" } , "product" => { maxlength => 8 } , "version" => { maxlength => 5 , title => "Vers" } , @@ -128,7 +131,9 @@ [% FOREACH column = displaycolumns %] - [%+ bug.$column.truncate(abbrev.$column.maxlength, abbrev.$column.ellipsis) FILTER html %] + [% '' IF NOT abbrev.$column.wrap %] + [%- bug.$column.truncate(abbrev.$column.maxlength, abbrev.$column.ellipsis) FILTER html -%] + [%- '' IF NOT abbrev.$column.wrap %] [% END %] -- cgit v1.2.3-24-g4f1b