Edgewall Software

Changes between Version 76 and Version 77 of TracIni


Ignore:
Timestamp:
Aug 28, 2006, 12:36:21 PM (18 years ago)
Author:
Christopher Lenz
Comment:

Remove unneeded escaping from headings

Legend:

Unmodified
Added
Removed
Modified
  • TracIni

    v76 v77  
    2020
    2121
    22 == ![trac] ==
     22== [trac] ==
    2323|| `base_url` || Base URL of the Trac deployment.[[BR]]In most configurations, Trac will automatically reconstruct the URL that is used to access it automatically. However, in more complex setups, usually involving running Trac behind a HTTP proxy, you may need to use this option to force Trac to use the correct URL. ||
    2424|| `database`        || [wiki:TracEnvironment#DatabaseConnectionStrings Database connection string] for this project ||
     
    3636|| `mainnav` || The order of the sections displayed in the main nav bar ||
    3737
    38 == ![diff] ==
     38== [diff] ==
    3939|| `tab_width` || ''deprecated since 0.9 in favor of the `tab_width` option in the `[mimeviewer]` section'' ||
    4040
    41 == ![project] ==
     41== [project] ==
    4242|| `name`   || Project name ||
    4343|| `descr`  || Short project description ||
     
    4646|| `footer` || Page footer text (right-aligned) ||
    4747
    48 == ![header_logo] ==
     48== [header_logo] ==
    4949|| `src`    || URL to image to use as header logo ||
    5050|| `link`   || Destination URL to link to from header logo ||
     
    5454See also: TracInterfaceCustomization.
    5555
    56 == ![logging] ==
     56== [logging] ==
    5757|| `log_type`  || Logging facility to use. (none, file, stderr, syslog, winlog) ||
    5858|| `log_file`  || If ''log_type'' is ''file'', this should be a path to the log-file ||
     
    6060See also: TracLogging
    6161
    62 == ![attachment] ==
     62== [attachment] ==
    6363|| `max_size` || Maximum allowed file size for ticket and wiki attachments ||
    6464|| `render_unsafe_content` || Whether non-binary attachments should be rendered in the browser, or only made downloadable. Pretty much any text file may be interpreted as HTML by the browser, which allows a malicious user to attach a file containing cross-site scripting attacks. For public sites where anonymous users can create attachments, it is recommended to leave this option off (which is the default). ||
    6565
    66 == ![notification] ==
     66== [notification] ==
    6767|| `smtp_enabled`   || Enable SMTP (email) notification (true, false) ||
    6868|| `smtp_server`    || SMTP server hostname to use for email notifications (default: `localhost`) ||
     
    8484See also: TracNotification
    8585
    86 == ![mimeviewer] ==
     86== [mimeviewer] ==
    8787|| `enscript_path` || Path to the Enscript program ||
    8888|| `php_path` || Path to the PHP program ||
     
    9090|| `tab_width` || Displayed tab width in file preview (''since 0.9'') ||
    9191
    92 == ![ticket] ==
     92== [ticket] ==
    9393|| `default_version`   || Default version for newly created tickets ||
    9494|| `default_severity`  || Default severity for newly created tickets ||
     
    9999|| `restrict_owner`    || Make the owner field of tickets use a drop-down menu (''since 0.9''). See [wiki:TracTickets#AssigntoasDropDownList AssignToAsDropDownList] ||
    100100
    101 == ![ticket-custom] ==
     101== [ticket-custom] ==
    102102Creates [wiki:TracTicketsCustomFields user-defined ticket fields].
    103103
    104 == ![timeline] ==
     104== [timeline] ==
    105105|| `default_daysback` || Default "depth" of the Timeline, in days (''since 0.9'') ||
    106106|| `changeset_show_files` || Number of files to show (-1 for unlimited, 0 to disable) ||
    107107|| `ticket_show_details` || Enable the display of all ticket changes in the timeline (''since 0.9?'')||
    108108
    109 == ![browser] ==
     109== [browser] ==
    110110|| `hide_properties` || List of subversion properties to hide from the repository browser (''since 0.9'') ||
    111111
    112 == ![wiki] ==
     112== [wiki] ==
    113113|| `ignore_missing_pages` || enable/disable highlighting CamelCase links to missing pages (''since 0.9'') ||
    114114
    115 == ![components] ==
     115== [components] ==
    116116(''since 0.9'')
    117117
     
    127127}}}
    128128
    129 The 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.
    130 
    131 To get a list of active components for your installation, see the ''Plugins'' page on ''About Trac'' (requires `CONFIG_VIEW` [wiki:TracPermissions permissions].)
    132 
    133 '''Q:''' How about a list of core components? I had to look [https://lists.edgewall.com/archive/trac/2006-March/007021.html here] and [http://lists.edgewall.com/archive/trac/2005-December/005935.html here] to find out the correct syntax for disabling things like !TimeLine and Roadmap. They're not mentioned in trac-admin's ''component list''[[BR]]
    134 '''A:''' The WebAdmin plugin provides this information (see the "Plugins" section).
     129The 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. To get a list of active components for your installation, see the ''Plugins'' page on ''About Trac'' (requires `CONFIG_VIEW` [wiki:TracPermissions permissions].)
    135130
    136131See also: TracPlugins
    137132
    138   ''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.''
    139 
    140133----
    141134See also: TracGuide, TracAdmin, TracEnvironment