Commit e9f859e1 authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 696256: global/variables.none.tmpl should be PRE_PROCESS'ed

r/a=mkanat
parent 408ad74d
...@@ -610,7 +610,7 @@ sub create { ...@@ -610,7 +610,7 @@ sub create {
COMPILE_DIR => bz_locations()->{'template_cache'}, COMPILE_DIR => bz_locations()->{'template_cache'},
# Initialize templates (f.e. by loading plugins like Hook). # Initialize templates (f.e. by loading plugins like Hook).
PRE_PROCESS => ["global/initialize.none.tmpl"], PRE_PROCESS => ["global/variables.none.tmpl"],
ENCODING => Bugzilla->params->{'utf8'} ? 'UTF-8' : undef, ENCODING => Bugzilla->params->{'utf8'} ? 'UTF-8' : undef,
......
...@@ -19,7 +19,6 @@ ...@@ -19,7 +19,6 @@
# Gervase Markham <gerv@gerv.net> # Gervase Markham <gerv@gerv.net>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% INCLUDE global/header.html.tmpl title = "Voting" %] [% INCLUDE global/header.html.tmpl title = "Voting" %]
<p>[% terms.Bugzilla %] has a "voting" feature. Each product allows users to <p>[% terms.Bugzilla %] has a "voting" feature. Each product allows users to
......
...@@ -26,8 +26,6 @@ ...@@ -26,8 +26,6 @@
# vote_count: integer. The number of times that user has votes for this bug. # vote_count: integer. The number of times that user has votes for this bug.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% subheader = BLOCK %] [% subheader = BLOCK %]
[% "$terms.Bug $bug.id" FILTER bug_link(bug) FILTER none %] - [% bug.short_desc FILTER html %] [% "$terms.Bug $bug.id" FILTER bug_link(bug) FILTER none %] - [% bug.short_desc FILTER html %]
[% END %] [% END %]
......
...@@ -38,8 +38,6 @@ ...@@ -38,8 +38,6 @@
# all_bug_ids: List of all bug ids the user has voted for, across all products # all_bug_ids: List of all bug ids the user has voted for, across all products
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% IF !header_done %] [% IF !header_done %]
[% subheader = voting_user.login FILTER html %] [% subheader = voting_user.login FILTER html %]
[% IF canedit %] [% IF canedit %]
......
...@@ -22,8 +22,6 @@ ...@@ -22,8 +22,6 @@
# This template has no interface. # This template has no interface.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "Remove your votes?" title = "Remove your votes?"
%] %]
......
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
# Contributor(s): Emmanuel Seyman <eseyman@linagora.com> # Contributor(s): Emmanuel Seyman <eseyman@linagora.com>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
From: [% Param('mailfrom') %] From: [% Param('mailfrom') %]
To: [% to %] To: [% to %]
Subject: [% terms.Bug %] [%+ bugid %] Some or all of your votes have been removed. Subject: [% terms.Bug %] [%+ bugid %] Some or all of your votes have been removed.
......
...@@ -78,7 +78,7 @@ foreach my $include_path (@include_paths) { ...@@ -78,7 +78,7 @@ foreach my $include_path (@include_paths) {
# See Template.pm for the actual codebase definitions. # See Template.pm for the actual codebase definitions.
# Initialize templates (f.e. by loading plugins like Hook). # Initialize templates (f.e. by loading plugins like Hook).
PRE_PROCESS => "global/initialize.none.tmpl", PRE_PROCESS => "global/variables.none.tmpl",
FILTERS => FILTERS =>
{ {
......
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
# Contributor(s): Jacob Steenhagen <jake@bugzilla.org> # Contributor(s): Jacob Steenhagen <jake@bugzilla.org>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[%# Use the current script name. If an empty name is returned, [%# Use the current script name. If an empty name is returned,
# then we are accessing the home page. %] # then we are accessing the home page. %]
......
...@@ -26,8 +26,6 @@ ...@@ -26,8 +26,6 @@
[% IF !target %] [% IF !target %]
[% target = "index.cgi" %] [% target = "index.cgi" %]
[% END %] [% END %]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "Log in to $terms.Bugzilla", title = "Log in to $terms.Bugzilla",
......
...@@ -19,8 +19,6 @@ ...@@ -19,8 +19,6 @@
# Tobias Burnus <burnus@net-b.de> # Tobias Burnus <burnus@net-b.de>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
From: [% Param('mailfrom') %] From: [% Param('mailfrom') %]
To: [% emailaddress %] To: [% emailaddress %]
Subject: [% PROCESS subject %] Subject: [% PROCESS subject %]
......
...@@ -25,8 +25,6 @@ ...@@ -25,8 +25,6 @@
# Param("emailsuffix") is used to pre-fill the email field. # Param("emailsuffix") is used to pre-fill the email field.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% title = BLOCK %] [% title = BLOCK %]
Create a new [% terms.Bugzilla %] account Create a new [% terms.Bugzilla %] account
[% END %] [% END %]
......
...@@ -23,8 +23,6 @@ ...@@ -23,8 +23,6 @@
# login: string. The user's Bugzilla login email address. # login: string. The user's Bugzilla login email address.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% title = BLOCK %] [% title = BLOCK %]
Request for new user account '[% login FILTER html %]' submitted Request for new user account '[% login FILTER html %]' submitted
[% END %] [% END %]
......
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
# Contributor(s): John Vandenberg <zeroj@null.net> # Contributor(s): John Vandenberg <zeroj@null.net>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
From: [% Param('mailfrom') %] From: [% Param('mailfrom') %]
To: [% emailaddress %] To: [% emailaddress %]
Subject: [% terms.Bugzilla %] Change Email Address Request Subject: [% terms.Bugzilla %] Change Email Address Request
......
...@@ -23,8 +23,6 @@ ...@@ -23,8 +23,6 @@
# token: string. The token associated with this change. # token: string. The token associated with this change.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
From: [% Param('mailfrom') %] From: [% Param('mailfrom') %]
To: [% emailaddress %] To: [% emailaddress %]
Subject: [% terms.Bugzilla %] Change Email Address Request Subject: [% terms.Bugzilla %] Change Email Address Request
......
...@@ -19,8 +19,6 @@ ...@@ -19,8 +19,6 @@
# email: email address of the new account. # email: email address of the new account.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
From: [% Param('mailfrom') %] From: [% Param('mailfrom') %]
To: [% email %] To: [% email %]
Subject: [% terms.Bugzilla %]: confirm account creation Subject: [% terms.Bugzilla %]: confirm account creation
......
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
# Contributor(s): John Vandenberg <zeroj@null.net> # Contributor(s): John Vandenberg <zeroj@null.net>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
From: [% Param('mailfrom') %] From: [% Param('mailfrom') %]
To: [% emailaddress %] To: [% emailaddress %]
Subject: [% terms.Bugzilla %] Change Password Request Subject: [% terms.Bugzilla %] Change Password Request
......
...@@ -33,8 +33,6 @@ ...@@ -33,8 +33,6 @@
# receiving mail for that reason when in that role. # receiving mail for that reason when in that role.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
<p> <p>
If you don't like getting a notification for "trivial" If you don't like getting a notification for "trivial"
changes to [% terms.bugs %], you can use the settings below to changes to [% terms.bugs %], you can use the settings below to
......
...@@ -29,8 +29,6 @@ ...@@ -29,8 +29,6 @@
# other people. # other people.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
<table align="center"> <table align="center">
<tr> <tr>
<td> <td>
......
...@@ -13,8 +13,6 @@ ...@@ -13,8 +13,6 @@
# Contributor(s): Frédéric Buclin <LpSolit@gmail.com> # Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% title = BLOCK %] [% title = BLOCK %]
Administer your installation ([% terms.Bugzilla %] Administer your installation ([% terms.Bugzilla %]
[%+ constants.BUGZILLA_VERSION FILTER html %]) [%+ constants.BUGZILLA_VERSION FILTER html %])
......
...@@ -18,7 +18,5 @@ ...@@ -18,7 +18,5 @@
# Contributor(s): Nitish Bezzala <nbezzala@yahoo.com> # Contributor(s): Nitish Bezzala <nbezzala@yahoo.com>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
<p>Back to the <a href="./">main [% terms.bugs %] page</a> <p>Back to the <a href="./">main [% terms.bugs %] page</a>
or <a href="editclassifications.cgi"> edit</a> more classifications.</p> or <a href="editclassifications.cgi"> edit</a> more classifications.</p>
...@@ -26,8 +26,6 @@ ...@@ -26,8 +26,6 @@
# which the component belongs. # which the component belongs.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% title = BLOCK %] [% title = BLOCK %]
Edit component '[% comp.name FILTER html %]' of product '[% product.name FILTER html %]' Edit component '[% comp.name FILTER html %]' of product '[% product.name FILTER html %]'
[% END %] [% END %]
......
...@@ -25,8 +25,6 @@ ...@@ -25,8 +25,6 @@
# which the component belongs. # which the component belongs.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% title = BLOCK %]Select component of product [% title = BLOCK %]Select component of product
'[% product.name FILTER html %]'[% END %] '[% product.name FILTER html %]'[% END %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
......
...@@ -25,8 +25,6 @@ ...@@ -25,8 +25,6 @@
# showbugcounts: if defined, then bug counts should be included in the table # showbugcounts: if defined, then bug counts should be included in the table
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "Edit components for which product?" title = "Edit components for which product?"
%] %]
......
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
# field: Bugzilla::Field; The field this value belongs to. # field: Bugzilla::Field; The field this value belongs to.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% title = BLOCK %] [% title = BLOCK %]
Edit Value '[% value.name FILTER html %]' for the Edit Value '[% value.name FILTER html %]' for the
'[% field.description FILTER html %]' ([% field.name FILTER html %]) field '[% field.description FILTER html %]' ([% field.name FILTER html %]) field
......
...@@ -26,8 +26,6 @@ ...@@ -26,8 +26,6 @@
[% USE Bugzilla %] [% USE Bugzilla %]
[% cgi = Bugzilla.cgi %] [% cgi = Bugzilla.cgi %]
[% PROCESS global/variables.none.tmpl %]
[% title = BLOCK %]Select value for the '[% field.description FILTER html %]' [% title = BLOCK %]Select value for the '[% field.description FILTER html %]'
([% field.name FILTER html %]) field[% END %] ([% field.name FILTER html %]) field[% END %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
......
...@@ -23,8 +23,6 @@ ...@@ -23,8 +23,6 @@
[% USE Bugzilla %] [% USE Bugzilla %]
[% cgi = Bugzilla.cgi %] [% cgi = Bugzilla.cgi %]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "Edit values for which field?" title = "Edit values for which field?"
%] %]
......
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
# Contributor(s): Myk Melez <myk@mozilla.org> # Contributor(s): Myk Melez <myk@mozilla.org>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% title = BLOCK %]Confirm Deletion of Flag Type '[% flag_type.name FILTER html %]'[% END %] [% title = BLOCK %]Confirm Deletion of Flag Type '[% flag_type.name FILTER html %]'[% END %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
......
...@@ -20,8 +20,6 @@ ...@@ -20,8 +20,6 @@
# Frédéric Buclin <LpSolit@gmail.com> # Frédéric Buclin <LpSolit@gmail.com>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS "global/js-products.html.tmpl" %] [% PROCESS "global/js-products.html.tmpl" %]
[% IF action == "insert" %] [% IF action == "insert" %]
......
...@@ -19,8 +19,6 @@ ...@@ -19,8 +19,6 @@
# Frédéric Buclin <LpSolit@gmail.com> # Frédéric Buclin <LpSolit@gmail.com>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS "global/js-products.html.tmpl" %] [% PROCESS "global/js-products.html.tmpl" %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
......
...@@ -24,8 +24,6 @@ ...@@ -24,8 +24,6 @@
# keyword: A Bugzilla::Keyword object. # keyword: A Bugzilla::Keyword object.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "Edit keyword" title = "Edit keyword"
%] %]
......
...@@ -28,8 +28,6 @@ ...@@ -28,8 +28,6 @@
# - bug_count: number. The number of bugs with the keyword. # - bug_count: number. The number of bugs with the keyword.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "Select keyword" title = "Select keyword"
%] %]
......
...@@ -25,8 +25,6 @@ ...@@ -25,8 +25,6 @@
# milestone the user wants to edit. # milestone the user wants to edit.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% title = BLOCK %]Edit Milestone '[% milestone.name FILTER html %]' of product ' [% title = BLOCK %]Edit Milestone '[% milestone.name FILTER html %]' of product '
[%- product.name FILTER html %]'[% END %] [%- product.name FILTER html %]'[% END %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
......
...@@ -28,8 +28,6 @@ ...@@ -28,8 +28,6 @@
[% USE Bugzilla %] [% USE Bugzilla %]
[% cgi = Bugzilla.cgi %] [% cgi = Bugzilla.cgi %]
[% PROCESS global/variables.none.tmpl %]
[% title = BLOCK %]Select milestone of product [% title = BLOCK %]Select milestone of product
'[% product.name FILTER html %]'[% END %] '[% product.name FILTER html %]'[% END %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
......
...@@ -25,8 +25,6 @@ ...@@ -25,8 +25,6 @@
# showbugcounts: if defined, then bug counts should be included in the table # showbugcounts: if defined, then bug counts should be included in the table
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "Edit milestones for which product?" title = "Edit milestones for which product?"
%] %]
......
...@@ -24,8 +24,6 @@ ...@@ -24,8 +24,6 @@
# shutdown_is_active: boolean; is true when 'shutdownhtml' has been turned on. # shutdown_is_active: boolean; is true when 'shutdownhtml' has been turned on.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% curpanel = -1 %] [% curpanel = -1 %]
[% panels = panels.nsort('sortkey') %] [% panels = panels.nsort('sortkey') %]
......
...@@ -19,7 +19,6 @@ ...@@ -19,7 +19,6 @@
# #
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% title = BLOCK %] [% title = BLOCK %]
Confirm Group Control Change for product '[%- product.name FILTER html %]' Confirm Group Control Change for product '[%- product.name FILTER html %]'
[% END %] [% END %]
......
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
# Contributor(s): Joel Peshkin <bugreport@peshkin.net> # Contributor(s): Joel Peshkin <bugreport@peshkin.net>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% title = BLOCK %] [% title = BLOCK %]
Edit Group Controls for [% product.name FILTER html %] Edit Group Controls for [% product.name FILTER html %]
[% END %] [% END %]
......
...@@ -21,8 +21,6 @@ ...@@ -21,8 +21,6 @@
# #
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "Select Classification" title = "Select Classification"
%] %]
......
...@@ -22,8 +22,6 @@ ...@@ -22,8 +22,6 @@
# showbugcounts: boolean; true if bug counts should be included in the table # showbugcounts: boolean; true if bug counts should be included in the table
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% IF classification %] [% IF classification %]
[% classification_url_part = BLOCK %]&amp;classification= [% classification_url_part = BLOCK %]&amp;classification=
[%- classification.name FILTER uri %] [%- classification.name FILTER uri %]
......
...@@ -15,8 +15,6 @@ ...@@ -15,8 +15,6 @@
# Contributor(s): Frédéric Buclin <LpSolit@gmail.com> # Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl title = "Sanity Check" [% PROCESS global/header.html.tmpl title = "Sanity Check"
style_urls = ['skins/standard/admin.css'] %] style_urls = ['skins/standard/admin.css'] %]
......
...@@ -15,8 +15,6 @@ ...@@ -15,8 +15,6 @@
# Contributor(s): Frédéric Buclin <LpSolit@gmail.com> # Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% san_message = BLOCK %] [% san_message = BLOCK %]
[% IF san_tag == "checks_start" %] [% IF san_tag == "checks_start" %]
OK, now running sanity checks. OK, now running sanity checks.
......
...@@ -17,8 +17,6 @@ ...@@ -17,8 +17,6 @@
# #
# Contributor(s): A. Karl Kornel <karl@kornel.name> # Contributor(s): A. Karl Kornel <karl@kornel.name>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "Begin sudo session" title = "Begin sudo session"
......
...@@ -25,8 +25,6 @@ ...@@ -25,8 +25,6 @@
# version the user wants to edit. # version the user wants to edit.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% title = BLOCK %]Edit Version '[% version.name FILTER html %]' of product ' [% title = BLOCK %]Edit Version '[% version.name FILTER html %]' of product '
[%- product.name FILTER html %]'[% END %] [%- product.name FILTER html %]'[% END %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
......
...@@ -24,8 +24,6 @@ ...@@ -24,8 +24,6 @@
# which the versions belongs. # which the versions belongs.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% title = BLOCK %]Select version of product [% title = BLOCK %]Select version of product
'[% product.name FILTER html %]'[% END %] '[% product.name FILTER html %]'[% END %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
......
...@@ -25,8 +25,6 @@ ...@@ -25,8 +25,6 @@
# showbugcounts: if defined, then bug counts should be included in the table # showbugcounts: if defined, then bug counts should be included in the table
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "Edit versions for which product?" title = "Edit versions for which product?"
%] %]
......
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
# Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org> # Contributor(s): Gavin Shelley <bugzilla@chimpychompy.org>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "Locate attachment", title = "Locate attachment",
onload = "document.forms['choose-id'].id.focus()" onload = "document.forms['choose-id'].id.focus()"
......
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
# token: string; The token used to identify the session. # token: string; The token used to identify the session.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% title = BLOCK %] [% title = BLOCK %]
Delete Attachment [% a.id FILTER html %] of [% terms.Bug %] [%+ a.bug_id FILTER html %] Delete Attachment [% a.id FILTER html %] of [% terms.Bug %] [%+ a.bug_id FILTER html %]
[% END %] [% END %]
......
...@@ -24,7 +24,6 @@ ...@@ -24,7 +24,6 @@
# Possible values: autodetect, list, manual. # Possible values: autodetect, list, manual.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% bug = bugs.0 %] [% bug = bugs.0 %]
[% PROCESS "bug/show-header.html.tmpl" %] [% PROCESS "bug/show-header.html.tmpl" %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
......
...@@ -23,8 +23,6 @@ ...@@ -23,8 +23,6 @@
[% IF headers %] [% IF headers %]
<br> <br>
[% PROCESS global/variables.none.tmpl %]
<span>Return to [% "$terms.bug $bugid" FILTER bug_link(bugid) FILTER none %]</span> <span>Return to [% "$terms.bug $bugid" FILTER bug_link(bugid) FILTER none %]</span>
[% PROCESS global/footer.html.tmpl %] [% PROCESS global/footer.html.tmpl %]
......
...@@ -20,8 +20,6 @@ ...@@ -20,8 +20,6 @@
[%# Define strings that will serve as the title and header of this page %] [%# Define strings that will serve as the title and header of this page %]
[% PROCESS global/variables.none.tmpl %]
[% title = BLOCK %] [% title = BLOCK %]
[% IF attachid %] [% IF attachid %]
Attachment #[% attachid %] for [% terms.bug %] #[% bugid %] Attachment #[% attachid %] for [% terms.bug %] #[% bugid %]
......
...@@ -20,8 +20,6 @@ ...@@ -20,8 +20,6 @@
# Guy Pyrzak <guy.pyrzak@gmail.com> # Guy Pyrzak <guy.pyrzak@gmail.com>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[%# Define strings that will serve as the title and header of this page %] [%# Define strings that will serve as the title and header of this page %]
[% title = BLOCK %] [% title = BLOCK %]
Attachment [% attachment.id %] Details for [% terms.Bug %] [%+ attachment.bug_id %] Attachment [% attachment.id %] Details for [% terms.Bug %] [%+ attachment.bug_id %]
......
...@@ -31,7 +31,6 @@ ...@@ -31,7 +31,6 @@
[% USE Bugzilla %] [% USE Bugzilla %]
[% cgi = Bugzilla.cgi %] [% cgi = Bugzilla.cgi %]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl title = "Mid-air collision!" %] [% PROCESS global/header.html.tmpl title = "Mid-air collision!" %]
<h1>Mid-air collision detected!</h1> <h1>Mid-air collision detected!</h1>
......
...@@ -18,7 +18,6 @@ ...@@ -18,7 +18,6 @@
# Contributor(s): Myk Melez <myk@mozilla.org> # Contributor(s): Myk Melez <myk@mozilla.org>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% filtered_summary = bugsummary FILTER html %] [% filtered_summary = bugsummary FILTER html %]
[% header = BLOCK %]View All Attachments for [% header = BLOCK %]View All Attachments for
[%+ "$terms.Bug $bug.id" FILTER bug_link(bug) FILTER none %][% END %] [%+ "$terms.Bug $bug.id" FILTER bug_link(bug) FILTER none %][% END %]
......
...@@ -23,7 +23,6 @@ ...@@ -23,7 +23,6 @@
# attachment: object of the attachment we just attached. # attachment: object of the attachment we just attached.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% bug = bugs.0 %] [% bug = bugs.0 %]
[% PROCESS "bug/show-header.html.tmpl" %] [% PROCESS "bug/show-header.html.tmpl" %]
......
...@@ -26,8 +26,6 @@ ...@@ -26,8 +26,6 @@
# activity/table.html.tmpl template fulfilled. # activity/table.html.tmpl template fulfilled.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% filtered_desc = bug.short_desc FILTER html %] [% filtered_desc = bug.short_desc FILTER html %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "Changes made to $terms.bug $bug.bug_id" title = "Changes made to $terms.bug $bug.bug_id"
......
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
# Contributor(s): Gervase Markham <gerv@gerv.net> # Contributor(s): Gervase Markham <gerv@gerv.net>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "Search by $terms.bug number" title = "Search by $terms.bug number"
%] %]
......
...@@ -28,8 +28,6 @@ ...@@ -28,8 +28,6 @@
# template bug/edit.html.tmpl # template bug/edit.html.tmpl
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS "bug/show-header.html.tmpl" %] [% PROCESS "bug/show-header.html.tmpl" %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "$terms.Bug $id Submitted &ndash; $filtered_desc" title = "$terms.Bug $id Submitted &ndash; $filtered_desc"
......
...@@ -24,8 +24,6 @@ ...@@ -24,8 +24,6 @@
# short_desc: Bug summary as entered in the form. # short_desc: Bug summary as entered in the form.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "Bookmarks are your friend" title = "Bookmarks are your friend"
header = "Template constructed" header = "Template constructed"
......
...@@ -27,8 +27,6 @@ ...@@ -27,8 +27,6 @@
# the 'product' variable. # the 'product' variable.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
Before reporting [% terms.abug %], please read the Before reporting [% terms.abug %], please read the
<a href="page.cgi?id=bug-writing.html"> <a href="page.cgi?id=bug-writing.html">
[% terms.bug %] writing guidelines</a>, please look at the list of [% terms.bug %] writing guidelines</a>, please look at the list of
......
...@@ -30,8 +30,6 @@ ...@@ -30,8 +30,6 @@
dependencies. (Optional) dependencies. (Optional)
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% title = "Dependency Graph" [% title = "Dependency Graph"
header = title header = title
%] %]
......
...@@ -24,8 +24,6 @@ ...@@ -24,8 +24,6 @@
# Elliotte Martin <emartin@everythingsolved.com> # Elliotte Martin <emartin@everythingsolved.com>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS "global/field-descs.none.tmpl" %] [% PROCESS "global/field-descs.none.tmpl" %]
[% PROCESS bug/time.html.tmpl %] [% PROCESS bug/time.html.tmpl %]
......
...@@ -29,7 +29,6 @@ ...@@ -29,7 +29,6 @@
#%] #%]
[%# Please don't use field-descs here. It can slow down Bugzilla. %] [%# Please don't use field-descs here. It can slow down Bugzilla. %]
[% PROCESS 'global/variables.none.tmpl' %]
[% SET comment_body = comment.body %] [% SET comment_body = comment.body %]
......
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
# Guy Pyrzak <guy.pyrzak@gmail.com> # Guy Pyrzak <guy.pyrzak@gmail.com>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
<div id="status"> <div id="status">
[% PROCESS bug/field.html.tmpl [% PROCESS bug/field.html.tmpl
no_tds = 1 no_tds = 1
......
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
[% RETURN IF !bug %] [% RETURN IF !bug %]
[% PROCESS global/variables.none.tmpl %]
[% IF bottom_navigator == 1 %] [% IF bottom_navigator == 1 %]
<ul class="related_actions"> <ul class="related_actions">
<li><a href="show_bug.cgi?format=multiple&amp;id= <li><a href="show_bug.cgi?format=multiple&amp;id=
......
...@@ -24,8 +24,6 @@ ...@@ -24,8 +24,6 @@
# sent_bugmail: The results of Bugzilla::BugMail::Send(). # sent_bugmail: The results of Bugzilla::BugMail::Send().
#%] #%]
[% PROCESS global/variables.none.tmpl %]
<dl> <dl>
[% PROCESS emails [% PROCESS emails
description = "Email sent to" description = "Email sent to"
......
...@@ -27,7 +27,6 @@ ...@@ -27,7 +27,6 @@
# of the original bug can access that bug. # of the original bug can access that bug.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl title="Duplicate Warning" %] [% PROCESS global/header.html.tmpl title="Duplicate Warning" %]
[% orig_bug = "$terms.bug $original_bug_id" [% orig_bug = "$terms.bug $original_bug_id"
FILTER bug_link(original_bug_id) %] FILTER bug_link(original_bug_id) %]
......
...@@ -22,8 +22,6 @@ ...@@ -22,8 +22,6 @@
# As global/header.html.tmpl. # As global/header.html.tmpl.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% USE Bugzilla %] [% USE Bugzilla %]
[% PROCESS "bug/show-header.html.tmpl" %] [% PROCESS "bug/show-header.html.tmpl" %]
......
...@@ -35,8 +35,6 @@ ...@@ -35,8 +35,6 @@
[% USE Bugzilla %] [% USE Bugzilla %]
[% cgi = Bugzilla.cgi %] [% cgi = Bugzilla.cgi %]
[% PROCESS global/variables.none.tmpl %]
[% UNLESS header_done %] [% UNLESS header_done %]
[% PROCESS bug/process/header.html.tmpl %] [% PROCESS bug/process/header.html.tmpl %]
[% END %] [% END %]
......
...@@ -26,8 +26,6 @@ ...@@ -26,8 +26,6 @@
# and "dep" when a bug is checked for changes to its dependencies. # and "dep" when a bug is checked for changes to its dependencies.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% UNLESS header_done %] [% UNLESS header_done %]
[% PROCESS bug/process/header.html.tmpl %] [% PROCESS bug/process/header.html.tmpl %]
[% END %] [% END %]
......
...@@ -31,8 +31,6 @@ ...@@ -31,8 +31,6 @@
# verify_bug_groups: If groups need to be confirmed in addition to fields. # verify_bug_groups: If groups need to be confirmed in addition to fields.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = 'Verify New Product Details...' %] title = 'Verify New Product Details...' %]
......
...@@ -21,8 +21,6 @@ ...@@ -21,8 +21,6 @@
# Max Kanat-Alexander <mkanat@bugzilla.org> # Max Kanat-Alexander <mkanat@bugzilla.org>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[%# This script/template only handles one bug #%] [%# This script/template only handles one bug #%]
[% bug = bugs.0 %] [% bug = bugs.0 %]
......
...@@ -20,8 +20,6 @@ ...@@ -20,8 +20,6 @@
# Frédéric Buclin <LpSolit@gmail.com> # Frédéric Buclin <LpSolit@gmail.com>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% bugidsummary = bug.bug_id _ ': ' _ bug.short_desc %] [% bugidsummary = bug.bug_id _ ': ' _ bug.short_desc %]
[% attidsummary = attachment.id _ ': ' _ attachment.description %] [% attidsummary = attachment.id _ ': ' _ attachment.description %]
[% flagtype_name = flag ? flag.type.name : old_flag.type.name %] [% flagtype_name = flag ? flag.type.name : old_flag.type.name %]
......
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
# Max Kanat-Alexander <mkanat@bugzilla.org> # Max Kanat-Alexander <mkanat@bugzilla.org>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
From: [% Param('mailfrom') %] From: [% Param('mailfrom') %]
To: [% Param('maintainer') %] To: [% Param('maintainer') %]
Subject: [[% terms.Bugzilla %]] Account Lock-Out: [% locked_user.login %] ([% attempts.0.ip_addr %]) Subject: [[% terms.Bugzilla %]] Account Lock-Out: [% locked_user.login %] ([% attempts.0.ip_addr %])
......
...@@ -18,7 +18,6 @@ ...@@ -18,7 +18,6 @@
# Contributor(s): Frédéric Buclin <LpSolit@gmail.com> # Contributor(s): Frédéric Buclin <LpSolit@gmail.com>
#%] #%]
[% PROCESS "global/variables.none.tmpl" %]
From: [% Param('mailfrom') %] From: [% Param('mailfrom') %]
To: [% addressee %] To: [% addressee %]
Subject: [[% terms.Bugzilla %]] Sanity Check Results Subject: [[% terms.Bugzilla %]] Sanity Check Results
......
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
# Contributor(s): A. Karl Kornel <karl@kornel.name> # Contributor(s): A. Karl Kornel <karl@kornel.name>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
Content-Type: text/plain Content-Type: text/plain
From: [% Param('mailfrom') %] From: [% Param('mailfrom') %]
To: [% user.email %] To: [% user.email %]
......
...@@ -23,8 +23,6 @@ ...@@ -23,8 +23,6 @@
# name: string; The name of the extension. # name: string; The name of the extension.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS extensions/license.txt.tmpl %] [% PROCESS extensions/license.txt.tmpl %]
package B[% %]ugzilla::Extension::[% name %]; package B[% %]ugzilla::Extension::[% name %];
......
...@@ -23,8 +23,6 @@ ...@@ -23,8 +23,6 @@
# name: string; The name of the extension. # name: string; The name of the extension.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS extensions/license.txt.tmpl %] [% PROCESS extensions/license.txt.tmpl %]
package B[% %]ugzilla::Extension::[% name %]; package B[% %]ugzilla::Extension::[% name %];
......
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
# Max Kanat-Alexander <mkanat@bugzilla.org> # Max Kanat-Alexander <mkanat@bugzilla.org>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
Template hooks go in this directory. Template hooks are called in normal Template hooks go in this directory. Template hooks are called in normal
[%+ terms.Bugzilla %] templates like [[% '%' %] Hook.process('some-hook') %]. [%+ terms.Bugzilla %] templates like [[% '%' %] Hook.process('some-hook') %].
More information about them can be found in the documentation of More information about them can be found in the documentation of
......
...@@ -23,8 +23,6 @@ ...@@ -23,8 +23,6 @@
# name: string; The name of the extension. # name: string; The name of the extension.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
# -*- Mode: perl; indent-tabs-mode: nil -*- # -*- Mode: perl; indent-tabs-mode: nil -*-
# #
# The contents of this file are subject to the Mozilla Public # The contents of this file are subject to the Mozilla Public
......
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
# Max Kanat-Alexander <mkanat@bugzilla.org> # Max Kanat-Alexander <mkanat@bugzilla.org>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
Normal templates go in this directory. You can load them in your Normal templates go in this directory. You can load them in your
code like this: code like this:
......
...@@ -23,8 +23,6 @@ ...@@ -23,8 +23,6 @@
# name: string; The name of the extension. # name: string; The name of the extension.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS extensions/license.txt.tmpl %] [% PROCESS extensions/license.txt.tmpl %]
package B[% %]ugzilla::Extension::[% name %]::Util; package B[% %]ugzilla::Extension::[% name %]::Util;
......
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
# Max Kanat-Alexander <mkanat@bugzilla.org> # Max Kanat-Alexander <mkanat@bugzilla.org>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
Web-accessible files, like JavaScript, CSS, and images go in this Web-accessible files, like JavaScript, CSS, and images go in this
directory. You can reference them directly in your HTML. For example, directory. You can reference them directly in your HTML. For example,
if you have a file called "style.css" and your extension is called if you have a file called "style.css" and your extension is called
......
...@@ -27,8 +27,6 @@ ...@@ -27,8 +27,6 @@
# format: the desired format to display the target. # format: the desired format to display the target.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% IF target == "enter_bug.cgi" %] [% IF target == "enter_bug.cgi" %]
[% title = "Enter $terms.Bug" %] [% title = "Enter $terms.Bug" %]
[% h2 = BLOCK %]First, you must pick a product on which to enter [% terms.abug %]: [% END %] [% h2 = BLOCK %]First, you must pick a product on which to enter [% terms.abug %]: [% END %]
......
...@@ -21,8 +21,6 @@ ...@@ -21,8 +21,6 @@
[%# Remember to PROCESS rather than INCLUDE this template. %] [%# Remember to PROCESS rather than INCLUDE this template. %]
[% PROCESS global/variables.none.tmpl %]
[% SET search_descs = { [% SET search_descs = {
"noop" => "---", "noop" => "---",
"equals" => "is equal to", "equals" => "is equal to",
......
[%# The contents of this file are subject to the Mozilla Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is the Bugzilla Bug Tracking System.
#
# The Initial Developer of the Original Code is Netscape Communications
# Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s): Myk Melez <myk@mozilla.org>
#%]
[%# This template is a place to put directives that should get processed
# every time a primary template gets processed. Primary templates are those
# called from Perl code rather than from other templates via the PROCESS
# and INCLUDE directives.
#
# This template gets auto-processed at the beginning of primary templates
# via the PRE_PROCESS configuration parameter. Note that it gets processed
# for non-HTML templates too, so don't put HTML-specific stuff in here;
# put that into header.html.tmpl instead.
#%]
[% USE Hook %]
...@@ -23,8 +23,6 @@ ...@@ -23,8 +23,6 @@
# link: string. The link text for that URL. # link: string. The link text for that URL.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% DEFAULT title = "$terms.Bugzilla Message" %] [% DEFAULT title = "$terms.Bugzilla Message" %]
[% PROCESS global/header.html.tmpl %] [% PROCESS global/header.html.tmpl %]
......
...@@ -17,8 +17,6 @@ ...@@ -17,8 +17,6 @@
# Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org> # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[%# Yes, this may show some HTML. But it's the best we [%# Yes, this may show some HTML. But it's the best we
# can do at the moment. %] # can do at the moment. %]
[% PROCESS global/messages.html.tmpl %] [% PROCESS global/messages.html.tmpl %]
......
...@@ -23,8 +23,6 @@ ...@@ -23,8 +23,6 @@
# alphabetical order by message tag, and leave a blank line between messages. # alphabetical order by message tag, and leave a blank line between messages.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS "global/field-descs.none.tmpl" %] [% PROCESS "global/field-descs.none.tmpl" %]
[% message_tag = message %] [% message_tag = message %]
......
...@@ -16,8 +16,6 @@ ...@@ -16,8 +16,6 @@
[%# Remember to PROCESS rather than INCLUDE this template. %] [%# Remember to PROCESS rather than INCLUDE this template. %]
[% PROCESS global/variables.none.tmpl %]
[% setting_descs = { [% setting_descs = {
"comment_sort_order" => "When viewing $terms.abug, show comments in this order", "comment_sort_order" => "When viewing $terms.abug, show comments in this order",
"csv_colsepchar" => "Field separator character for CSV files", "csv_colsepchar" => "Field separator character for CSV files",
......
...@@ -23,8 +23,6 @@ ...@@ -23,8 +23,6 @@
# bug.bug_id: integer. Number of current bug (for navigation purposes) # bug.bug_id: integer. Number of current bug (for navigation purposes)
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% USE Bugzilla %] [% USE Bugzilla %]
[% cgi = Bugzilla.cgi %] [% cgi = Bugzilla.cgi %]
......
...@@ -23,8 +23,6 @@ ...@@ -23,8 +23,6 @@
[%# Migration note: this whole file corresponds to the old %commandmenu% [%# Migration note: this whole file corresponds to the old %commandmenu%
substitution param in 'footerhtml' %] substitution param in 'footerhtml' %]
[% PROCESS global/variables.none.tmpl %]
<ul id="useful-links"> <ul id="useful-links">
<li id="links-actions"> <li id="links-actions">
[% PROCESS "global/common-links.html.tmpl" qs_suffix = "_bottom" %] [% PROCESS "global/common-links.html.tmpl" qs_suffix = "_bottom" %]
......
...@@ -39,8 +39,6 @@ ...@@ -39,8 +39,6 @@
# nobody can guarantee the hook files processing order in the future. # nobody can guarantee the hook files processing order in the future.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS "global/field-descs.none.tmpl" %] [% PROCESS "global/field-descs.none.tmpl" %]
[% DEFAULT title = "Error" %] [% DEFAULT title = "Error" %]
......
...@@ -41,4 +41,5 @@ ...@@ -41,4 +41,5 @@
} }
%] %]
[% USE Hook %]
[% Hook.process("end") %] [% Hook.process("end") %]
...@@ -26,9 +26,6 @@ ...@@ -26,9 +26,6 @@
# release: a hash containing data about new releases, if any. # release: a hash containing data about new releases, if any.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "$terms.Bugzilla Main Page" title = "$terms.Bugzilla Main Page"
header = "Main Page" header = "Main Page"
......
...@@ -19,8 +19,6 @@ ...@@ -19,8 +19,6 @@
# Pascal Held <paheld@gmail.com> # Pascal Held <paheld@gmail.com>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "Change Columns" title = "Change Columns"
javascript_urls = "js/change-columns.js" javascript_urls = "js/change-columns.js"
......
...@@ -22,18 +22,8 @@ ...@@ -22,18 +22,8 @@
# title: string. The title for this page. (optional) # title: string. The title for this page. (optional)
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[%############################################################################%]
[%# Initialization #%]
[%############################################################################%]
[% DEFAULT title = "$terms.Bug List" %] [% DEFAULT title = "$terms.Bug List" %]
[%############################################################################%]
[%# Bug Table #%]
[%############################################################################%]
<html> <html>
<head> <head>
......
...@@ -17,7 +17,6 @@ ...@@ -17,7 +17,6 @@
# #
# Contributor(s): William Jon McCann <mccann@jhu.edu> # Contributor(s): William Jon McCann <mccann@jhu.edu>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
BEGIN:VCALENDAR BEGIN:VCALENDAR
CALSCALE:GREGORIAN CALSCALE:GREGORIAN
[%+ PROCESS ics_prodid +%] [%+ PROCESS ics_prodid +%]
......
...@@ -26,8 +26,6 @@ ...@@ -26,8 +26,6 @@
# List of all quips. # List of all quips.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "$terms.Bugzilla Quip System" title = "$terms.Bugzilla Quip System"
header = "Add your own clever headline" header = "Add your own clever headline"
......
...@@ -23,8 +23,6 @@ ...@@ -23,8 +23,6 @@
# query: string. The SQL query which makes the buglist. # query: string. The SQL query which makes the buglist.
#%] #%]
[% PROCESS global/variables.none.tmpl %]
<html> <html>
<head> <head>
<title>[% terms.Bugzilla %] is pondering your search</title> <title>[% terms.Bugzilla %] is pondering your search</title>
......
...@@ -19,7 +19,6 @@ ...@@ -19,7 +19,6 @@
# Gervase Markham <gerv@gerv.net> # Gervase Markham <gerv@gerv.net>
#%] #%]
[% PROCESS global/variables.none.tmpl %]
[% INCLUDE global/header.html.tmpl title = "Linkify Text" %] [% INCLUDE global/header.html.tmpl title = "Linkify Text" %]
<p> <p>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment