Changes between Version 11 and Version 12 of TracIni


Ignore:
Timestamp:
Dec 14, 2014, 5:16:20 PM (9 years ago)
Author:
trac
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracIni

    v11 v12  
    11= The Trac Configuration File =
    2 
    32[[TracGuideToc]]
    4 [[PageOutline]]
    53
    64Trac configuration is done by editing the '''`trac.ini`''' config file, located in `<projectenv>/conf/trac.ini`.  Changes to the configuration are usually reflected immediately, though changes to the `[components]` or `[logging]` sections will require restarting the web server. You may also need to restart the web server after creating a global configuration file when none was previously present.
    75
    8 The `trac.ini` configuration file and its parent directory should be writable by the web server, as Trac currently relies on the possibility to trigger a complete environment reload to flush its caches.
     6The `trac.ini` configuration file should be writable by the web server, as Trac currently relies on the possibility to trigger a complete environment reload to flush its caches.
    97
    108== Global Configuration ==
     
    2321There are two more entries in the [[#inherit-section| [inherit] ]] section, `templates_dir` for sharing global templates and `plugins_dir`, for sharing plugins. Those entries can themselves be specified in the shared configuration file, and in fact, configuration files can even be chained if you specify another `[inherit] file` there.
    2422
    25 Note that the templates found in the `templates/` directory of the TracEnvironment have precedence over those found in `[inherit] templates_dir`. In turn, the latter have precedence over the installed templates, so be careful about what you put there, notably if you override a default template be sure to refresh your modifications when you upgrade to a new version of Trac (the preferred way to perform TracInterfaceCustomization being still to write a custom plugin doing an appropriate `ITemplateStreamFilter` transformation).
    26 
    2723== Reference for settings
    2824
    29 This is a brief reference of available configuration options, and their default settings.
     25This is a brief reference of available configuration options.
    3026
    3127[[TracIni]]
     
    5248See also: TracPlugins
    5349
    54 === [extra-permissions] === #extra-permissions-section
    55 ''(since 0.12)''
    56 
    57 Custom additional permissions can be defined in this section when [wiki:ExtraPermissionsProvider] is enabled.
    58 
    5950=== [milestone-groups] === #milestone-groups-section
    6051''(since 0.11)''
     
    7263# optional extra param for the query (two additional columns: created and modified and sort on created)
    7364closed.query_args = group=resolution,order=time,col=id,col=summary,col=owner,col=type,col=priority,col=component,col=severity,col=time,col=changetime
    74 # indicates groups that count for overall completion percentage
    75 closed.overall_completion = true
     65# indicates groups that count for overall completion
     66closed.overall_completion = truepercentage
    7667
    7768new = new
     
    143134See TracWorkflow for more details.
    144135
     136
    145137----
    146138See also: TracGuide, TracAdmin, TracEnvironment