Edgewall Software

Changes between Version 92 and Version 93 of TracMercurial


Ignore:
Timestamp:
Jan 27, 2012, 8:57:48 PM (12 years ago)
Author:
Christian Boos
Comment:

restructure the #DownloadandInstallation section

Legend:

Unmodified
Added
Removed
Modified
  • TracMercurial

    v92 v93  
    2020
    2121== Download and Installation ==
    22 === Trac ===
    23 
    24 Consult the version table [#Releases below] to check which precise version you need for your version of Trac. If you want to get a specific revision, add an `svn up -rxxx` step to the instructions below, after the checkout.
    25 
    26 ==== Trac 0.12 ====
    27 
    28 The latest version of the plugin is at [source:plugins/0.12/mercurial-plugin].
    29 
    30 This was merged from [source:plugins/multirepos/mercurial-plugin] as part of the MultipleRepositorySupport branch.
    31 
    32 Installation of the plugin:
    33 {{{
    34 svn co http://svn.edgewall.com/repos/trac/plugins/0.12/mercurial-plugin
    35 }}}
    36 create an "egg" from there:
    37 {{{
    38 $ cd mercurial-plugin
    39 $ python setup.py bdist_egg
    40 }}}
    41 
    42 
    43 ==== Releases and compatibility matrix ==== #Releases
     22
     23=== Releases and compatibility matrix   #Releases
    4424
    4525{{{#!table class="listing"
     
    7555
    7656
     57=== Trac ===
     58
     59Consult the version table [#Releases below] to check which precise version you need for your version of Trac. If you want to get a specific revision, add an `svn up -rxxx` step to the instructions below, after the checkout.
     60
     61Installation of the plugin:
     62{{{
     63svn co http://svn.edgewall.com/repos/trac/plugins/0.12/mercurial-plugin
     64}}}
     65or:
     66{{{
     67svn co http://svn.edgewall.com/repos/trac/plugins/0.13/mercurial-plugin
     68}}}
     69depending on the version of Trac you're using ([source:branches/0.12-stable 0.12] or [source:trunk 0.13dev]).
     70
     71Then from the checkout (`cd mercurial-plugin`), you have various installation options:
     72 - create an "egg" which you can copy to your `$TRACENV/plugins`, for example:
     73   {{{
     74   $ python setup.py bdist_egg
     75   }}}
     76 - install it in the current Python (or [http://pypi.python.org/pypi/virtualenv virtualenv]) installation:
     77   {{{
     78   $ python setup.py install
     79   }}}
     80 - similar to the above, but directly use the code from the checkout (ideal for hacking):
     81   {{{
     82   $ python setup.py develop
     83   }}}
     84
     85
     86
    7787=== Mercurial ===
    7888
     
    8393up to the latest. Better use a recent version however.
    8494
    85 === Windows
     95==== Windows
    8696On Windows, it looks like it's possible to re-use the Mercurial library coming from the [Mercurial:BinaryPackages installer],
    8797see [http://selenic.com/pipermail/mercurial/2007-July/013827.html this mail]