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
removal of certain fields
Moderators: Developer, Contributor
-
dingfelder
- Posts: 100
- Joined: 14 Aug 2005, 22:47
- Location: new zealand
- Contact:
progress
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?
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
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.
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
-
blackfox
Re: removal of certain fields
Bump, is it still impossible to do this?