24 | | /** The DB host to use when connecting to the mantis db */ |
25 | | define('BUG_TRACK_DB_HOST', 'calypso'); |
26 | | /** The name of the database that contains the mantis tables */ |
27 | | define('BUG_TRACK_DB_NAME', 'mantis_bt'); |
28 | | /** The DB type being used by mantis */ |
29 | | define('BUG_TRACK_DB_USER', 'mantis_bt_user'); |
30 | | /** The DB password to use for connecting to the mantis db */ |
31 | | define('BUG_TRACK_DB_PASS', 'mantis_bt_password'); |
32 | | /** link to the bugtracking system, for viewing bugs */ |
33 | | define('BUG_TRACK_HREF', "http://calypso/mantis/view.php?id="); |
34 | | /** link to the bugtracking system, for entering new bugs */ |
35 | | define('BUG_TRACK_ENTER_BUG_HREF',"http://calypso/mantis/"); |
| 24 | Copy the following lines from config.inc.php to custom_config.inc.php. |
| 25 | // ---------------------------------------------------------------------------- |
| 26 | /** [Bug Tracking systems] */ |
| 27 | /** |
| 28 | * TestLink uses bugtracking systems to check if displayed bugs resolved, verified, |
| 29 | * and closed bugs. If they are it will strike through them |
| 30 | * |
| 31 | * NO : no bug tracking system integration |
| 32 | * BUGZILLA : edit configuration in TL_ABS_PATH/cfg/bugzilla.cfg.php |
| 33 | * MANTIS : edit configuration in TL_ABS_PATH/cfg/mantis.cfg.php |
| 34 | * JIRA : edit configuration in TL_ABS_PATH/cfg/jira.cfg.php |
| 35 | * TRACKPLUS : edit configuration in TL_ABS_PATH/cfg/trackplus.cfg.php |
| 36 | */ |
| 37 | $g_interface_bugs='NO'; |
| 38 | On custom_config.inc.php change line: |
| 39 | $g_interface_bugs='NO'; |
| 40 | Final result: |
| 41 | $g_interface_bugs='MANTIS'; |