From 8f35cfedd052502f5606c88d400939fc425c6a13 Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" <> Date: Mon, 6 Jan 2003 15:54:16 +0000 Subject: Bug 181047 - Change non-output templates to have a ctype of "none". Patch by gerv; r=bbaetz, a=justdave. --- .../en/default/global/confirm-user-match.html.tmpl | 2 +- template/en/default/global/field-descs.html.tmpl | 60 ---------------------- template/en/default/global/field-descs.none.tmpl | 60 ++++++++++++++++++++++ template/en/default/global/user-error.html.tmpl | 2 +- 4 files changed, 62 insertions(+), 62 deletions(-) delete mode 100644 template/en/default/global/field-descs.html.tmpl create mode 100644 template/en/default/global/field-descs.none.tmpl (limited to 'template/en/default/global') diff --git a/template/en/default/global/confirm-user-match.html.tmpl b/template/en/default/global/confirm-user-match.html.tmpl index dd624dbdd..92fa47a53 100644 --- a/template/en/default/global/confirm-user-match.html.tmpl +++ b/template/en/default/global/confirm-user-match.html.tmpl @@ -39,7 +39,7 @@ #%] [% # use the global field descs %] -[% PROCESS "global/field-descs.html.tmpl" %] +[% PROCESS "global/field-descs.none.tmpl" %] [% IF matchsuccess == 1 %] [% PROCESS global/header.html.tmpl title="Confirm Match" %] diff --git a/template/en/default/global/field-descs.html.tmpl b/template/en/default/global/field-descs.html.tmpl deleted file mode 100644 index 6d8086423..000000000 --- a/template/en/default/global/field-descs.html.tmpl +++ /dev/null @@ -1,60 +0,0 @@ -[%# 1.0@bugzilla.org %] -[%# 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): Gervase Markham - #%] - -[%# Remember to PROCESS rather than INCLUDE this template. %] - -[% field_descs = { "[Bug creation]" => "[Bug creation]", - "alias" => "Alias", - "assigned_to" => "Assignee", - "bug_file_loc" => "URL", - "bug_id" => "Bug ID", - "bug_severity" => "Severity", - "bug_status" => "Status", - "changeddate" => "Last Changed Date", - "cc" => "CC", - "cclist_accessible" => "CC list accessible?", - "component_id" => "Component ID", - "component" => "Component", - "creation_ts" => "Bug Creation time", - "delta_ts" => "Last Changed time", - "estimated_time" => "Orig. Est.", - "everconfirmed" => "Ever confirmed?", - "groupset" => "Groupset", - "keywords" => "Keywords", - "newcc" => "CC", - "op_sys" => "OS", - "opendate" => "Open Date", - "percentage_complete" => "%Complete", - "priority" => "Priority", - "product_id" => "Product ID", - "product" => "Product", - "qa_contact" => "QA Contact", - "remaining_time" => "Hours Left", - "rep_platform" => "Hardware", - "reporter" => "Reporter", - "reporter_accessible" => "Reporter accessible?", - "resolution" => "Resolution", - "short_desc" => "Summary", - "status_whiteboard" => "Whiteboard", - "target_milestone" => "Target Milestone", - "version" => "Version", - "votes" => "Votes", - "work_time" => "Hours Worked"} %] diff --git a/template/en/default/global/field-descs.none.tmpl b/template/en/default/global/field-descs.none.tmpl new file mode 100644 index 000000000..6d8086423 --- /dev/null +++ b/template/en/default/global/field-descs.none.tmpl @@ -0,0 +1,60 @@ +[%# 1.0@bugzilla.org %] +[%# 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): Gervase Markham + #%] + +[%# Remember to PROCESS rather than INCLUDE this template. %] + +[% field_descs = { "[Bug creation]" => "[Bug creation]", + "alias" => "Alias", + "assigned_to" => "Assignee", + "bug_file_loc" => "URL", + "bug_id" => "Bug ID", + "bug_severity" => "Severity", + "bug_status" => "Status", + "changeddate" => "Last Changed Date", + "cc" => "CC", + "cclist_accessible" => "CC list accessible?", + "component_id" => "Component ID", + "component" => "Component", + "creation_ts" => "Bug Creation time", + "delta_ts" => "Last Changed time", + "estimated_time" => "Orig. Est.", + "everconfirmed" => "Ever confirmed?", + "groupset" => "Groupset", + "keywords" => "Keywords", + "newcc" => "CC", + "op_sys" => "OS", + "opendate" => "Open Date", + "percentage_complete" => "%Complete", + "priority" => "Priority", + "product_id" => "Product ID", + "product" => "Product", + "qa_contact" => "QA Contact", + "remaining_time" => "Hours Left", + "rep_platform" => "Hardware", + "reporter" => "Reporter", + "reporter_accessible" => "Reporter accessible?", + "resolution" => "Resolution", + "short_desc" => "Summary", + "status_whiteboard" => "Whiteboard", + "target_milestone" => "Target Milestone", + "version" => "Version", + "votes" => "Votes", + "work_time" => "Hours Worked"} %] diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 965a3fb27..33ebb9472 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -29,7 +29,7 @@ # alphabetical order by error tag, and leave a blank line between errors. #%] -[% PROCESS "global/field-descs.html.tmpl" %] +[% PROCESS "global/field-descs.none.tmpl" %] [% DEFAULT title = "Error" %] -- cgit v1.2.1