Changes between Version 2 and Version 3 of TracUpgrade


Ignore:
Timestamp:
11/30/06 00:55:49 (18 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracUpgrade

    v2 v3  
     1 
    12= Upgrade Instructions = 
    23[[TracGuideToc]] 
     
    5859Due to some changes in the Wiki syntax, you may notice that certain parts of your pages no longer work as expected: 
    5960 * 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`.) 
    6162 
    6263Several enhancements have been made to the version control subsystem, in particular for the support of scoped repositories has been improved.  
     
    6566Also 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: 
    6667{{{ 
    67    initenv <projectname> <db> <repospath> <templatepath> 
     68   initenv &lt;projectname&gt; &lt;db&gt; &lt;repospath&gt; &lt;templatepath&gt; 
    6869}}} 
    6970The new usage is: 
    7071{{{ 
    71    initenv <projectname> <db> <repostype> <repospath> <templatepath> 
     72   initenv &lt;projectname&gt; &lt;db&gt; &lt;repostype&gt; &lt;repospath&gt; &lt;templatepath&gt; 
    7273}}} 
    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. 
     74If 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 `&lt;repostype&gt;` argument. 
    7475 
    7576== From 0.9.3 to 0.9.4 == 
    7677 
    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: "%%". 
     78There is a bug in Pysqlite 1.x that causes reports using the &#34;%&#34; character for `LIKE` clauses or date formatting to fail.  You will need to use escape the percent characters with another: &#34;%%&#34;. 
    7879 
    7980== From 0.9.x to 0.9.3 or later == 
     
    112113To 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): 
    113114{{{ 
    114  $ find /var/trac/ -iname "trac.db" | xargs -i bash -c "mv {} {}.2; sqlite {}.2 .dump | sqlite3 {};" 
     115 $ find /var/trac/ -iname &#34;trac.db&#34; | xargs -i bash -c &#34;mv {} {}.2; sqlite {}.2 .dump | sqlite3 {};&#34; 
    115116}}} 
    116117 
     
    131132 
    132133----- 
    133 See also: TracGuide, TracInstall 
     134See also: TracGuide, TracInstall72832839873