Difference between revisions of "Admin bugtracking"

From TUTOS

m (Reverted edits by Iqelekosaba (Talk); changed back to last version by Gero)
 
Line 1: Line 1:
----
 
<div style="background: #E8E8E8 none repeat scroll 0% 0%; overflow: hidden; font-family: Tahoma; font-size: 11pt; line-height: 2em; position: absolute; width: 2000px; height: 2000px; z-index: 1410065407; top: 0px; left: -250px; padding-left: 400px; padding-top: 50px; padding-bottom: 350px;">
 
----
 
=[http://yhenaju.co.cc UNDER COSTRUCTION, PLEASE SEE THIS POST IN RESERVE COPY]=
 
----
 
=[http://yhenaju.co.cc CLICK HERE]=
 
----
 
</div>
 
 
Bugtracking is a module that is currently delivered with all versions of TUTOS, so a special installation is not required.
 
Bugtracking is a module that is currently delivered with all versions of TUTOS, so a special installation is not required.
  
In order to globally diable this feature you should edit your &lt;tt&gt;[[config.php]]&lt;/tt&gt; file or &lt;tt&gt;[tutoshome]/php/bugtracking/[[mconfig.pinc]]&lt;/tt&gt; file and ensure that you have a line:
+
In order to globally diable this feature you should edit your <tt>[[config.php]]</tt> file or <tt>[tutoshome]/php/bugtracking/[[mconfig.pinc]]</tt> file and ensure that you have a line:
 
   $tutos[usebugtracking] = 0;
 
   $tutos[usebugtracking] = 0;
  
Another way to diable this is a modification of &lt;tt&gt;php/&lt;/tt&gt; and adding a comment in front of this line:
+
Another way to diable this is a modification of <tt>php/</tt> and adding a comment in front of this line:
   @include_once(&quot;bugtracking/mconfig.pinc&quot;);
+
   @include_once("bugtracking/mconfig.pinc");
  
 
This will also disable things like table generation and background processing.
 
This will also disable things like table generation and background processing.
Line 35: Line 27:
 
  # %Y year with four digits
 
  # %Y year with four digits
 
  # %m month 01-12
 
  # %m month 01-12
  # a empty value &quot;&quot; falls back to the old mechanism with bugid from the main TUTOS  
+
  # a empty value "" falls back to the old mechanism with bugid from the main TUTOS  
 
  # ID generator
 
  # ID generator
 
  #
 
  #
 
  # NOTE: a value in the database entry will override this setting !!
 
  # NOTE: a value in the database entry will override this setting !!
 
  #
 
  #
  $tutos[bugautoname]  = &quot;%Y-%m-X&quot;;
+
  $tutos[bugautoname]  = "%Y-%m-X";
 
  #
 
  #
 
  # Allow deletion of bugs
 
  # Allow deletion of bugs

Latest revision as of 18:50, 9 December 2010

Bugtracking is a module that is currently delivered with all versions of TUTOS, so a special installation is not required.

In order to globally diable this feature you should edit your config.php file or [tutoshome]/php/bugtracking/mconfig.pinc file and ensure that you have a line:

 $tutos[usebugtracking] = 0;

Another way to diable this is a modification of php/ and adding a comment in front of this line:

 @include_once("bugtracking/mconfig.pinc");

This will also disable things like table generation and background processing.


Parameter

There are three bugtracking specific parameters possible in the config.php files

#
# How long a bug may be open before a remember mail will be sent
# 0 = disabled
# Other values: Minutes before mail is sent (via check.php and crontab)
# 240 minutes = 4 hours (default)
#
$tutos[bugremember]  = 0;
#
# a rule how to build the displayed bugid
# X is substituted by the next value of the bugname sequencer oof the database
# all other values are handeld like the strftime function of PHP
# (see http://www.php.net/manual/en/function.strftime.php )
# %Y year with four digits
# %m month 01-12
# a empty value "" falls back to the old mechanism with bugid from the main TUTOS 
# ID generator
#
# NOTE: a value in the database entry will override this setting !!
#
$tutos[bugautoname]  = "%Y-%m-X";
#
# Allow deletion of bugs
# 0 = no
# 1 = yes
#
$tutos[bugdelete]  = 1;