Patch adds a version string to every template and a check in t/004template.t to check for version strings in templates. Note that two templates that were not included in the initial patch now have version strings added. r=justdave, r2=myk git-svn-id: svn://10.0.0.236/trunk@118028 18797224-902f-48f8-a5cc-f745e15eee43
59 lines
1.3 KiB
Plaintext
Executable File
59 lines
1.3 KiB
Plaintext
Executable File
<!-- 1.0@bugzilla.org -->
|
|
[% DEFAULT
|
|
title = ""
|
|
h1 = title
|
|
h2 = ""
|
|
extra = ""
|
|
jscript = ""
|
|
style = ""
|
|
message = ""
|
|
%]
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<title>[% title %]</title>
|
|
|
|
[% Param('headerhtml') %]
|
|
|
|
[% jscript %]
|
|
|
|
[% IF style %]
|
|
<style type="text/css">
|
|
[% style %]
|
|
</style>
|
|
[% END %]
|
|
|
|
[% IF style_url %]
|
|
<link href="[% style_url %]" rel="stylesheet" type="text/css">
|
|
[% END %]
|
|
|
|
</head>
|
|
|
|
<body [% Param('bodyhtml') %][% " " %][% extra %]>
|
|
|
|
[% PerformSubsts(Param('bannerhtml')) %]
|
|
|
|
[% IF h1 || h2 %]
|
|
<table border="0" cellspacing="0">
|
|
<tr>
|
|
<td valign="top" align="left">
|
|
<table border="0" cellpadding="0" cellspacing="2">
|
|
<tr>
|
|
<td valign="top" align="left" nowrap>
|
|
<font size="+1"><b>[% h1 %]</b></font>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
<td valign="middle"> </td>
|
|
<td valign="middle" align="left">[% h2 %]</td>
|
|
</tr>
|
|
</table>
|
|
[% END %]
|
|
|
|
[% IF message %]
|
|
<table width="100%" cellspacing="0" cellpadding="5" border="1"><tr><td>
|
|
<font color="green">[% message %]</font>
|
|
</td></tr></table>
|
|
[% END %]
|