Changes between Version 5 and Version 6 of AdminUserRequired


Ignore:
Timestamp:
Jun 3, 2009, 5:11:41 AM (15 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AdminUserRequired

    v5 v6  
    11= 莊偉 =
     2= Django source-code repository, wiki and bug-report system =
     3Django is available open-source under the [http://code.djangoproject.com/file/django/trunk/LICENSE BSD license].
     4
     5[[PageOutline(2,, inline)]]
     6
     7== Getting the code ==
     8Django uses [http://subversion.tigris.org/ Subversion] (`svn`) for managing its code.
     9
     10Assuming you have Subversion installed, the following command in a terminal will fetch the most recent code for you:
     11{{{
     12svn co http://code.djangoproject.com/svn/django/trunk/
     13}}}
     14
     15Django also offers "official" release tarballs at the [http://www.djangoproject.com/download/ download page].
     16
     17== Browsing the code online ==
     18 * [/browser/django/trunk/ Browse source]: See the full code via a Web interface.
     19 * [/timeline/ Timeline]: Keep track of recent changes.
     20
     21== Getting involved ==
     22Before ''anything'', please read [http://www.djangoproject.com/documentation/contributing/ How to contribute to Django].  You'll find out how the Django community works, and possibly save yourself much grief in the future.  `:)`
     23
     24 * [wiki:Version1.1Roadmap Help with 1.1 goals]
     25 * [http://code.djangoproject.com/wiki/Reports Tickets]: View active tickets, make bug reports and contribute feature requests.
     26 * [wiki:LittleEasyImprovements Little, easy improvements]: Get your feet wet by taking on one of these small tasks.
     27 * [http://www.djangoproject.com/documentation/contributing/#reporting-security-issues How to report security issues].
     28
Back to Top