프로그램 사용/Mantis2010. 12. 29. 16:44
mantis의 목록에서 보면 아래와 같은 ^ 아이콘들이 나온다.
버전이 다른지 일단 mantis demo 사이트에서는 아래의 3가지 아이콘만 지원하는듯 하다.


mantis-1.2.3 버전 기준으로 아래의 5등급의 우선순위가 존재하며
보통은 _
높음 부터는 ^ 의 갯수가 늘어간다.

Posted by 구차니
프로그램 사용/Mantis2010. 12. 29. 14:56
Trac 관련 문서에서는
특정 이슈가 발생하여 티켓을 받았을 경우의 변동 사항에 대한 문서가 있었다.
mantis는 이런 문서들이 많이 부족해서 이래저래 아쉬운데.. 쩝.

 Environments created with 0.11



인터넷을 뒤지다가 다음과 같은 문서가 발견되었다.



물론 맨티스 기본메뉴 하단의 색상표는 다음과 같은데,
위의 그림은 할당된 이슈가 위에 위치하고 있다.

아무튼, 실험적으로 봤을때,
특정 카테고리에 관리자가 등록되어 있으면, "새로운 이슈 -> 할당된 이슈"로 바로 가게 되고
그렇다고 해서 할당된에서 해결된으로 상태가 전이되어야 하는 것은 아니다.
그리고 정보 부족와 이슈 검토의 이 모호한 경계란...

새로운 이슈 -> 할당된 이슈 -> 정보 부족 -> 이슈 검토 -> 확인된 이슈 -> 해결된 이슈 -> 폐쇄된 이슈

이런 단계로 바뀌어 나가고,
관리자가 바뀌어야 하는 경우는 일종의 부서간 협조가 필요할 때가 되려나?
Posted by 구차니
프로그램 사용/Mantis2010. 12. 22. 23:56
맨티스에서는 전역변수로 전체 기본 언어를 고르는것은 있지만
사용자별 언어를 고르는것에 대한 도움말을 찾아 볼수 없었다.
(머 귀찮아서 못찾았거나, 내가 쓰는 키워드가 다를지도 모르지만)

아무튼, 메뉴를 뒤지다 보니
계정 관리 - 설정상태 변경 - 언어 에서 개인별 언어를 선택할 수 있게 되어있다.

현재로서는 로그인 시에 언어를 택하는 방법은 없는듯?
Posted by 구차니
프로그램 사용/Mantis2010. 12. 15. 09:38
mantis에 roadmap과 changelog 기능이 있는데
내용이 하나도 나오지 않아서 검색을 해보니

프로젝트 버전정보에서 Released가 체크되어 있으면 나오지 않는다고 한다.
아무래도 Roadmap은 할일이니 릴리즈 된 제품에 되어서는 할일에서 빠져서 그런듯?



[링크 : http://www.letsmakegame.net/35035]

To configure the Changelog and Roadmap in the Mantis, it is necessary to create the version of the Project, it can be created in the "Manage Project" page.

After that, while an issue is fixed and resolved, you must need to update the issue by using "Update Advanced". Thus, you can see there are 2 more columns, "Fixed in Version" and "Target Version". To activate the Changelog, you must need to choose the version in the "Fixed in Version" column. After that, you will see the Changelog function works.

For Roadmap, it is necessary that do not click the checkbox of "Released" while you create the Version. The method of activate the Roadmap is similiar as Changelog, which is choose the version in "Target Version" only.

It is my stupid method to configure Changelog and Roadmap functions in the Mantis, I hope I can help you anyway.

[링크 : http://www.mantisbt.org/forums/viewtopic.php?f=3&t=4256]

Posted by 구차니
프로그램 사용/Mantis2010. 11. 28. 22:18
머.. 일단 나의 경우에는 실패 -_-

[링크 : http://u2soft.tistory.com/9]


음.. 나의 현상은 아래와 같은것 같다.
위의 링크는 직접 통합하는 것이고, 아래의 링크는 plugin을 수정하는 하는것이다.
특정폰트가 없다고 해서 아무리 찾아도 해결이 안났는데
이걸 보고 다시 해보고 글을 수정해 봐야겠다.

[링크 : http://u2soft.tistory.com/11]





2010.12.02 추가

일단 ubuntu에서 관리하는 녀석으로 추가했다. (jpgraph와 mscorefonts 두가지 패키지)
$ sudo apt-cache search jpgraph
libphp-jpgraph - Object oriented graph library for php5
$ sudo apt-get install libphp-jpgraph

$ sudo apt-cache search msttcorefonts
ttf-mscorefonts-installer - Installer for Microsoft TrueType core fonts
$ sudo apt-get install ttf-mscorefonts-installer

그리고  mantisbt/config_defaults_inc.php 파일에서 아래의 부분을 수정하고
$ sudo vi config_defaults_inc.php
278         $g_system_font_folder   = '/usr/share/fonts/truetype/msttcorefonts/';

mantis의 jpgraph 설정파일은 MantisGraph.php 에서 아래 부분을 수정
$ sudo vi ./plugins/MantisGraph/MantisGraph.php
 42         function config() {
 43                 return array(
 44                         'eczlibrary' => ON,
 45
 46                         'window_width' => 800,
 47                         'bar_aspect' => 0.9,
 48                         'summary_graphs_per_row' => 2,
 49                         'font' => 'arial',
 50
 51                         'jpgraph_path' => '/usr/share/jpgraph/',
 52                         'jpgraph_antialias' => ON,
 53                 );
 54         }

그러면 그래프는 나오지만, 문제는 한글 -_-

Posted by 구차니
프로그램 사용/Mantis2010. 11. 9. 09:52
./mantisbt/config_defaults_inc.php
파일에서

$g_default_language             = 'english';
부분을

$g_default_language             = 'korean';
으로 변경해주면 바로 적용된다.(아파치 리부팅 필요없음)

[링크 : http://hbesthee.tistory.com/847]
Posted by 구차니