removal of certain fields

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
narek

removal of certain fields

Post 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
thraxisp
Developer
Posts: 509
Joined: 14 Feb 2005, 03:38
Location: Ottawa, Canada
Contact:

Post 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).
dingfelder
Posts: 100
Joined: 14 Aug 2005, 22:47
Location: new zealand
Contact:

progress

Post 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?
genxweb
Posts: 6
Joined: 21 Dec 2005, 16:21
Contact:

here is a way

Post 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.
blackfox

Post 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
blackfox

Post 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
dcomo
Posts: 22
Joined: 13 Mar 2006, 21:55

Post 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.
Dvondrake
Posts: 2
Joined: 30 Dec 2008, 18:54

Re: removal of certain fields

Post by Dvondrake »

Bump, is it still impossible to do this?
Post Reply