Changes between Version 3 and Version 4 of TracUpgrade
- Timestamp:
- 01/23/07 01:32:55 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracUpgrade
v3 v4 1 2 1 = Upgrade Instructions = 3 2 [[TracGuideToc]] … … 59 58 Due to some changes in the Wiki syntax, you may notice that certain parts of your pages no longer work as expected: 60 59 * 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. 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`.)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`.) 62 61 63 62 Several enhancements have been made to the version control subsystem, in particular for the support of scoped repositories has been improved. … … 66 65 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: 67 66 {{{ 68 initenv <projectname> <db> <repospath> <templatepath>67 initenv <projectname> <db> <repospath> <templatepath> 69 68 }}} 70 69 The new usage is: 71 70 {{{ 72 initenv <projectname> <db> <repostype> <repospath> <templatepath>71 initenv <projectname> <db> <repostype> <repospath> <templatepath> 73 72 }}} 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.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. 75 74 76 75 == From 0.9.3 to 0.9.4 == 77 76 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: "%%".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: "%%". 79 78 80 79 == From 0.9.x to 0.9.3 or later == … … 113 112 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): 114 113 {{{ 115 $ find /var/trac/ -iname "trac.db" | xargs -i bash -c "mv {} {}.2; sqlite {}.2 .dump | sqlite3 {};"114 $ find /var/trac/ -iname "trac.db" | xargs -i bash -c "mv {} {}.2; sqlite {}.2 .dump | sqlite3 {};" 116 115 }}} 117 116 … … 132 131 133 132 ----- 134 See also: TracGuide, TracInstall 72832839873133 See also: TracGuide, TracInstall