Changes between Version 3 and Version 4 of TracUpgrade


Ignore:
Timestamp:
01/23/07 01:32:55 (18 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracUpgrade

    v3 v4  
    1  
    21= Upgrade Instructions = 
    32[[TracGuideToc]] 
     
    5958Due to some changes in the Wiki syntax, you may notice that certain parts of your pages no longer work as expected: 
    6059 * 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`.) 
    6261 
    6362Several enhancements have been made to the version control subsystem, in particular for the support of scoped repositories has been improved.  
     
    6665Also 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: 
    6766{{{ 
    68    initenv <projectname> <db> <repospath> <templatepath> 
     67   initenv <projectname> <db> <repospath> <templatepath> 
    6968}}} 
    7069The new usage is: 
    7170{{{ 
    72    initenv &lt;projectname&gt; &lt;db&gt; &lt;repostype&gt; &lt;repospath&gt; &lt;templatepath&gt; 
     71   initenv <projectname> <db> <repostype> <repospath> <templatepath> 
    7372}}} 
    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 `&lt;repostype&gt;` argument. 
     73If 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. 
    7574 
    7675== From 0.9.3 to 0.9.4 == 
    7776 
    78 There 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;. 
     77There 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: "%%". 
    7978 
    8079== From 0.9.x to 0.9.3 or later == 
     
    113112To 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): 
    114113{{{ 
    115  $ find /var/trac/ -iname &#34;trac.db&#34; | xargs -i bash -c &#34;mv {} {}.2; sqlite {}.2 .dump | sqlite3 {};&#34; 
     114 $ find /var/trac/ -iname "trac.db" | xargs -i bash -c "mv {} {}.2; sqlite {}.2 .dump | sqlite3 {};" 
    116115}}} 
    117116 
     
    132131 
    133132----- 
    134 See also: TracGuide, TracInstall72832839873 
     133See also: TracGuide, TracInstall