Patch for bug 251596: make show.html template use customized body attribute; patch by Marc Schumann <wurblzap@gmail.com>; r=kiko, a=justdave.

This commit is contained in:
jocuri%softhome.net 2004-11-02 22:50:10 +00:00
Родитель 4e6945da68
Коммит b73e224920
2 изменённых файлов: 11 добавлений и 8 удалений

Просмотреть файл

@ -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 %]

Просмотреть файл

@ -28,6 +28,7 @@
# h3: string. Right-aligned subheader.
# bgcolor: string. the page's background color ("#rrggbb").
# bodyattrs: any extra attributes for the <body> tag
# bodyclasses: array of extra CSS classes for the <body>
# onload: string. JavaScript code to run when the page finishes loading.
# javascript: string. Javascript to go in the header.
# javascript_urls: list. List of URLs to Javascript.
@ -106,8 +107,11 @@
#%]
<body bgcolor="[% bgcolor %]" onload="[% onload %]"
class="[% Param('urlbase').replace('^https?://','').replace('/$','').replace('[-~@:/.]+','-') %]"
[%+ bodyattrs %]>
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'