Changes between Version 3 and Version 4 of TracEnvironment
- Timestamp:
- Aug 7, 2013, 1:33:50 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracEnvironment
v3 v4 19 19 although the user under which Trac runs will only require write access to a Subversion repository created with the BDB file system; for other repository types, check the corresponding plugin's documentation. 20 20 21 - `initenv` when using svn repositorydoes not imply that trac-admin will perform `svnadmin create` for the specified repository path. You need to perform the `svnadmin create` prior to `trac-admin initenv` if you're creating a new svn repository altogether with a new trac environment, otherwise you will see a message "Warning: couldn't index the repository" when initializing the environment.21 - `initenv`, when using an svn repository, does not imply that trac-admin will perform `svnadmin create` for the specified repository path. You need to perform the `svnadmin create` prior to `trac-admin initenv` if you're creating a new svn repository altogether with a new trac environment, otherwise you will see a message "Warning: couldn't index the repository" when initializing the environment. 22 22 23 23 - Non-ascii environment paths are not supported … … 141 141 * `db` 142 142 * `trac.db` - The SQLite database (if you're using SQLite). 143 * `htdocs` - directory containing web resources, which can be referenced in Genshi templates . '''''(since 0.11)'''''143 * `htdocs` - directory containing web resources, which can be referenced in Genshi templates using `/htdocs/site/...` URLs. ''(since 0.11)'' 144 144 * `log` - default directory for log files, if logging is turned on and a relative path is given. 145 145 * `plugins` - Environment-specific [wiki:TracPlugins plugins] (Python eggs or single file plugins, since [trac:milestone:0.10 0.10]) 146 * `templates` - Custom Genshi environment-specific templates. '' '''(since 0.11)'''''146 * `templates` - Custom Genshi environment-specific templates. ''(since 0.11)'' 147 147 * `site.html` - method to customize header, footer, and style, described in TracInterfaceCustomization#SiteAppearance 148 148 149 '''Caveat:''' ''don't confuse a Trac environment directory with the source code repository directory.'' 149 === Caveat: don't confuse a ''Trac environment directory'' with the ''source code repository directory'' #Caveat 150 150 151 151 This is a common beginners' mistake. … … 155 155 ---- 156 156 See also: TracAdmin, TracBackup, TracIni, TracGuide 157