[ Index ]

PHP Cross Reference of MantisBT

title

Body

[close]

/core/ -> obsolete.php (source)

   1  <?php
   2  # MantisBT - A PHP based bugtracking system
   3  
   4  # MantisBT is free software: you can redistribute it and/or modify
   5  # it under the terms of the GNU General Public License as published by
   6  # the Free Software Foundation, either version 2 of the License, or
   7  # (at your option) any later version.
   8  #
   9  # MantisBT is distributed in the hope that it will be useful,
  10  # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12  # GNU General Public License for more details.
  13  #
  14  # You should have received a copy of the GNU General Public License
  15  # along with MantisBT.  If not, see <http://www.gnu.org/licenses/>.
  16  
  17  /**
  18   * Check that obsolete configs are not used.
  19   * THIS FILE ASSUMES THAT THE CONFIGURATION IS INCLUDED AS WELL AS THE
  20   * config_api.php.
  21   *
  22   * @package CoreAPI
  23   * @subpackage ObsoleteAPI
  24   * @copyright Copyright (C) 2000 - 2002  Kenzaburo Ito - kenito@300baud.org
  25   * @copyright Copyright (C) 2002 - 2011  MantisBT Team - mantisbt-dev@lists.sourceforge.net
  26   * @link http://www.mantisbt.org
  27   */
  28  
  29  # ==== Changes after 0.18.2 ====
  30  config_obsolete( 'use_phpMailer', '' );
  31  config_obsolete( 'phpMailer_path', '' );
  32  config_obsolete( 'use_x_priority', '' );
  33  
  34  # ==== Changes after 0.17.5 ====
  35  config_obsolete( 'new_color', 'status_colors' );
  36  config_obsolete( 'feedback_color', 'status_colors' );
  37  config_obsolete( 'acknowledged_color', 'status_colors' );
  38  config_obsolete( 'confirmed_color', 'status_colors' );
  39  config_obsolete( 'assigned_color', 'status_colors' );
  40  config_obsolete( 'resolved_color', 'status_colors' );
  41  config_obsolete( 'closed_color', 'status_colors' );
  42  
  43  config_obsolete( 'primary_table_tags', '' );
  44  config_obsolete( 'background_color', '' );
  45  config_obsolete( 'required_color', '' );
  46  config_obsolete( 'table_border_color', '' );
  47  config_obsolete( 'category_title_color', '' );
  48  config_obsolete( 'primary_color1', '' );
  49  config_obsolete( 'primary_color2', '' );
  50  config_obsolete( 'form_title_color', '' );
  51  config_obsolete( 'spacer_color', '' );
  52  config_obsolete( 'menu_color', '' );
  53  config_obsolete( 'fonts', '' );
  54  config_obsolete( 'font_small', '' );
  55  config_obsolete( 'font_normal', '' );
  56  config_obsolete( 'font_large', '' );
  57  config_obsolete( 'font_color', '' );
  58  
  59  config_obsolete( 'notify_developers_on_new', 'notify_flags' );
  60  config_obsolete( 'notify_on_new_threshold', 'notify_flags' );
  61  config_obsolete( 'notify_admin_on_new', 'notify_flags' );
  62  config_obsolete( 'view_bug_inc', '' );
  63  config_obsolete( 'ldap_organisation', 'ldap_organization' );
  64  config_obsolete( 'ldapauth_type', '' );
  65  config_obsolete( 'summary_product_colon_category', 'summary_category_include_project' );
  66  
  67  config_obsolete( 'allow_href_tags', 'html_make_links' );
  68  config_obsolete( 'allow_html_tags', 'html_valid_tags' );
  69  config_obsolete( 'html_tags', 'html_valid_tags' );
  70  config_obsolete( 'show_user_email', 'show_user_email_threshold' );
  71  
  72  config_obsolete( 'manage_custom_fields', 'manage_custom_fields_threshold' );
  73  config_obsolete( 'allow_bug_delete_access_level', 'delete_bug_threshold' );
  74  config_obsolete( 'bug_move_access_level', 'move_bug_threshold' );
  75  
  76  config_obsolete( 'php', '' );
  77  config_obsolete( 'use_experimental_custom_fields', '' );
  78  config_obsolete( 'mail_send_crlf', '' );
  79  
  80  config_obsolete( 'bugnote_include_file', '' );
  81  config_obsolete( 'bugnote_view_include_file', '' );
  82  config_obsolete( 'bugnote_add_include_file', '' );
  83  config_obsolete( 'history_include_file', '' );
  84  config_obsolete( 'print_bugnote_include_file', '' );
  85  config_obsolete( 'view_all_include_file', '' );
  86  config_obsolete( 'bug_view_inc', '' );
  87  config_obsolete( 'bug_file_upload_inc', '' );
  88  
  89  config_obsolete( 'show_source', '' );
  90  
  91  config_obsolete( 'summary_pad', '' );
  92  
  93  config_obsolete( 'show_project_in_title', '' );
  94  
  95  # removed in 0.19
  96  config_obsolete( 'hide_closed_default', 'hide_status_default' );
  97  
  98  config_obsolete( 'close_bug_threshold', 'set_status_threshold' );
  99  
 100  config_obsolete( 'status_pulldown_enum_mask_string', '' );
 101  config_obsolete( 'to_email', '' );
 102  config_obsolete( 'use_bcc', '' );
 103  
 104  # removed in 0.19.1
 105  config_obsolete( 'port', 'hostname' );
 106  
 107  # changes in 0.19.3
 108  config_obsolete( 'relationship_graph_fontpath', 'system_font_folder' );
 109  
 110  # changes in 1.1.0rc1
 111  config_obsolete( 'show_notices', 'display_errors' );
 112  config_obsolete( 'show_warnings', 'display_errors' );
 113  
 114  # changes in 1.1.0rc2
 115  config_obsolete( 'wait_time', 'default_redirect_delay' );
 116  config_obsolete( 'default_bug_category', '' );
 117  
 118  # changes in 1.2.0a1
 119  config_obsolete( 'enable_relationship', '' );
 120  config_obsolete( 'ldap_port', 'ldap_server' );
 121  
 122  # changes in 1.2.0rc1
 123  config_obsolete( 'jpgraph_path', '' );
 124  config_obsolete( 'use_jpgraph', '' );
 125  config_obsolete( 'jpgraph_antialias', '' );
 126  
 127  # changes in 1.2.0rc2
 128  config_obsolete( 'reminder_recipents_monitor_bug', 'reminder_recipients_monitor_bug' );
 129  config_obsolete( 'graph_window_width', '' );
 130  config_obsolete( 'graph_bar_aspect', '' );
 131  config_obsolete( 'graph_summary_graphs_per_row', '' );
 132  config_obsolete( 'show_report', '' );
 133  config_obsolete( 'show_view', '' );
 134  config_obsolete( 'show_update', '' );
 135  config_obsolete( 'default_advanced_report', '' );
 136  config_obsolete( 'default_advanced_view', '' );
 137  config_obsolete( 'default_advanced_update', '' );
 138  config_obsolete( 'default_graph_type', '' );
 139  config_obsolete( 'graph_font', '' );
 140  config_obsolete( 'graph_colors', '' );
 141  
 142  #changes in 1.3.0dev
 143  config_obsolete( 'bugnote_allow_user_edit_delete', '' );
 144  config_obsolete( 'password_confirm_hash_magic_string', 'crypto_master_salt' );
 145  config_obsolete( 'rss_key_seed', 'crypto_master_salt' );
 146  config_obsolete( 'cvs_web' );
 147  config_obsolete( 'source_control_notes_view_status' );
 148  config_obsolete( 'source_control_account' );
 149  config_obsolete( 'source_control_set_status_to' );
 150  config_obsolete( 'source_control_set_resolution_to' );
 151  config_obsolete( 'source_control_regexp' );
 152  config_obsolete( 'source_control_fixed_regexp' );
 153  config_obsolete( 'allow_close_immediately' );
 154  config_obsolete( 'show_extended_project_browser' );
 155  config_obsolete( 'show_queries_threshold', 'show_log_threshold' );
 156  config_obsolete( 'show_queries_list' );
 157  config_obsolete( 'administrator_email', 'webmaster_email' );
 158  config_obsolete( 'session_key' );
 159  config_obsolete( 'dhtml_filters', 'use_dynamic_filters' );
 160  config_obsolete( 'use_iis' );


Generated: Thu Jul 28 15:48:31 2011 Cross-referenced by PHPXref 0.7