Edgewall Software

Changes between Version 179 and Version 180 of TracDownload


Ignore:
Timestamp:
Mar 1, 2016, 10:22:16 AM (8 years ago)
Author:
Jonas Borgström
Comment:

Make all svn links https://

Legend:

Unmodified
Added
Removed
Modified
  • TracDownload

    v179 v180  
    166166Older releases and auxiliary files are archived on the FTP server:
    167167
    168  * http://download.edgewall.org/trac/
     168 * https://download.edgewall.org/trac/
    169169
    170170Each release is also tagged in the subversion repository:
    171171 
    172  * http://svn.edgewall.org/repos/trac/tags/
     172 * https://svn.edgewall.org/repos/trac/tags/
    173173
    174174== Latest Development Source Code
     
    177177
    178178The Subversion repository URL for the Trac project is at:
    179  http://svn.edgewall.org/repos/trac/
     179 https://svn.edgewall.org/repos/trac/
    180180
    181181Refer to the TracRepositories page for full details about how to get access to the source.
     
    185185I hope this is enough for PyPI:
    186186
    187 http://svn.edgewall.org/repos/trac/branches/0.11-stable#egg=Trac-0.11-dev 0.11-stable
    188 http://svn.edgewall.org/repos/trac/branches/0.12-stable#egg=Trac-0.12-dev 0.12-stable
     187https://svn.edgewall.org/repos/trac/branches/0.11-stable#egg=Trac-0.11-dev 0.11-stable
     188https://svn.edgewall.org/repos/trac/branches/0.12-stable#egg=Trac-0.12-dev 0.12-stable
    189189
    190190?
     
    192192
    193193=== Trac ''1.1dev'' #Tractrunk
    194 The latest revision for the upcoming [http://svn.edgewall.org/repos/trac/trunk#egg=Trac-dev next development release] of Trac ([milestone:next-dev-1.1.x]) can be checked out with the following command:
    195 {{{#!sh
    196 svn co http://svn.edgewall.org/repos/trac/trunk trac
     194The latest revision for the upcoming [https://svn.edgewall.org/repos/trac/trunk#egg=Trac-dev next development release] of Trac ([milestone:next-dev-1.1.x]) can be checked out with the following command:
     195{{{#!sh
     196svn co https://svn.edgewall.org/repos/trac/trunk trac
    197197}}}
    198198(https: also works)
     
    202202
    203203=== Trac ''1.0-stable'' #Tracstable
    204 The latest revision for the upcoming [http://svn.edgewall.org/repos/trac/branches/1.0-stable#egg=Trac-1.0-dev next maintenance release] of Trac ([milestone:next-stable-1.0.x]) can be checked out with the following command:
    205 {{{#!sh
    206 svn co http://svn.edgewall.org/repos/trac/branches/1.0-stable trac
     204The latest revision for the upcoming [https://svn.edgewall.org/repos/trac/branches/1.0-stable#egg=Trac-1.0-dev next maintenance release] of Trac ([milestone:next-stable-1.0.x]) can be checked out with the following command:
     205{{{#!sh
     206svn co https://svn.edgewall.org/repos/trac/branches/1.0-stable trac
    207207}}}
    208208(https: also works)
     
    212212=== Trac ''0.12-stable'' #Tracstable012
    213213
    214 The latest revision for the ''stable'' version of Trac 0.12 can be checked out from the [http://svn.edgewall.org/repos/trac/branches/0.12-stable#egg=Trac-0.12-dev 0.12-stable branch] with the following command:
    215 
    216 {{{#!sh
    217 svn co http://svn.edgewall.org/repos/trac/branches/0.12-stable 0.12dev
     214The latest revision for the ''stable'' version of Trac 0.12 can be checked out from the [https://svn.edgewall.org/repos/trac/branches/0.12-stable#egg=Trac-0.12-dev 0.12-stable branch] with the following command:
     215
     216{{{#!sh
     217svn co https://svn.edgewall.org/repos/trac/branches/0.12-stable 0.12dev
    218218}}}
    219219
     
    226226Alternatively, you can directly "easy-install" the latest stable version from the repository:
    227227{{{#!sh
    228 easy_install http://svn.edgewall.org/repos/trac/branches/0.12-stable
     228easy_install https://svn.edgewall.org/repos/trac/branches/0.12-stable
    229229}}}
    230230`easy_install` is a script provided by the SetupTools.