Help with new TEST status

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
dbmdude
Posts: 4
Joined: 16 Apr 2005, 18:21

Help with new TEST status

Post by dbmdude »

I went to the following website and followed instructions:
http://manual.mantisbt.org/manual.custo ... values.php

I am sorry but I think I am dense becasue I could not make sense of it. It never tells you if you are suppose to create those files (or loof for existing ones). Well I assumed I had to create them, but then it never said where they needed to be created.

If someone has some simpler instructions on how to create a new status please pass it my way as I cannot make sense of that page.

Eric Joy
Last edited by dbmdude on 17 Apr 2005, 18:03, edited 1 time in total.
Narcissus
Developer
Posts: 338
Joined: 17 Feb 2005, 09:45

Post by Narcissus »

Hi dbmdude,

Those instructions that you looked at are for creating new statuses and the like. If you wish to create a new category for a project, you do it via the actual Mantis application.

Log in with an account that can manage the particular project you want to set categories for and click "Manage". Then click "Manage Projects" and then the actual project you want to add categories to.

On this project management page is a section labeled "Categories". Here is where you can add your own categories to the project.

Hope this helps,
Lincoln.
Guest

Re: Help with new TEST category

Post by Guest »

dbmdude wrote:If someone has some simpler instructions on how to create a new category please pass it my way as I cannot make sense of that page.
I am even denser... I meant how to create a new STATUS. I want to create a "Ready for Test" status. I also would like it to reassign back to the originator after I change to that status.

Sorry if I was confusing!!

DBMDude
dbmdude
Posts: 4
Joined: 16 Apr 2005, 18:21

Re: Help with new TEST category

Post by dbmdude »

Anonymous wrote:
dbmdude wrote:If someone has some simpler instructions on how to create a new category please pass it my way as I cannot make sense of that page.
I am even denser... I meant how to create a new STATUS. I want to create a "Ready for Test" status. I also would like it to reassign back to the originator after I change to that status.

Sorry if I was confusing!!

DBMDude

I forgot to sign in to post that... LOL
thraxisp
Developer
Posts: 509
Joined: 14 Feb 2005, 03:38
Location: Ottawa, Canada
Contact:

Post by thraxisp »

The two files (custom_constant_inc.php, custom_strings_inc.php) need to be created. You should already have a config_inc.php file where you named your database.

If you only care about one language (english), custom_strings_inc.php can be simplified to:

Code: Select all

<?php
  $s_status_enum_string =
    '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,
       60:to be tested,80:resolved,90:closed';
    $s_to_be_tested_bug_button = "Issue Ready to Test";
    $s_to_be_tested_bug_title = "Set Issue Ready to Test";
    $s_email_notification_title_for_status_bug_to_be_tested =
        "The following issue is ready TO BE TESTED.";
?>
(note that the #58 symbols are colons)
dbmdude
Posts: 4
Joined: 16 Apr 2005, 18:21

Post by dbmdude »

thraxisp wrote:The two files (custom_constant_inc.php, custom_strings_inc.php) need to be created. You should already have a config_inc.php file where you named your database.

If you only care about one language (english), custom_strings_inc.php can be simplified to:

Code: Select all

<?php
  $s_status_enum_string =
    '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,
       60:to be tested,80:resolved,90:closed';
    $s_to_be_tested_bug_button = "Issue Ready to Test";
    $s_to_be_tested_bug_title = "Set Issue Ready to Test";
    $s_email_notification_title_for_status_bug_to_be_tested =
        "The following issue is ready TO BE TESTED.";
?>
(note that the #58 symbols are colons)
You still need to tell me where those two files need to be put (as I said before) that is the crucial information left out of the document.

dbmdude
thraxisp
Developer
Posts: 509
Joined: 14 Feb 2005, 03:38
Location: Ottawa, Canada
Contact:

Post by thraxisp »

All three files go in the main mantis directory.
dbmdude
Posts: 4
Joined: 16 Apr 2005, 18:21

THANK YOU

Post by dbmdude »

VERY MUCH!!
thraxisp
Developer
Posts: 509
Joined: 14 Feb 2005, 03:38
Location: Ottawa, Canada
Contact:

Post by thraxisp »

I've clarified this in tha manual source.
bsc
Posts: 2
Joined: 12 May 2005, 07:48
Location: Switzerland

custom_string_inc.php

Post by bsc »

I have customized the new TEST-state as described in documentation and it seem to me, that the entries in the file custom_string_inc.php (located on the mantis main directory) will not picked up. In the "My View" I get the @60@ instead of "to be tested";

If I move the same entries to the language-file (eg. strings_english.txt) it works fine.

Is there any global parameter to allow the customizing or what's wrong?

thanks
bruno
Jonathan Firestone
Posts: 1
Joined: 10 Jul 2006, 16:07
Contact:

Uh...folks?

Post by Jonathan Firestone »

I know everyone's very busy, but could someone *in the know* clean up/combine the Documentation/Instructions AND the comments here, and what's currently in the comments there? It would be nice to see all at once what I really should do in order to do a custom workflow/status.

It would be a great help to the new folks here who have trouble sharpening a pencil without a bowie knife, like myself.
Post Reply