Edgewall Software

Changes between Version 38 and Version 39 of TracIni


Ignore:
Timestamp:
Sep 4, 2005, 8:16:29 PM (19 years ago)
Author:
Christopher Lenz
Comment:

Updates

Legend:

Unmodified
Added
Removed
Modified
  • TracIni

    v38 v39  
    55
    66This is a brief reference of available configuration options.
     7
     8== [trac] ==
     9|| database        || Database connection string for this project ||
     10|| default_charset || Charset used in text files in the subversion repository (default is `iso-8859-15`) ||
     11|| default_handler || Name of the component that handles requests to the base URL (default is `WikiHandler`) ||
     12|| repository_dir  || Path to local Subversion repository ||
     13|| authz_file      || Path to Subversion [http://svnbook.red-bean.com/en/1.1/ch06s04.html#svn-ch-6-sect-4.4.2 authorization (authz) file]. ||
     14|| check_auth_ip || Whether the IP address of the user should be checked for authentication (true, false) ||
     15|| ignore_auth_case || Whether case should be ignored for login names (true, false) ||
     16|| templates_dir   || Path to the !ClearSilver templates ||
    717
    818== [project] ==
     
    1323|| footer || Page footer text (right-aligned) ||
    1424
    15 
    16 == [trac] ==
    17 || repository_dir  || Path to local Subversion repository ||
    18 || authz_file      || Path to authz_svn file. More info: FineGrainedPermissions ||
    19 || htdocs_location || Base URL for static Trac graphics and CSS files ||
    20 || database        || Database to use for this project ||
    21 || templates_dir   || Path to the !ClearSilver templates ||
    22 || default_charset || Charset used in text files in the subversion repository (default is iso-8859-15) ||
     25== [header_logo] ==
     26|| src    || URL to image to use as header logo ||
     27|| link   || Destination URL to link to from header logo ||
     28|| alt    || ''alt'' text for header logo ||
     29|| width  || Header logo width in pixels ||
     30|| height || Header logo height in pixels ||
    2331
    2432== [logging] ==
     
    2634|| log_file  || If ''log_type'' is ''file'', this should be a path to the log-file ||
    2735|| log_level || Level of verbosity in log (CRITICAL, ERROR, WARN, INFO, DEBUG) ||
    28 
    2936See also: TracLogging
    30 
    31 == [ticket] ==
    32 || default_version   || Default version for newly created tickets ||
    33 || default_severity  || Default severity for newly created tickets ||
    34 || default_priority  || Default priority for newly created tickets ||
    35 || default_milestone || Default milestone for newly created tickets ||
    36 || default_component || Default component for newly created tickets ||
    37 || restrict_owner    || Optionally allow the owner field of tickets to use a drop-down menu (<select>) ||
    38 
    39 See also: TracTicketsCustomFields
    40 
    4137
    4238== [attachment] ==
     
    5349|| always_notify_reporter || Always send notifications to any address in the ''reporter'' field ||
    5450|| always_notify_owner || (''requires [milestone:0.9 0.9]'') Always send notifications to the ticketowner  ||
    55 
    56 
    5751See also: TracNotification
    5852
    59 == [header_logo] ==
    60 || src    || URL to image to use as header logo ||
    61 || link   || Destination URL to link to from header logo ||
    62 || alt    || ''alt'' text for header logo ||
    63 || width  || Header logo width in pixels ||
    64 || height || Header logo height in pixels ||
     53== [mimeviewer] ==
     54|| enscript_path || Path to the Enscript program ||
     55|| php_path || Path to the PHP program ||
     56|| max_preview_size || Maximum file size for HTML preview ||
     57|| tab_width || Displayed tab width in file preview ||
    6558
    66 == [mimeviewer] ==
    67 || enscript_path || Path to Enscript program ||
    68 || php_path || Path to PHP program ||
    69 || max_preview_size || Maximum file size for html preview (requires [milestone:0.9 0.9]) ||
     59== [ticket] ==
     60|| default_version   || Default version for newly created tickets ||
     61|| default_severity  || Default severity for newly created tickets ||
     62|| default_priority  || Default priority for newly created tickets ||
     63|| default_milestone || Default milestone for newly created tickets ||
     64|| default_component || Default component for newly created tickets ||
     65|| restrict_owner    || Optionally allow the owner field of tickets to use a drop-down menu (<select>) ||
     66
     67== [ticket-custom] ==
     68Creates user-defined ticket fields.
     69See TracTicketsCustomFields.
    7070
    7171== [timeline] ==
     
    7373|| default_daysback || (''requires [milestone:0.9 0.9]'') Default "depth" of the Timeline, in days ||
    7474
    75 == [diff] ==
    76 || tab_width || Displayed tab width in changeset diffs ||
     75== [browser] ==
     76|| hide_properties || List of Subversion properties to hide from the repository browser and changesets ||
    7777
    7878== [wiki] ==
    79 || ignore_missing_pages || (''requires [milestone:0.9 0.9]'') enable/disable not highlighting CamelCase links ||
     79|| ignore_missing_pages || enable/disable highlighting CamelCase links to missing pages ||
    8080
    8181== [disabled_components] ==
    82 || trac.ticket.web_ui.!UpdateDetailsForTimeline || (''requires [milestone:0.9 0.9]'') enable/disable showing ticket update details in the timeline ( [1594] ) ||
    83 || trac.mimeview.php || (''requires [milestone:0.9 0.9]'') enable/disable php highlighting by php itself ||
     82You 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.
    8483
    85 With the new TracPluggableModules, it is possible to disable
    86 some components, by listing them in this section and giving
    87 them a truth value (e.g. ''yes'').
    88 
    89 == [ticket-custom] ==
    90 Creates user-defined ticket fields.
    91 See TracTicketsCustomFields.
    92 
    93 [[BR]]
    9484----
    95 See also: TracGuide, TracAdmin, TracTicketsCustomFields
     85See also: TracGuide, TracAdmin, TracEnvironment