Update of /cvsroot/mantisbt/mantisbt
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv17078
Modified Files:
config_defaults_inc.php
Log Message:
Fixed #7003: Error in version 1.1.0-CVS when exporting to CVS.
Fixed #7110: Option to customise columns on CSV export.
Fixed #7111: Option to customise columns on Print Issues page.
Index: config_defaults_inc.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/config_defaults_inc.php,v
retrieving revision 1.303
retrieving revision 1.304
diff -u -d -r1.303 -r1.304
--- config_defaults_inc.php 18 May 2006 05:14:27 -0000 1.303
+++ config_defaults_inc.php 18 May 2006 05:53:44 -0000 1.304
@@ -447,11 +447,27 @@
$g_show_priority_text = OFF;
# A configuration option that identifies the columns to be shown on the View Issues page.
+ # In Mantis 1.1, this option can be overriden using the Generic Configuration screen.
# This configuration can be overriden dynamically by overriding the custom function "get_columns_to_view".
# Some of the columns specified here can be removed automatically if they conflict with other configuration.
# For example, sponsorship_total will be removed if sponsorships are disabled.
# To include custom field 'xyz', include the column name as 'custom_xyz'.
+ #
+ # Standard Column Names (i.e. names to choose from):
+ # selection, edit, id, project_id, reporter_id, handler_id, priority, reproducibility, projection, eta,
+ # resolution, fixed_in_version, view_state, os, os_build, platform, version, date_submitted, attachment,
+ # category, sponsorship_total, severity, status, last_updated, summary, bugnotes_count
$g_view_issues_page_columns = array ( 'selection', 'edit', 'priority', 'id', 'sponsorship_total', 'bugnotes_count', 'attachment', 'category', 'severity', 'status', 'last_updated', 'summary' );
+
+ # A configuration option that identifies the columns to be show on the print issues page.
+ # In Mantis 1.1, this option can be overriden using the Generic Configuration screen.
+ # This configuration can be overriden dynamically by overriding the custom function "get_columns_to_view".
+ $g_print_issues_page_columns = array ( 'selection', 'priority', 'id', 'sponsorship_total', 'bugnotes_count', 'attachment', 'category', 'severity', 'status', 'last_updated', 'summary' );
+
+ # A configuration option that identifies the columns to be include in the CSV export.
+ # In Mantis 1.1, this option can be overriden using the Generic Configuration screen.
+ # This configuration can be overriden dynamically by overriding the custom function "get_columns_to_view".
+ $g_csv_columns = array ( 'id', 'project_id', 'reporter_id', 'handler_id', 'priority', 'severity', 'reproducibility', 'version', 'projection', 'category', 'date_submitted', 'eta', 'os', 'os_build', 'platform', 'view_state', 'last_updated', 'summary', 'status', 'resolution', 'fixed_in_version', 'duplicate_id' );
# --- show projects when in All Projects mode ---
$g_show_bug_project_links = ON;
|