Changes between Version 1 and Version 2 of TracUpgrade


Ignore:
Timestamp:
06/03/10 15:59:45 (14 years ago)
Author:
zeiss
Comment:

Importing pages from "/var/lib/svn/trac/etsicheck2" using WikiImport plugin.

Legend:

Unmodified
Added
Removed
Modified
  • TracUpgrade

    v1 v2  
    1414Get the new version as described in TracInstall, or your operating system specific procedure. 
    1515 
    16 If you do a manual (not operating system specific) upgrade, you should also stop any running Trac server before the installation. Doing "hot" upgrades is not advised, especially not on Windows ([trac:ticket:7625 #7265]). 
     16If you do a manual (not operating system specific) upgrade, you may also later on want to remove the existing Trac code by deleting the `trac` directory from the Python `lib/site-packages` directory. 
    1717 
    18 You may also want to remove the pre-existing Trac code by deleting the `trac` directory from the Python `lib/site-packages` directory, or remove Trac .eggs from former versions. 
    1918The location of the site-packages directory depends on the operating system, and the location in which Python was installed. However, the following locations are common: 
    2019 * If you’re using Linux: /usr/lib/python2.X/site-packages 
    2120 * If you’re using Windows: C:\Python2.X\lib\site-packages 
    22  * If you’re using MacOSX: /Library/Python/2.X/site-packages 
     21 * If you’re using MacOSX: /Library/Python2.X/site-packages 
    2322 
    2423You may also want to remove the Trac `cgi-bin`, `htdocs`, `templates` and `wiki-default` directories that are commonly found in a directory called `share/trac` (the exact location depends on your platform). 
    25  
    26 This cleanup is not mandatory, but it makes it easier to troubleshoot issues later on, as you won't waste your time looking at code or templates from a previous release that are not being used anymore... As usual, make a backup before actually deleting things. 
    2724 
    2825If you had the webadmin plugin installed, you can now uninstall it as it is now part of the Trac code base. 
     
    5350Note that this procedure will of course leave your `WikiStart` page intact. 
    5451 
    55 === Site Templates === 
    56 The templating engine has changed in 0.11, please look at TracInterfaceCustomization for more information. 
    57  
    5852=== Trac Macros, Plugins === 
    59 The Trac macros will need to be adapted, as the old-style wiki-macros are not supported anymore (due to the drop of [trac:ClearSilver ClearSilver] and the HDF); they need to be converted to the new-style macros, see WikiMacros. When they are converted to the new style, they need to be placed into the plugins directory instead and not wiki-macros, which is no longer scanned for macros or plugins. 
    60  
    61 === For CGI users === 
    62  
    63 For those who run Trac under the CGI environment, run this command in order to obtain the trac.cgi file: 
    64 {{{ 
    65 trac-admin /path/to/env deploy /deploy/directory/path 
    66 }}} 
    67  
    68 This will create a deploy directory with the following two subdirectories: `cgi-bin` and `htdocs`. Then update your Apache configuration file `httpd.conf` with this new `trac.cgi` location and `htdocs` location. 
     53The Trac macros will need to be adapted, as the old-style wiki-macros are not supported anymore (due to the drop of ClearSilver and the HDF); they need to be converted to the new-style macros, see WikiMacros. When they are converted to the new style, they need to be placed into the plugins directory instead and not wiki-macros, which is no longer scanned for macros or plugins. 
    6954 
    7055=== Restart the Web Server === 
     
    9176== Older Versions == 
    9277 
    93 For upgrades from versions older than Trac 0.10, refer first to trac:wiki:0.10/TracUpgrade. 
    94  
    95 Note that downgrading from Trac 0.11 to Trac 0.10.4 or 0.10.5 is easy, but has to be done manually, e.g. 
    96 {{{ 
    97 $ sqlite3 db/trac.db "update system set value=20 where name='database_version'" 
    98 }}} 
    99 (upgrade can be redone the normal way later on) 
     78For upgrades from former versions refer to wiki:0.10/TracUpgrade. 
    10079 
    10180-----