Page 1 of 1

removal of certain fields

Posted: 23 May 2005, 09:18
by narek
Hi thank you for the previous reply. I have a new question.

There are standard fields such as: Reproducibility, Severity, Priority, Summary, Description , Additional Information etc.
Is there a possibility to remove them through the user interface?
If there are some builts of mantis that have this, is it possible to get them, before the version is released?
Regards

Posted: 24 May 2005, 00:25
by thraxisp
There is no simple way to do this in the current version. It is a planned feature for a future version (ref #4227).

progress

Posted: 17 Aug 2005, 22:49
by dingfelder
any update on this?

It would be very good to be able to remove some fields from some projects but not others.

For example, I have a hardware defect project and several software defect projects.

For the hardware project, operating system does not apply.

If it is in the works, what version might this type of change be added to, and when is the next version due?

here is a way

Posted: 21 Dec 2005, 16:25
by genxweb
I have removed reproducability since we are using this system more for vulnerability mgmt then bug tracking.

I worte this shell script to do it.

#!/bin/bash
## Written by Michael LaSalvia 12/21/05: genxweb@gmail.com
> .tmp
find /var/www/html/mantis -name "bug*" >> files-dirty.txt
grep -v lang files-dirty.txt > .tmp; mv .tmp files-dirty.txt
for dirty in $(cat files-dirty.txt)
do
grep -v "Reproducibility" $dirty > .tmp; mv .tmp $dirty
> .tmp
grep -v "reproducibility" $dirty > .tmp; mv .tmp $dirty
rm -Rf files-dirty.txt
done

This will remove the feilds and errors you get for not having the feild as well as allow the mantis program still to work. Took a while to fix this. I am also working on a script to move the custom feilds to the top on a new install.

Posted: 03 Mar 2006, 14:10
by blackfox
I would also like to be able to remove some fields for some projects. Would be great if it would be in the next version. Anybody knows when the next version is released?
regards, blackfox

Posted: 03 Mar 2006, 14:12
by blackfox
I would also like to be able to remove some fields for some projects. Would be great if it would be in the next version. Anybody knows when the next version is released?
regards, blackfox

Posted: 14 Mar 2006, 03:29
by dcomo
I would love the ability to remove some of these fields as well. Priority and Severity are one in the same for me, so having them both just causes confusion.

Re: removal of certain fields

Posted: 30 Dec 2008, 19:00
by Dvondrake
Bump, is it still impossible to do this?