From: jocuri%softhome.net <> Date: Wed, 3 Nov 2004 06:54:12 +0000 (+0000) Subject: Patch for bug 251596: show.html template should use customized body attribute; patch... X-Git-Tag: bugzilla-2.18~122 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=449a1247d7df3858883594158684b02301ad6ef7;p=thirdparty%2Fbugzilla.git Patch for bug 251596: show.html template should use customized body attribute; patch by Marc Schumann ; r=kiko, a=justdave. --- diff --git a/template/en/default/bug/show.html.tmpl b/template/en/default/bug/show.html.tmpl index f98e05f0cb..8db59a9800 100644 --- a/template/en/default/bug/show.html.tmpl +++ b/template/en/default/bug/show.html.tmpl @@ -28,17 +28,16 @@ [% filtered_desc = bug.short_desc FILTER html %] [% filtered_timestamp = bug.delta_ts FILTER time %] -[% bodyattrs = BLOCK %]class='bz_bug bz_status_[% bug.bug_status - FILTER css_class_quote %] bz_component_[% bug.component - FILTER css_class_quote %] bz_bug_[% bug.bug_id - FILTER css_class_quote %]' -[% END %] [% PROCESS global/header.html.tmpl title = "$terms.Bug $bug.bug_id - $bug.short_desc" h1 = "$terms.Bugzilla $terms.Bug $bug.bug_id" h2 = filtered_desc h3 = "Last modified: $filtered_timestamp" - bodyattrs = bodyattrs + bodyclasses = ['bz_bug', + "bz_status_$bug.bug_status", + "bz_component_$bug.component", + "bz_bug_$bug.bug_id" + ] %] [% PROCESS bug/navigate.html.tmpl %] diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl index 5ee8c7f321..ff283396fa 100644 --- a/template/en/default/global/header.html.tmpl +++ b/template/en/default/global/header.html.tmpl @@ -28,6 +28,7 @@ # h3: string. Right-aligned subheader. # bgcolor: string. the page's background color ("#rrggbb"). # bodyattrs: any extra attributes for the tag + # bodyclasses: array of extra CSS classes for the # onload: string. JavaScript code to run when the page finishes loading. # javascript: string. Javascript to go in the header. # style: string. CSS style. @@ -94,8 +95,11 @@ #%] + class="[% Param('urlbase').replace('^https?://','').replace('/$','').replace('[-~@:/.]+','-') %] + [% FOREACH class = bodyclasses %] + [% ' ' %][% class FILTER css_class_quote %] + [% END %]" + [% bodyattrs %]> [%# Migration note: the following file corresponds to the old Param # 'bannerhtml'