Changes between Version 2 and Version 3 of TracUpgrade
- Timestamp:
- 11/30/06 00:55:49 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracUpgrade
v2 v3 1 1 2 = Upgrade Instructions = 2 3 [[TracGuideToc]] … … 58 59 Due to some changes in the Wiki syntax, you may notice that certain parts of your pages no longer work as expected: 59 60 * Previously, links to images would result in that image being embedded into the page. Since 0.10, links to images remain plain links. If you want to embed an image in the page, use the `[[Image]]` macro. 60 * You can no longer use `%20` in wiki links to encode spaces. Instead, you should quote the name containing spaces (for example, use `wiki: "My page"` instead of `wiki:My%20page`.)61 * You can no longer use `%20` in wiki links to encode spaces. Instead, you should quote the name containing spaces (for example, use `wiki:"My page"` instead of `wiki:My%20page`.) 61 62 62 63 Several enhancements have been made to the version control subsystem, in particular for the support of scoped repositories has been improved. … … 65 66 Also note that the argument list of the [TracAdmin trac-admin] '''`initenv`''' command has changed: there's a new argument for determining the type of version control system. The old usage was: 66 67 {{{ 67 initenv <projectname> <db> <repospath> <templatepath>68 initenv <projectname> <db> <repospath> <templatepath> 68 69 }}} 69 70 The new usage is: 70 71 {{{ 71 initenv <projectname> <db> <repostype> <repospath> <templatepath>72 initenv <projectname> <db> <repostype> <repospath> <templatepath> 72 73 }}} 73 If you're using any scripts that automate the creation of Trac environments, you will need to update them. If you're using Subversion, specify `svn` for the ` <repostype>` argument.74 If you're using any scripts that automate the creation of Trac environments, you will need to update them. If you're using Subversion, specify `svn` for the `<repostype>` argument. 74 75 75 76 == From 0.9.3 to 0.9.4 == 76 77 77 There is a bug in Pysqlite 1.x that causes reports using the "%" character for `LIKE` clauses or date formatting to fail. You will need to use escape the percent characters with another: "%%".78 There is a bug in Pysqlite 1.x that causes reports using the "%" character for `LIKE` clauses or date formatting to fail. You will need to use escape the percent characters with another: "%%". 78 79 79 80 == From 0.9.x to 0.9.3 or later == … … 112 113 To update multiple database files at once on linux you may use the following command (replace {{{/var/trac}}} withe the location where your trac installtions reside): 113 114 {{{ 114 $ find /var/trac/ -iname "trac.db" | xargs -i bash -c "mv {} {}.2; sqlite {}.2 .dump | sqlite3 {};"115 $ find /var/trac/ -iname "trac.db" | xargs -i bash -c "mv {} {}.2; sqlite {}.2 .dump | sqlite3 {};" 115 116 }}} 116 117 … … 131 132 132 133 ----- 133 See also: TracGuide, TracInstall 134 See also: TracGuide, TracInstall72832839873