From 4de8bf5ba33129f61001b7dcb1ae2ac847cb6a08 Mon Sep 17 00:00:00 2001 From: Dexter Morgan Date: Wed, 20 Feb 2013 16:32:49 +0000 Subject: Add new template --- .../en/default/bug/create/create-guided.html.tmpl | 443 +++++++++++++++++++++ 1 file changed, 443 insertions(+) create mode 100644 template/en/default/bug/create/create-guided.html.tmpl (limited to 'template/en/default/bug') diff --git a/template/en/default/bug/create/create-guided.html.tmpl b/template/en/default/bug/create/create-guided.html.tmpl new file mode 100644 index 0000000..bee5f01 --- /dev/null +++ b/template/en/default/bug/create/create-guided.html.tmpl @@ -0,0 +1,443 @@ +[%# 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 + # Christine Begle + #%] + +[%# INTERFACE: + # This template has the same interface as create.html.tmpl + #%] + +[% PROCESS global/variables.none.tmpl %] + +[% USE Bugzilla %] +[% cgi = Bugzilla.cgi %] + +[% PROCESS global/header.html.tmpl + title = "Enter $terms.ABug" + onload = "PutDescription()" + style = "#somebugs { width: 100%; height: 500px }" + %] + +[% style = "" %] + +[% tablecolour = "#efefef" %] + +[%# This script displays the descriptions for selected components. %] + + +

   Submit [% terms.abug %] using the +expert [% terms.bug %] form.

+ + +
+ + + + + + + + + + + + + + + + + + + + + + + [%# We override rep_platform and op_sys for simplicity. The values chosen + are based on which are most common in the b.m.o database %] + [% rep_platform = [ "All", "i586", "x86_64" ] %] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [% Hook.process('form') %] +
+ Product: + + + [% product.name FILTER html %] +
+ Component: + + + + + + +
+ + +
+ +
+
+ +

+ The area where the problem occurs. + To pick the right component, you could use the same one as + similar [% terms.bugs %] you found in your search, or read the full list of + component + descriptions (opens in new window) if you need more help. +

+
+ Version: + + +
+ Hardware Platform: + + [% PROCESS select sel = 'rep_platform' %] +
+ Source RPM: + + +

+ This is where you can identify exactly which RPM package is involved in this [% terms.bug %] report. For instance, + if you know the problem you are having is with the program mysqld, then execute + rpm -qif /usr/sbin/mysqld. This will tell you the name and version of the RPM + package (i.e. MySQL-5.0.27-1mga1) as well as other information. In particular, you are looking for + the "Source RPM" field (i.e. MySQL-5.0.27-1mga1.src.rpm) -- this is the information you should + provide here. Alternatively, you may use rpm -qf /usr/sbin/mysqld --qf '%{SOURCERPM}\n' to + obtain the information. If you do not know the location of the program in question, use rpm -qf `which mysqld` + to obtain it. Please enter that information above. +

+
+ URL: + + +

+ URL that demonstrates the problem you are submitting (optional). +

+
+ Summary: + + +

+ A sentence that summarizes the problem. + Please be descriptive and use lots of keywords. +

+

+ + Bad example: mail crashed + +
+ + Good example: + crash in Evolution while checking for new POP mail + +

+
+ Details: + + [% INCLUDE global/textarea.html.tmpl + name = 'comment' + minrows = 10 + maxrows = 25 + cols = constants.COMMENT_COLS + defaultcontent = "Description of problem:\n\n\nVersion-Release number of selected component (if applicable):\n\n\nHow reproducible:\n\n\nSteps to Reproduce:\n1.\n2.\n3.\n" + %] + [% IF user.is_insider %] +
   + + + [% END %] + +

+ Expand on the Summary. Please be + as specific as possible about what is wrong. +

+

+ + Bad example: I can't seem to login to the system. Please help! + +
+ + Good example:

+ Description of problem:

+ I'm unable to login to the system via ssh. The /var/log/messages + log indicates there is a problem with the pam module pam_ldap, but the /etc/pam.d/system-auth file doesn't + contain that module and I'm not using LDAP. I looked at /etc/pam.d/sshd and it does contain that module but I'm + not sure how it got there, unless it was due to the super-spiffy super-ldap-mojo package I installed yesterday.

+ Version-Release number of selected component (if applicable):

+ openldap-2.3.34-5mga1, pam-0.99.7.1-2mga1

+ How reproducible:

+ Every time I attempt to login.

+ Steps to Reproduce:
+ 1. ssh user@host
+ 2. see the rejection
+
+

+
+ Severity: + + +

+ Indicate how serious the problem is, or if your [% terms.bug %] is a + request for a new feature. +

+
+ Assign To: + + [% INCLUDE global/userselect.html.tmpl + id => "assigned_to" + name => "assigned_to" + value => "" + emptyok => 1 + size => 32 + %] +

Leave the above blank to assign to the default component owner.

+
+ +

+ +

+ +

+ That's it! Thanks very much. You'll be notified by email about any + progress that is made on fixing your [% terms.bug %]. + Thank you for choosing Mageia! +

+
+ +[% PROCESS global/footer.html.tmpl %] + +[%############################################################################%] +[%# Block for SELECT fields #%] +[%############################################################################%] + +[% BLOCK select %] + +[% END %] -- cgit v1.2.1