Archive for 8th April 2010

Add menu item to Mantis

Modify config_inc.php and add

1
2
3
4
5
6
7
8
$g_enable_project_documentation = ON;
$g_smtp_host = 'localhost';
$g_window_title = 'SimuWorld Bugtracker';
$g_logo_image = 'images/mantis_logo.gif';
$g_favicon_image = 'images/favicon.ico';
//The following line add two custom menu items with different access level controls
//The contants used here can be found in ./core/constant_inc.php, e.g. DEVELOPER, ANYBODY etc.
$g_main_menu_custom_options = array( array( "WebSVN",DEVELOPER,'url_to_websvn' ),array( "test", ADMINISTRATOR,'' ) );

Continue reading ‘Add menu item to Mantis’ »

Subversion+websvn on Debian

To get subversion+apache2 work on Debian is not very difficult. Basically including the following steps (ref: this post): Continue reading ‘Subversion+websvn on Debian’ »