Mantis Logo
Mantis Manual
Manual
Configuration

Database
Path
Webserver
Version
Email
Language
Display
Time
JpGraph
Date
News
Default Preferences
Summary
Bugnote
File Upload
HTML
Authentication
Status Settings
Filters
Misc
Colors
Cookies
Database Tables
Speed Optimisation
Reminders
Bug History
Sponsorship
Source Control Integration
Custom Fields
My View Settings
Relationships
System Logging


Partner Links


Display
Last Modified: August 13, 2004 09:08AM
(Any)
Description

$g_window_title This is the browser window title (<TITLE> tag).
$g_page_title This is a heading that is displayed in the viewing area of the page.
$g_show_report This option is used as a default value for user preferences. This field indicates whether users should get the simple bug report page, advanced bug report page, or both. Possible values are: BOTH, SIMPLE_ONLY, or ADVANCED_ONLY. The default is BOTH.
$g_show_update This option is used as a default value for user preferences. This field indicates whether users should get the simple bug update page, or the advanced bug update page, or both. Possible values are: BOTH, SIMPLE_ONLY, or ADVANCED_ONLY. The default is BOTH.
$g_show_view This option is used as a default value for user preferences. This field indicates whether users should get the simple bug view page, or advanced bug view page, or both. Possible values are: BOTH, SIMPLE_ONLY, or ADVANCED_ONLY. The default is BOTH.
Users can set their own default preferences for the show report/update/view if the configuration value is BOTH. However, if the value is set to SIMPLE or ADVANCED, then the users should be forced to use the configured values. Note that these settings apply to all projects.
$g_show_footer_menu Show the menu at the bottom of the page as well as at the top. Default value is OFF.
$g_show_project_menu_bar This option specifies whether to add menu at the top of the page which includes links to all the projects. The default value is OFF.
$g_show_assigned_names When a bug is assigned then replace the word "assigned" with the name of the developer in parenthesis. Default is ON.
$g_show_priority_text Specifies whether to show priority as text (ON) or icon (OFF) in the view all bugs page. Default is OFF (icon).
$g_show_bug_project_links Show project links when in All Projects mode. Default is ON.
$g_status_legend_position Specifies the position of the status colour legend, can be: STATUS_LEGEND_POSITION_TOP or STATUS_LEGEND_POSITION_BOTTOM. Default is STATUS_LEGEND_POSITION_BOTTOM.
$g_show_attachments_indicator In view all bug page, show a clip icon next to bugs that has one or more attachments. The default value is OFF.
The reason why this is defaulted to OFF is that it adds an extra query for every bug dispayed in the list.
$g_show_product_version This controls display of the version dropdown menus in the report, view and update pages. Valid values are ON, OFF, and AUTO. ON forces the display of the dropdown even if no versions are defined. OFF will suppress the dropdown always. AUTO will suppress the dropdown, if no versions are defined for the project. Introduced in 0.19.0.
$g_show_realname This control will replace the user's userid with their realname. If it is set to ON, and the real name fiels has been populated, the replacement will occur. It defaults to OFF. Introduced in 0.19.0.


User Contributed Notes
Display
Add Notes About Notes
Show Legend Bar at top and bottom of My View and View All page
04-Feb-2005 2:12
#344
To show the legend bar at the top and bottom of either page, open the view_all_inc.php or my_view_page.php and find the entry

if ( STATUS_LEGEND_POSITION_TOP == config_get( 'status_legend_position' ) ) {html_status_legend();
}
and change as shown below:
if ( STATUS_LEGEND_POSITION_TOP == config_get( 'status_legend_position' ) ||
        STATUS_LEGEND_POSITION_BOTH == config_get( 'status_legend_position' ) ) {
html_status_legend();
}

Repeat the same for STATUS_LEGEND_POSITION_BOTTOM.

Then change Config.inc to
$g_status_legend_position = STATUS_LEGEND_POSITION_BOTH;
macfly@german-bash.org
07-Jul-2006 20:22
#1182
I have a problem with the description of a Bug.
Its always 100 Chars long, even if I post a longer Description.

Whats wrong?

Thanks in advance
Sascha Bürk
bon@bugstudio.net
14-Nov-2006 1:59
#1293
i think it is $g_show_attachment_indicator (without 's' after attachment), for mantis 1.0.6 release
check core/custom_function_api.php
Add Notes About Notes
Last updated: Fri, 16 May 2008 - 10:59:54

Mantis @ SourceForge