|
2#
楼主 |
发表于 2011-12-11 09:22:36
|
只看该作者
终于找到解决方法了,并于2011年12月10日晚试验成功。
为保持严谨态度,本次设置环境是 xampp 1.7.4 + mantis1.2.4 + JpGraph 3.0.7
以下是安装JPGRAPH步骤:
( 1 ) 、安装: JpGraph PHP5 version Version: 3.0.7 , 从
http://www.aditus.nu/jpgraph/jpdownload.php 下载,解压缩其中子目录src 至mantis\library 目录下,改名为jpgraph
(2)、修改文件mantis\library\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
return $aTxt;
}
2、后台设置:
(1)安装插件:管理--》插件管理--》
安装MantisGraph 插件(即Mantis 1.2.4 的’Mantis 图形1.0’)
(2)修改程序:
打开文件mantis\plugins\MantisGraph\pages\config.php:
$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 />
//---------------------------------------------------------------------
文件mantis\plugins\MantisGraph\pages\config_edit.php:
if ( plugin_config_get( 'font' ) != $f_font ) {
switch ( $f_font ) {
case 'simsun': //增加这一行
case 'arial':
//----------------------------------------------------------------------
文件mantis\plugins\MantisGraph\core\graph_api.php:
$t_font_map = array(
'simsun' => 'simsun.ttf',//增加这一行
'arial' => 'arial.ttf',
//----------------------------------------------------------------------
$t_font_map = array(
'simsun' => FF_SIMSUN, //增加这一行
'arial' => FF_ARIAL,
//如果以上文件修改后,还是不行,就把上面几个文件,用Ultraedit 另存为UTF-8 格式文件
3、设置并启用:
(1)、管理--》管理插件--》点击“Mantis 图形1.0”名字进入设置界面,
(2)、Graph library to use 选择“Jpgraph”,Font 选择“宋体”
(3)、点击“更改配置”后再设置项目并添加缺陷看看统计报表中内容,是否已如你所愿。 |
|