Edgewall Software

Changes between Version 42 and Version 43 of TracIni


Ignore:
Timestamp:
Oct 13, 2005, 12:34:43 PM (19 years ago)
Author:
Christopher Lenz
Comment:

Documentation for [components]

Legend:

Unmodified
Added
Removed
Modified
  • TracIni

    v42 v43  
    7979|| `ignore_missing_pages` || enable/disable highlighting CamelCase links to missing pages (''since 0.9'') ||
    8080
    81 == [disabled_components] ==
    82 You can disable any Trac component by listing its name in this section and assigning a truth value (e.g. ''yes''). See the ''Plugins'' page on ''About Trac'' to get the list of active components.
     81== [components] ==
    8382(''since 0.9'')
     83
     84This section is used to enable or disable components provided by plugins, as well as by Trac itself. The component to enable/disable is specified via the name of the option. Whether its enabled is determined by the option value; setting the value to `enabled` or `on` will enable the component, any other value (typically `disabled` or `off`) will disable the component.
     85
     86The option name is either the fully qualified name of the components or the module/package prefix of the component. The former enables/disables a specific component, while the latter enables/disables any component in the specified package/module.
     87
     88Consider the following configuration snippet:
     89{{{
     90[components]
     91trac.ticket.report.ReportModule = disabled
     92webadmin.* = enabled
     93}}}
     94
     95The first option tells Trac to disable the [wiki:TracReports report module]. The second option instructs Trac to enable all components in the `webadmin` package. Note that the trailing wildcard is required for module/package matching.
     96
     97See the ''Plugins'' page on ''About Trac'' to get the list of active components (requires `CONFIG_VIEW` [wiki:TracPermissions permissions].)
     98
     99  ''Note that prior to Trac r2335 (that applies to 0.9b1 and 0.9b2), you would use a `[disabled_components]` section instead. See a [http://projects.edgewall.com/trac/wiki/TracIni?version=42 previous version] of this page for the details.''
    84100
    85101----