Changes between Version 266 and Version 267 of WikiStart


Ignore:
Timestamp:
Sep 20, 2007, 7:36:18 PM (17 years ago)
Author:
korpios
Comment:

Created initial "Getting the code" section

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v266 v267  
    33Django is available open-source under the [http://code.djangoproject.com/file/django/trunk/LICENSE BSD license].
    44
    5 == Browsing Django's codebase online ==
     5== Getting the code ==
     6Django uses [http://subversion.tigris.org/ Subversion] (`svn`) for managing its code.
     7
     8Assuming you have Subversion installed, the following command in a terminal will fetch the most recent code for you:
     9{{{
     10svn co http://code.djangoproject.com/svn/django/trunk/
     11}}}
     12
     13Django also offers "official" release tarballs at the [http://www.djangoproject.com/download/ download page].
     14
     15== Browsing the code online ==
    616
    717 * [/browser/django/trunk/ Browse source]: See the full code via a Web interface.
    818 * [/timeline/ Timeline]: Keep track of recent changes.
    9  * See our [http://www.djangoproject.com/download/ download page] for download instructions.
    1019
    1120== Getting involved ==
Back to Top