打开JPGraph下的jpgraph_ttf.inc.php文件,搜索其中:
elseif( $aFF === FF_SIMSUN ) {
// Do Chinese conversion
if( $this->g2312 == null ) {
include_once 'jpgraph_gb2312.php' ;
$this->g2312 = new GB2312toUTF8();
}
return $this->g2312->gb2utf8($aTxt);
}
改为:
elseif( $aFF === FF_SIMSUN ) {
// Do Chinese conversion
/*
if( $this->g2312 == null ) {
include_once 'jpgraph_gb2312.php' ;
$this->g2312 = new GB2312toUTF8();
}
return $this->g2312->gb2utf8($aTxt);
*/
return $aTxt;
}
5)修改程序
文件mantispluginsMantisGraphpagesconfig.php(记得本文件改完后用Ultraedit用ASC-II至UTF-8的转换功能保存为UTF-8格式文件,与总体字符集保持一致):
$t_current_font_selected = array(
'simsun' => false, //增加这一行
'arial' => false,
//---------------------------------------------------------------------
Sans-serif:<br />
<label><input type="radio" name="font" value="simsun"<?php echo print_font_checked( 'simsun' )?>/>宋体</label><br /> //增加这一行
<label><input type="radio" name="font" value="arial"<?php echo print_font_checked( 'arial' )?>/>Arial</label><br />
//---------------------------------------------------------------------
文件mantispluginsMantisGraphpagesconfig_edit.php:
if ( plugin_config_get( 'font' ) != $f_font ) {
switch ( $f_font ) {
case 'simsun': //增加这一行
case 'arial':
//----------------------------------------------------------------------
文件mantispluginsMantisGraphcoregraph_api.php:
$t_font_map = array(
'simsun' => FF_SIMSUN, //增加这一行
'arial' => FF_ARIAL,
6)设置并启用:
(1)、管理--》管理插件--》点击“MantisGraph 1.0”名字进入设置界面,
(2)、Graph library to use选择“Jpgraph”,Font选择“宋体”
(3)、点击“更改配置”后再看看统计报表中内容,是否已如你所愿。
7)MantisGraph插件的中文化文件strings_chinese_simplified.rar解压到mantispluginsMantisGraphlang目录下即可。
5.使用 Mantis
Mantis的使用较为简单,大略可分以下几个步骤:
5.1 建立一个项目(菜单:管理→项目管理→创建新建项目);
5.2 打开成功建立的项目,进入项目编辑页面,为该项目添加“分类”、“版本”(如下图所示);
5.3 提 Bug(菜单:报告问题 …) :
5.4 查看报表 …
5.5 当然,还有权限配置,流程配置等功能,详细可登录 http://www.mantisbt.org/了解。
Problem is the query to the database, the generic category for projects was forgotten.
Within MantisGraph/core/graph.php around line&n