📄 code-error.html.tmpl
字号:
[% ELSIF error == "flag_type_target_type_invalid" %] The target type was neither <em>[% terms.bug %]</em> nor <em>attachment</em> but rather <em>[% target_type FILTER html %]</em>. [% ELSIF error == "invalid_field_name" %] Can't use [% field FILTER html %] as a field name. [% ELSIF error == "invalid_keyword_id" %] The keyword ID <em>[% id FILTER html %]</em> couldn't be found. [% ELSIF error == "invalid_user" %] [% title = "Invalid User" %] There is no user account [% IF user_id %] with ID <em>[% user_id FILTER html %]</em>. [% ELSIF user_login %] with login name <em>[% user_login FILTER html %]</em>. [% ELSE %] given. [% END %] [% ELSIF error == "ldap_bind_failed" %] Failed to bind to the LDAP server. The error message was: <code>[% errstr FILTER html %]</code> [% ELSIF error == "ldap_cannot_retreive_attr" %] The specified LDAP attribute [% attr FILTER html %] was not found. [% ELSIF error == "ldap_connect_failed" %] Could not connect to the LDAP server <code>[% server FILTER html %]</code>. [% ELSIF error == "ldap_start_tls_failed" %] Could not start TLS with LDAP server: <code>[% error FILTER html %]</code>. [% ELSIF error == "ldap_search_error" %] An error occurred while trying to search LDAP for "[% username FILTER html %]": <code>[% errstr FILTER html %]</code> [% ELSIF error == "ldap_server_not_defined" %] The LDAP server for authentication has not been defined. [% ELSIF error == "mail_send_error" %] There was an error sending mail from '[% mail.header('From') FILTER html %]' to '[% mail.header('To') FILTER html %]': [% msg FILTER html %] [% ELSIF error == "missing_bug_id" %] No [% terms.bug %] ID was given. [% ELSIF error == "missing_series_id" %] Having inserted a series into the database, no series_id was returned for it. Series: [% series.category FILTER html %] / [%+ series.subcategory FILTER html %] / [%+ series.name FILTER html %]. [% ELSIF error == "need_quipid" %] A valid quipid is needed. [% ELSIF error == "param_must_be_numeric" %] [% title = "Invalid Parameter" %] Invalid parameter passed to [% function FILTER html %]. It must be numeric. [% ELSIF error == "param_required" %] [% title = "Missing Parameter" %] The function <code>[% function FILTER html %]</code> requires a <code>[% param FILTER html %]</code> argument, and that argument was not set. [% ELSIF error == "protection_violation" %] The function <code>[% function FILTER html %]</code> was called [% IF argument %] with the argument <code>[% argument FILTER html %]</code> [% END %] from [% IF caller %] <code>[%+ caller FILTER html %]</code>, which is [% END %] outside the package. This function may only be called from a subclass of <code>[% superclass FILTER html %]</code>. [% ELSIF error == "unknown_comparison_type" %] Specified comparison type is not supported. [% ELSIF error == "request_queue_group_invalid" %] The group field <em>[% group FILTER html %]</em> is invalid. [% ELSIF error == "report_axis_invalid" %] <em>[% val FILTER html %]</em> is not a valid value for [%+ IF fld == "x" %]the horizontal axis [%+ ELSIF fld == "y" %]the vertical axis [%+ ELSIF fld == "z" %]the multiple tables/images [%+ ELSE %]a report axis[% END %] field. [% ELSIF error == "setting_info_invalid" %] To create a new setting, you must supply a setting name, a list of value/sortindex pairs, and the devault value. [% ELSIF error == "setting_name_invalid" %] The setting name <em>[% name FILTER html %]</em> is not a valid option. Setting names must begin with a letter, and contain only letters, digits, or the symbols '_', '-', '.', or ':'. [% ELSIF error == "setting_subclass_invalid" %] There is no such Setting subclass as <code>[% subclass FILTER html %]</code>. [% ELSIF error == "setting_value_invalid" %] The value "<code>[% value FILTER html %]</code>" is not in the list of legal values for the <em>[% name FILTER html %]</em> setting. [% ELSIF error == "soap_not_installed" %] [% admindocslinks = {'installation.html#install-perlmodules' => 'Installing Perl modules'} %] The XMLRPC interface will not work without the SOAP::Lite Perl module being installed. Run checksetup.pl for installation instructions. [% ELSIF error == "token_generation_error" %] Something is seriously wrong with the token generation system. [% ELSIF error == "template_error" %] [% template_error_msg FILTER html %] [% ELSIF error == "template_invalid" %] Template with invalid file name found in hook call: [% name FILTER html %]. [% ELSIF error == "unable_to_retrieve_password" %] I was unable to retrieve your old password from the database. [% ELSIF error == "undefined_field" %] Form field [% field FILTER html %] was not defined. [%# Useful message if browser did not select show_bug radio button %] [% IF field == "knob" %] Check that the "Leave as..." radio button was selected. [% END %] [% ELSIF error == "unknown_action" %] [% IF action %] Unknown action [% action FILTER html %]! [% ELSE %] I could not figure out what you wanted to do. [% END %] [% ELSIF error == "usage_mode_invalid" %] '[% invalid_usage_mode FILTER html %]' is not a valid usage mode. [% ELSIF error == "must_be_patch" %] [% title = "Attachment Must Be Patch" %] Attachment #[% attach_id FILTER html %] must be a patch. [% ELSIF error == "nested_transaction" %] Attempted to start a new transaction without finishing previous one first. [% ELSIF error == "not_in_transaction" %] Attempted to end transaction without starting one first. [% ELSIF error == "already_locked" %] Attempted to lock a table without releasing previous lock first: <p>Tables already locked:<br>[% current FILTER html %] <p>Tables requesting locking:<br>[% new FILTER html %] [% ELSIF error == "no_matching_lock" %] Attempted to unlock tables without locking them first. [% ELSIF error == "comma_operator_deprecated" %] [% title = "SQL query generator internal error" %] There is an internal error in the SQL query generation code, creating queries with implicit JOIN. [% ELSIF error == "invalid_post_bug_submit_action" %] Invalid setting for post_bug_submit_action [% ELSE %] [%# Try to find hooked error messages %] [% error_message = Hook.process("errors") %] [% IF NOT error_message %] [% title = "Internal error" %] An internal error has occurred, but [% terms.Bugzilla %] doesn't know what <code>[% error FILTER html %]</code> means. If you are a [% terms.Bugzilla %] end-user seeing this message, please save this page and send it to [% Param('maintainer') %]. [% ELSE %] [% error_message FILTER none %] [% END %] [% END %][% END %][%# We only want HTML error messages for ERROR_MODE_WEBPAGE %][% USE Bugzilla %][% IF Bugzilla.error_mode != constants.ERROR_MODE_WEBPAGE %] [% IF Bugzilla.usage_mode == constants.USAGE_MODE_BROWSER %] [% error_message FILTER none %] [% ELSE %] [% error_message FILTER txt %] [% END %] [% RETURN %][% END %][% UNLESS header_done %] [% PROCESS global/header.html.tmpl %][% END %][% PROCESS global/docslinks.html.tmpl docslinks = docslinks admindocslinks = admindocslinks%]<tt> <p> [% terms.Bugzilla %] has suffered an internal error. Please save this page and send it to [% Param("maintainer") %] with details of what you were doing at the time this message appeared. </p> <script type="text/javascript"> <!-- document.write("<p>URL: " + document.location.href.replace(/&/g,"&") .replace(/</g,"<") .replace(/>/g,">") + "</p>"); // --> </script></tt><table cellpadding="20"> <tr> <td bgcolor="#ff0000"> <font size="+2"> [% error_message FILTER none %] </font> </td> </tr></table>[% IF variables %] <pre>Variables: [% FOREACH key = variables.keys %] [%+ key FILTER html %]: [%+ variables.$key FILTER html %] [% END %] </pre>[% END %][% PROCESS global/footer.html.tmpl %]
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -