Skip to content

Commit

Permalink
programlistings in Configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
dregad committed Apr 29, 2014
1 parent 68a1407 commit f52ae29
Showing 1 changed file with 21 additions and 20 deletions.
41 changes: 21 additions & 20 deletions docbook/Admin_Guide/en-US/Configuration.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1509,15 +1509,16 @@ $g_language_choices_arr = array( 'english', 'french', 'german' );
the effectiveness of reporters based on the severity of
bugs. Higher multipliers will result in an increase in
reporter effectiveness. The default multipliers are:
<programlisting>$g_severity_multipliers = array ( FEATURE =&gt; 1,
TRIVIAL =&gt; 2,
TEXT =&gt; 3,
TWEAK =&gt; 2,
MINOR =&gt; 5,
MAJOR =&gt; 8,
CRASH =&gt; 8,
BLOCK =&gt; 10 );
</programlisting>
<programlisting>
$g_severity_multipliers = array ( FEATURE =&gt; 1,
TRIVIAL =&gt; 2,
TEXT =&gt; 3,
TWEAK =&gt; 2,
MINOR =&gt; 5,
MAJOR =&gt; 8,
CRASH =&gt; 8,
BLOCK =&gt; 10 );
</programlisting>
The keys of the array are severity constants from
constant_inc.php or from custom_constants_inc.php if
you have custom severities defined. The values are
Expand All @@ -1537,13 +1538,14 @@ $g_language_choices_arr = array( 'english', 'french', 'german' );
need to be defined here are those which match or exceed
$g_bug_resolution_not_fixed_threshold. The default
multipliers are:
<programlisting>$g_resolution_multipliers = array( UNABLE_TO_DUPLICATE =&gt; 2,
NOT_FIXABLE =&gt; 1,
DUPLICATE =&gt; 3,
NOT_A_BUG =&gt; 5,
SUSPENDED =&gt; 1,
WONT_FIX =&gt; 1 );
</programlisting>
<programlisting>
$g_resolution_multipliers = array( UNABLE_TO_DUPLICATE =&gt; 2,
NOT_FIXABLE =&gt; 1,
DUPLICATE =&gt; 3,
NOT_A_BUG =&gt; 5,
SUSPENDED =&gt; 1,
WONT_FIX =&gt; 1 );
</programlisting>
The keys of the array are resolution constants from
constant_inc.php or from custom_constants_inc.php if
you have custom resolutions defined. Resolutions not
Expand Down Expand Up @@ -3653,10 +3655,9 @@ $g_display_errors = array(
<ulink url="http://php.net/language.operators.bitwise">
PHP bitwise operators
</ulink>, e.g.
<programlisting>
LOG_EMAIL | LOG_EMAIL_RECIPIENT
LOG_ALL &amp; ~LOG_DATABASE
</programlisting>
<programlisting>$g_log_level = LOG_EMAIL | LOG_EMAIL_RECIPIENT;</programlisting>
or
<programlisting>$g_log_level = LOG_ALL &amp; ~LOG_DATABASE;</programlisting>
</para></note>
</listitem>
</varlistentry>
Expand Down

0 comments on commit f52ae29

Please sign in to comment.