<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.slicer.org/w/index.php?action=history&amp;feed=atom&amp;title=Documentation%2F4.8%2FDevelopers%2FBugTrackerConfiguration</id>
	<title>Documentation/4.8/Developers/BugTrackerConfiguration - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.slicer.org/w/index.php?action=history&amp;feed=atom&amp;title=Documentation%2F4.8%2FDevelopers%2FBugTrackerConfiguration"/>
	<link rel="alternate" type="text/html" href="https://www.slicer.org/w/index.php?title=Documentation/4.8/Developers/BugTrackerConfiguration&amp;action=history"/>
	<updated>2026-04-04T05:19:17Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.33.0</generator>
	<entry>
		<id>https://www.slicer.org/w/index.php?title=Documentation/4.8/Developers/BugTrackerConfiguration&amp;diff=55560&amp;oldid=prev</id>
		<title>UpdateBot: Nightly -&gt; 4.8</title>
		<link rel="alternate" type="text/html" href="https://www.slicer.org/w/index.php?title=Documentation/4.8/Developers/BugTrackerConfiguration&amp;diff=55560&amp;oldid=prev"/>
		<updated>2017-10-18T07:05:44Z</updated>

		<summary type="html">&lt;p&gt;Nightly -&amp;gt; 4.8&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;noinclude&amp;gt;{{documentation/versioncheck}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
This page documents the tweak and configuration details specific to Slicer bug trackers.&lt;br /&gt;
&lt;br /&gt;
== Allow Reporter, updater, developer to add notes even if issue is resolved or closed ==&lt;br /&gt;
&lt;br /&gt;
In Manage -&amp;gt; Manage Projects -&amp;gt; Slicer4 -&amp;gt; Manage Configuration -&amp;gt; Configuration Report&lt;br /&gt;
&lt;br /&gt;
Add a new entry:&lt;br /&gt;
 * Username: All Users&lt;br /&gt;
 * Project: Slicer4&lt;br /&gt;
 * Configuration Option: update_readonly_bug_threshold&lt;br /&gt;
 * Type: integer&lt;br /&gt;
 * Value: 25&lt;br /&gt;
 * Access Level: administrator&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
* http://www.mantisbt.org/forums/viewtopic.php?f=3&amp;amp;t=105&lt;br /&gt;
* http://www.mantisbt.org/manual/manual.page.descriptions.system.management.pages.manage.configuration.workflow.thresholds.php&lt;br /&gt;
* http://www.mantisbt.org/docs/master/en/administration_guide/admin.user.access.html&lt;br /&gt;
&lt;br /&gt;
== Add Reporter field in the View Issues page ==&lt;br /&gt;
&lt;br /&gt;
In Manage -&amp;gt; Manage Configuration -&amp;gt; Configuration Report&lt;br /&gt;
&lt;br /&gt;
Then, in &amp;quot;Set Configuration Option&amp;quot;:&lt;br /&gt;
* Username: All users&lt;br /&gt;
* Project name: Slicer4&lt;br /&gt;
* Configuration Option: view_issues_page_columns&lt;br /&gt;
* Type: default&lt;br /&gt;
* Value: &amp;lt;code&amp;gt;array ( selection, edit, priority, id, sponsorship_total, bugnotes_count, attachment, category, severity, reporter_id, status, last_updated, summary ) &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{remark|red|'''category''' should be used instead of '''category_id'''}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.. and click on &amp;quot;Set Configuration Option&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
* http://www.mantisbt.org/wiki/doku.php/mantisbt:customizing_columns_in_view_issues_page&lt;br /&gt;
&lt;br /&gt;
== Allow Gravatars ==&lt;br /&gt;
The Mantis issue tracker is enabled to use the Gravatar web service to display a user avatar in certain views.  This solves [https://issues.slicer.org/view.php?id=4219 this request in the issue tracker].  &lt;br /&gt;
&lt;br /&gt;
=== Requirements ===&lt;br /&gt;
The '''user''' must register the same email used in Mantis with Gravatar.  [https://support.mantishub.com/hc/en-us/articles/204273845-Setup-your-Avatar The process is simple, and similar to what's described for MantisHub]. &lt;br /&gt;
&lt;br /&gt;
The '''Administrator''' must install the Gravatar plugin (bundled). In the configuration file, we turn on the option.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$g_show_avatar = ON; // defaults to OFF;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Set Color Scheme ==&lt;br /&gt;
The default color scheme for the newly rolled out v2.4.1 was too faded, so we use these colors instead&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$g_status_colors = array(&lt;br /&gt;
        'new'          =&amp;gt; '#ef2929', # scarlet red&lt;br /&gt;
        'feedback'     =&amp;gt; '#75507b', # plum&lt;br /&gt;
        'acknowledged' =&amp;gt; '#f57900', # orango&lt;br /&gt;
        'confirmed'    =&amp;gt; '#fce94f', # butter&lt;br /&gt;
        'assigned'     =&amp;gt; '#729fcf', # sky blue&lt;br /&gt;
        'resolved'     =&amp;gt; '#8ae234', # chameleon&lt;br /&gt;
        'closed'       =&amp;gt; '#babdb6'  # aluminum&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Plugins ==&lt;br /&gt;
Plugins are listed at https://www.mantisbt.org/wiki/doku.php/mantisbt:mantis_plugins and also at https://github.com/mantisbt-plugins&lt;br /&gt;
&lt;br /&gt;
=== Bundled Plugins ===&lt;br /&gt;
I installed the 3 bundled plugins:&lt;br /&gt;
# Gravatar - enables user avatars; see section above&lt;br /&gt;
# graphs plugin - it enhances the graphs displayed in the summary section such as https://issues.slicer.org/plugin.php?page=MantisGraph/status_graph.php&lt;br /&gt;
# import/export plugin - allows Administrators to import and export issues in XML&lt;br /&gt;
&lt;br /&gt;
=== Additional Plugins ===&lt;br /&gt;
# The [https://github.com/mantisbt-plugins/source-integration Source Integration] plugin, along with the SourceGitHub plugin were installed and configured to integrate the slicer.org and slicer repos.  Furthermore, I configured it to add search.  A cron job is setup to periodically fetch repo updates into Mantis.&lt;br /&gt;
&lt;br /&gt;
== Enable Markdown ==&lt;br /&gt;
There is a configuration setting for processing markdown in the core formatting plugin.&lt;br /&gt;
&lt;br /&gt;
# (Administrator) Navigate to the Manage Plugins page. &lt;br /&gt;
# Then click the title for the Mantis Core Formatting plugin to access it's [https://issues.slicer.org/plugin.php?page=MantisCoreFormatting/config setting page]&lt;br /&gt;
# Tick the box for processing Markdown and save.&lt;/div&gt;</summary>
		<author><name>UpdateBot</name></author>
		
	</entry>
</feed>