summaryrefslogtreecommitdiffstats
path: root/template/default/info
diff options
context:
space:
mode:
authorgerv%gerv.net <>2002-04-26 02:21:24 +0200
committergerv%gerv.net <>2002-04-26 02:21:24 +0200
commita5996961f534b606e2057b901909759cb5d4d3fd (patch)
tree7da7b3a0670e505f5914788fca178603ac8156ac /template/default/info
parentdcba2bd7a21ae0415d1b743c8a8caa0ba517c0da (diff)
downloadbugzilla-a5996961f534b606e2057b901909759cb5d4d3fd.tar.gz
bugzilla-a5996961f534b606e2057b901909759cb5d4d3fd.tar.xz
Bug 139928 - cvs remove templates from template/default directory. These templates now all live in template/en/default, for l10n purposes.
Diffstat (limited to 'template/default/info')
-rw-r--r--template/default/info/describe-components.tmpl88
-rw-r--r--template/default/info/describe-keywords.html.tmpl75
-rw-r--r--template/default/info/quips.tmpl65
3 files changed, 0 insertions, 228 deletions
diff --git a/template/default/info/describe-components.tmpl b/template/default/info/describe-components.tmpl
deleted file mode 100644
index c9dacca10..000000000
--- a/template/default/info/describe-components.tmpl
+++ /dev/null
@@ -1,88 +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): Bradley Baetz <bbaetz@student.usyd.edu.au>
- #%]
-
-[% filtered_product = product FILTER html %]
-[% INCLUDE global/header
- title = "Components for $product"
- h2 = filtered_product %]
-
-[% IF Param("useqacontact") %]
- [% numcols = 3 %]
-[% ELSE %]
- [% numcols = 2 %]
-[% END %]
-
-[% IF components.size == 0 %]
- This product has no components.
-[% ELSE %]
- <table>
- <tr>
- <th align="left">Component</th>
- <th align="left">Default Owner</th>
- [% IF Param("useqacontact") %]
- <th align="left">Default QA Contact</th>
- [% END %]
- </tr>
-
- [% FOREACH comp = components.sort %]
- [% INCLUDE describe_comp %]
- [% END %]
- <tr>
- <td colspan='[% numcols %]'>
- <hr>
- </td>
- </tr>
- </table>
-[% END %]
-
-[% INCLUDE global/footer %]
-
-[%############################################################################%]
-[%# BLOCK for components %]
-[%############################################################################%]
-
-[% BLOCK describe_comp %]
- <tr>
- <td colspan="[% numcols %]">
- <hr>
- </td>
- </tr>
- <tr>
- <td rowspan='2'>
- <a name="[% comp.name FILTER html %]">[% comp.name FILTER html %]</a>
- </td>
- <td>
- <a href="mailto:[% comp.initialowner %][% Param('emailsuffix') %]">
- [% comp.initialowner FILTER html %]</a>
- </td>
- [% IF Param("useqacontact") %]
- <td>
- <a href="mailto:[% comp.initialqacontact %][% Param('emailsuffix') %]">
- [% comp.initialqacontact %]</a>
- </td>
- [% END %]
- </tr>
- <tr>
- <td colspan="[% numcols - 1 %]">
- [% comp.description %]
- </td>
- </tr>
-[% END %]
diff --git a/template/default/info/describe-keywords.html.tmpl b/template/default/info/describe-keywords.html.tmpl
deleted file mode 100644
index 1769df85d..000000000
--- a/template/default/info/describe-keywords.html.tmpl
+++ /dev/null
@@ -1,75 +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 <gerv@gerv.net>
- #%]
-
-[%# INTERFACE:
- # keywords: array of hashes. May be empty. Each has has three members:
- # name: the name of the keyword
- # description: keyword description. May be HTML.
- # bugcount: number of bugs with that keyword
- # caneditkeywords: boolean. True if this user can edit keywords
- %]
-
-[% INCLUDE global/header
- title = "Bugzilla Keyword Descriptions"
-%]
-
-[% FOREACH keyword = keywords %]
- [% IF loop.index % 50 == 0 %]
- [% IF loop.index != 0 %]
- </table>
- [% END %]
-
- <table border="1" cellpadding="4" cellspacing="0">
- <tr bgcolor="#6666FF">
- <th align="left">Name</th>
- <th align="left">Description</th>
- <th align="left">Bugs</th>
- </tr>
- [% END %]
-
- <tr>
- <th>
- <a name="[% keyword.name FILTER html %]">
- [% keyword.name FILTER html %]</a>
- </th>
- <td>[% keyword.description %]</td>
- <td align="right">
- [% IF keyword.bugcount > 0 %]
- <A HREF="buglist.cgi?keywords=[% keyword.name FILTER uri %]">
- [% keyword.bugcount %]</a>
- [% ELSE %]
- none
- [% END %]
- </td>
- </tr>
-[% END %]
-
-[% IF keywords.size > 0 %]
- </table>
-[% END %]
-
-[% IF caneditkeywords %]
- <p>
- <a href="editkeywords.cgi">Edit keywords</a>.
- </p>
-[% END %]
-
-[% INCLUDE global/footer %]
diff --git a/template/default/info/quips.tmpl b/template/default/info/quips.tmpl
deleted file mode 100644
index d05557650..000000000
--- a/template/default/info/quips.tmpl
+++ /dev/null
@@ -1,65 +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 <gerv@gerv.net>
- #%]
-
-[% INCLUDE global/header
- title = "Bugzilla Quip System"
- h1 = "Add your own clever headline"
- %]
-
-[% IF added_quip %]
- <p>
- <font color="red">
- Your quip '<tt>[% added_quip FILTER html %]</tt>' has been added.
- </font>
- </p>
-[% END %]
-
-<p>
- Bugzilla will pick a random quip for the headline on each bug list, and
- you can extend the quip list. Type in something clever or funny or boring
- (but not obscene or offensive, please) and bonk on the button.
-</p>
-
-<form method="post" action="quips.cgi">
- <input type="hidden" name="action" value="add" />
- <input size="80" name="quip" />
- <p>
- <input type="submit" value="Add This Quip" />
- </p>
-</form>
-
-[% IF show_quips %]
- <h2>
- Existing quips:
- </h2>
- <ul>
- [% FOREACH quip = quips %]
- <li>[% quip %]</li>
- [% END %]
- </ul>
-[% ELSE %]
- <p>
- Those who like their wisdom in large doses can
- <a href="quips.cgi?action=show">view the whole quip list</a>.
- </p>
-[% END %]
-
-[% INCLUDE global/footer %]