2005-11-28 23:30:21 +08:00
|
|
|
======================
|
|
|
|
Contributing to Django
|
|
|
|
======================
|
|
|
|
|
|
|
|
If you think working *with* Django is fun, wait until you start working *on* it.
|
|
|
|
We're passionate about helping Django users make the jump to contributing members
|
|
|
|
of the community, so there are many ways you can help Django's development:
|
|
|
|
|
|
|
|
* Blog about Django. We syndicate all the Django blogs we know about on
|
|
|
|
the `community page`_; contact jacob@jacobian.org if you've got a blog
|
|
|
|
you'd like to see on that page.
|
|
|
|
|
|
|
|
* Report bugs and request features in our `ticket tracker`_. Please read
|
2005-11-29 08:24:34 +08:00
|
|
|
`Reporting bugs`_, below, for the details on how we like our bug reports
|
2005-11-28 23:30:21 +08:00
|
|
|
served up.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
|
|
|
* Submit patches for new and/or fixed behavior. Please read `Submitting
|
|
|
|
patches`_, below, for details on how to submit a patch.
|
|
|
|
|
2006-01-08 14:24:17 +08:00
|
|
|
* Join the `django-developers`_ mailing list and share your ideas for how
|
|
|
|
to improve Django. We're always open to suggestions, although we're
|
|
|
|
likely to be skeptical of large-scale suggestions without some code to
|
|
|
|
back it up.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2006-12-11 08:44:02 +08:00
|
|
|
* Triage patches that have been submitted by other users. Please read
|
|
|
|
`Ticket triage`_ below, for details on the triage process.
|
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
That's all you need to know if you'd like to join the Django development
|
|
|
|
community. The rest of this document describes the details of how our community
|
2005-11-29 08:24:34 +08:00
|
|
|
works and how it handles bugs, mailing lists, and all the other minutiae of
|
|
|
|
Django development.
|
2005-11-28 23:30:21 +08:00
|
|
|
|
|
|
|
Reporting bugs
|
|
|
|
==============
|
|
|
|
|
|
|
|
Well-written bug reports are *incredibly* helpful. However, there's a certain
|
|
|
|
amount of overhead involved in working with any bug tracking system, so your
|
|
|
|
help in keeping our ticket tracker as useful as possible is appreciated. In
|
|
|
|
particular:
|
|
|
|
|
|
|
|
* **Do** read the FAQ_ to see if your issue might be a well-known question.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
* **Do** `search the tracker`_ to see if your issue has already been filed.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
|
|
|
* **Do** ask on `django-users`_ *first* if you're not sure if what you're
|
2005-11-28 23:30:21 +08:00
|
|
|
seeing is a bug.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
* **Do** write complete, reproducible, specific bug reports. Include as
|
|
|
|
much information as you possibly can, complete with code snippets, test
|
2006-12-11 08:44:02 +08:00
|
|
|
cases, etc. This means including a clear, concise description of the
|
|
|
|
problem, and a clear set of instructions for replicating the problem.
|
2006-12-15 05:02:30 +08:00
|
|
|
A minimal example that illustrates the bug in a nice small test case
|
2006-12-11 08:44:02 +08:00
|
|
|
is the best possible bug report.
|
2005-11-28 23:30:21 +08:00
|
|
|
|
|
|
|
* **Don't** use the ticket system to ask support questions. Use the
|
|
|
|
`django-users`_ list, or the `#django`_ IRC channel for that.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
* **Don't** use the ticket system to make large-scale feature requests.
|
2006-01-08 14:24:17 +08:00
|
|
|
We like to discuss any big changes to Django's core on the `django-developers`_
|
2005-11-28 23:30:21 +08:00
|
|
|
list before actually working on them.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
* **Don't** reopen issues that have been marked "wontfix". This mark means
|
|
|
|
that the decision has been made that we can't or won't fix this particular
|
2006-01-08 14:24:17 +08:00
|
|
|
issue. If you're not sure why, please ask on `django-developers`_.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
|
|
|
* **Don't** use the ticket tracker for lengthy discussions, because they're
|
2005-11-28 23:30:21 +08:00
|
|
|
likely to get lost. If a particular ticket is controversial, please move
|
2006-01-08 14:24:17 +08:00
|
|
|
discussion to `django-developers`_.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2007-08-12 18:47:10 +08:00
|
|
|
* **Don't** post to django-developers just to announce that you have filed
|
|
|
|
a bug report. All the tickets are mailed to another list
|
|
|
|
(`django-updates`_), which is tracked by developers and triagers, so we
|
|
|
|
see them as they are filed.
|
|
|
|
|
|
|
|
.. _django-updates: http://groups.google.com/group/django-updates
|
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
Reporting security issues
|
|
|
|
=========================
|
|
|
|
|
|
|
|
Report security issues to security@djangoproject.com. This is a private list
|
|
|
|
only open to long-time, highly trusted Django developers, and its archives are
|
|
|
|
not publicly readable.
|
|
|
|
|
|
|
|
In the event of a confirmed vulnerability in Django itself, we will take the
|
|
|
|
following actions:
|
|
|
|
|
|
|
|
* Acknowledge to the reporter that we've received the report and that a fix
|
|
|
|
is forthcoming. We'll give a rough timeline and ask the reporter to keep
|
|
|
|
the issue confidential until we announce it.
|
|
|
|
|
|
|
|
* Halt all other development as long as is needed to develop a fix, including
|
|
|
|
patches against the current and two previous releases.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
* Determine a go-public date for announcing the vulnerability and the fix.
|
|
|
|
To try to mitigate a possible "arms race" between those applying the patch
|
|
|
|
and those trying to exploit the hole, we will not announce security
|
|
|
|
problems immediately.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
* Pre-notify everyone we know to be running the affected version(s) of
|
|
|
|
Django. We will send these notifications through private e-mail which will
|
|
|
|
include documentation of the vulnerability, links to the relevant patch(es),
|
|
|
|
and a request to keep the vulnerability confidential until the official
|
|
|
|
go-public date.
|
|
|
|
|
|
|
|
* Publicly announce the vulnerability and the fix on the pre-determined
|
|
|
|
go-public date. This will probably mean a new release of Django, but
|
|
|
|
in some cases it may simply be patches against current releases.
|
|
|
|
|
|
|
|
Submitting patches
|
|
|
|
==================
|
|
|
|
|
|
|
|
We're always grateful for patches to Django's code. Indeed, bug reports with
|
|
|
|
associated patches will get fixed *far* more quickly than those without patches.
|
|
|
|
|
2007-09-12 22:38:47 +08:00
|
|
|
"Claiming" tickets
|
|
|
|
------------------
|
|
|
|
|
|
|
|
In an open-source project with hundreds of contributors around the world, it's
|
|
|
|
important to manage communication efficiently so that work doesn't get
|
|
|
|
duplicated and contributors can be as effective as possible. Hence, our policy
|
|
|
|
is for contributors to "claim" tickets in order to let other developers know
|
|
|
|
that a particular bug or feature is being worked on.
|
|
|
|
|
|
|
|
If you have identified a contribution you want to make and you're capable of
|
|
|
|
fixing it (as measured by your coding ability, knowledge of Django internals
|
|
|
|
and time availability), claim it by following these steps:
|
|
|
|
|
|
|
|
* `Create an account`_ to use in our ticket system.
|
|
|
|
* If a ticket for this issue doesn't exist yet, create one in our
|
|
|
|
`ticket tracker`_.
|
|
|
|
* If a ticket for this issue already exists, make sure nobody else has
|
|
|
|
claimed it. To do this, look at the "Assigned to" section of the ticket.
|
|
|
|
If it's assigned to "nobody," then it's available to be claimed.
|
|
|
|
Otherwise, somebody else is working on this ticket, and you either find
|
|
|
|
another bug/feature to work on, or contact the developer working on the
|
|
|
|
ticket to offer your help.
|
|
|
|
* Log into your account, if you haven't already, by clicking "Login" in the
|
|
|
|
upper right of the ticket page.
|
|
|
|
* Claim the ticket by clicking the radio button next to "Accept ticket"
|
|
|
|
near the bottom of the page, then clicking "Submit changes."
|
|
|
|
|
|
|
|
.. _Create an account: http://www.djangoproject.com/accounts/register/
|
|
|
|
|
|
|
|
Ticket claimers' responsibility
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Once you've claimed a ticket, you have a responsibility to work on that ticket
|
|
|
|
in a reasonably timely fashion. If you don't have time to work on it, either
|
|
|
|
unclaim it or don't claim it in the first place!
|
|
|
|
|
|
|
|
Core Django developers go through the list of claimed tickets from time to
|
|
|
|
time, checking whether any progress has been made. If there's no sign of
|
|
|
|
progress on a particular claimed ticket for a week or two after it's been
|
|
|
|
claimed, we will unclaim it for you so that it's no longer monopolized and
|
|
|
|
somebody else can claim it.
|
|
|
|
|
|
|
|
If you've claimed a ticket and it's taking a long time (days or weeks) to code,
|
|
|
|
keep everybody updated by posting comments on the ticket. That way, we'll know
|
|
|
|
not to unclaim it. More communication is better than less communication!
|
|
|
|
|
|
|
|
Which tickets should be claimed?
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Of course, going through the steps of claiming tickets is overkill in some
|
|
|
|
cases. In the case of small changes, such as typos in the documentation or
|
|
|
|
small bugs that will only take a few minutes to fix, you don't need to jump
|
|
|
|
through the hoops of claiming tickets. Just submit your patch and be done with
|
|
|
|
it.
|
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
Patch style
|
|
|
|
-----------
|
|
|
|
|
2005-11-29 08:24:34 +08:00
|
|
|
* Make sure your code matches our `coding style`_.
|
2005-11-28 23:30:21 +08:00
|
|
|
|
2005-11-29 08:24:34 +08:00
|
|
|
* Submit patches in the format returned by the ``svn diff`` command.
|
2005-11-28 23:30:21 +08:00
|
|
|
An exception is for code changes that are described more clearly in plain
|
|
|
|
English than in code. Indentation is the most common example; it's hard to
|
|
|
|
read patches when the only difference in code is that it's indented.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2007-09-10 06:10:47 +08:00
|
|
|
* When creating patches, always run ``svn diff`` from the top-level
|
|
|
|
``trunk`` directory -- i.e., the one that contains ``django``, ``docs``,
|
|
|
|
``tests``, ``AUTHORS``, etc. This makes it easy for other people to apply
|
|
|
|
your patches.
|
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
* Attach patches to a ticket in the `ticket tracker`_, using the "attach file"
|
|
|
|
button. Please *don't* put the patch in the ticket description or comment
|
|
|
|
unless it's a single line patch.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
* Name the patch file with a ``.diff`` extension; this will let the ticket
|
|
|
|
tracker apply correct syntax highlighting, which is quite helpful.
|
|
|
|
|
2007-01-19 11:16:54 +08:00
|
|
|
* Check the "Has patch" box on the ticket details. This will make it
|
|
|
|
obvious that the ticket includes a patch, and it will add the ticket to
|
|
|
|
the `list of tickets with patches`_.
|
2006-12-15 05:02:30 +08:00
|
|
|
|
|
|
|
* The code required to fix a problem or add a feature is an essential part
|
2006-12-11 08:44:02 +08:00
|
|
|
of a patch, but it is not the only part. A good patch should also include
|
|
|
|
a regression test to validate the behavior that has been fixed (and prevent
|
2006-12-15 05:02:30 +08:00
|
|
|
the problem from arising again).
|
|
|
|
|
|
|
|
* If the code associated with a patch adds a new feature, or modifies behavior
|
2006-12-11 08:44:02 +08:00
|
|
|
of an existing feature, the patch should also contain documentation.
|
|
|
|
|
|
|
|
Non-trivial patches
|
|
|
|
-------------------
|
|
|
|
|
2006-12-11 09:24:33 +08:00
|
|
|
A "non-trivial" patch is one that is more than a simple bug fix. It's a patch
|
|
|
|
that introduces Django functionality and makes some sort of design decision.
|
|
|
|
|
|
|
|
If you provide a non-trivial patch, include evidence that alternatives have
|
|
|
|
been discussed on `django-developers`_. If you're not sure whether your patch
|
|
|
|
should be considered non-trivial, just ask.
|
2006-12-11 08:44:02 +08:00
|
|
|
|
|
|
|
Ticket triage
|
|
|
|
=============
|
|
|
|
|
2006-12-15 05:02:30 +08:00
|
|
|
Unfortunately, not all bug reports in the `ticket tracker`_ provide all
|
2006-12-11 09:24:33 +08:00
|
|
|
the `required details`_. A number of tickets have patches, but those patches
|
|
|
|
don't meet all the requirements of a `good patch`_.
|
2006-12-11 08:44:02 +08:00
|
|
|
|
2007-01-18 04:07:49 +08:00
|
|
|
One way to help out is to *triage* bugs that have been reported by other
|
2007-01-18 05:35:22 +08:00
|
|
|
users. A couple of dedicated volunteers work on this regularly, but more help
|
|
|
|
is always appreciated.
|
2007-01-18 04:07:49 +08:00
|
|
|
|
|
|
|
Most of the workflow is based around the concept of a ticket's "triage stage".
|
|
|
|
This stage describes where in its lifetime a given ticket is at any time.
|
|
|
|
Along with a handful of flags, this field easily tells us what and who each
|
|
|
|
ticket is waiting on.
|
|
|
|
|
|
|
|
Since a picture is worth a thousand words, let's start there:
|
|
|
|
|
|
|
|
.. image:: http://media.djangoproject.com/img/doc/djangotickets.png
|
|
|
|
:height: 451
|
|
|
|
:width: 590
|
|
|
|
:alt: Django's ticket workflow
|
|
|
|
|
|
|
|
We've got two roles here:
|
|
|
|
|
|
|
|
* Core developers: people with commit access who make the decisions and
|
2007-01-18 05:35:22 +08:00
|
|
|
write the bulk of the code.
|
2007-01-18 04:07:49 +08:00
|
|
|
|
|
|
|
* Ticket triagers: community members who keep track of tickets, making
|
2007-01-18 05:35:22 +08:00
|
|
|
sure the tickets are always categorized correctly.
|
2007-01-18 04:07:49 +08:00
|
|
|
|
2007-12-02 02:10:10 +08:00
|
|
|
Second, note the five triage stages:
|
2007-01-18 04:07:49 +08:00
|
|
|
|
2007-01-18 05:35:22 +08:00
|
|
|
1. A ticket starts as "Unreviewed", meaning that a triager has yet to
|
|
|
|
examine the ticket and move it along.
|
2007-01-18 04:07:49 +08:00
|
|
|
|
2007-01-18 05:35:22 +08:00
|
|
|
2. "Design decision needed" means "this concept requires a design
|
2007-01-18 04:07:49 +08:00
|
|
|
decision," which should be discussed either in the ticket comments or on
|
|
|
|
django-developers.
|
|
|
|
|
2007-01-18 05:35:22 +08:00
|
|
|
3. Once a ticket is ruled to be approved for fixing, it's moved into the
|
|
|
|
"Accepted" stage. This stage is where all the real work gets done.
|
2007-01-18 04:07:49 +08:00
|
|
|
|
2007-12-04 14:10:51 +08:00
|
|
|
4. In some cases, a ticket might get moved to the "Someday/Maybe" state.
|
|
|
|
This means the ticket is an enhancement request that we might consider
|
|
|
|
adding to the framework if an excellent patch is submitted. These
|
|
|
|
tickets are not a high priority.
|
2007-12-02 02:10:10 +08:00
|
|
|
|
|
|
|
5. If a ticket has an associated patch (see below), a triager will review
|
|
|
|
the patch. If the patch is complete, it'll be marked as "ready for
|
|
|
|
checkin" so that a core developer knows to review and check in the
|
|
|
|
patches.
|
2007-01-18 05:35:22 +08:00
|
|
|
|
2007-01-18 04:07:49 +08:00
|
|
|
The second part of this workflow involves a set of flags the describe what the
|
|
|
|
ticket has or needs in order to be "ready for checkin":
|
|
|
|
|
|
|
|
"Has patch"
|
2007-03-08 16:56:34 +08:00
|
|
|
This means the ticket has an associated patch_. These will be
|
2007-01-18 04:07:49 +08:00
|
|
|
reviewed to see if the patch is "good".
|
2007-01-18 05:35:22 +08:00
|
|
|
|
2007-01-18 04:07:49 +08:00
|
|
|
"Needs documentation"
|
|
|
|
This flag is used for tickets with patches that need associated
|
|
|
|
documentation. Complete documentation of features is a prerequisite
|
|
|
|
before we can check a fix into the codebase.
|
|
|
|
|
|
|
|
"Needs tests"
|
2007-01-18 05:35:22 +08:00
|
|
|
This flags the patch as needing associated unit tests. Again, this is a
|
|
|
|
required part of a valid patch.
|
|
|
|
|
2007-01-18 04:07:49 +08:00
|
|
|
"Patch needs improvement"
|
|
|
|
This flag means that although the ticket *has* a patch, it's not quite
|
|
|
|
ready for checkin. This could mean the patch no longer applies
|
|
|
|
cleanly, or that the code doesn't live up to our standards.
|
2006-12-11 08:44:02 +08:00
|
|
|
|
2007-03-08 16:56:34 +08:00
|
|
|
A ticket can be resolved in a number of ways:
|
|
|
|
|
|
|
|
"fixed"
|
2007-03-09 04:43:09 +08:00
|
|
|
Used by one of the core developers once a patch has been rolled into
|
|
|
|
Django and the issue is fixed.
|
2007-03-08 16:56:34 +08:00
|
|
|
|
|
|
|
"invalid"
|
2007-03-09 04:43:09 +08:00
|
|
|
Used if the ticket is found to be incorrect or a user error.
|
2007-03-08 16:56:34 +08:00
|
|
|
|
|
|
|
"wontfix"
|
|
|
|
Used when a core developer decides that this request is not
|
|
|
|
appropriate for consideration in Django. This is usually chosen after
|
|
|
|
discussion in the ``django-developers`` mailing list, and you should
|
|
|
|
feel free to join in when it's something you care about.
|
|
|
|
|
|
|
|
"duplicate"
|
2007-03-09 04:43:09 +08:00
|
|
|
Used when another ticket covers the same issue. By closing duplicate
|
|
|
|
tickets, we keep all the discussion in one place, which helps everyone.
|
2007-03-08 16:56:34 +08:00
|
|
|
|
|
|
|
"worksforme"
|
2007-03-09 04:43:09 +08:00
|
|
|
Used when the triage team is unable to replicate the original bug.
|
2007-03-08 16:56:34 +08:00
|
|
|
|
2007-03-09 04:43:09 +08:00
|
|
|
If you believe that the ticket was closed in error -- because you're
|
|
|
|
still having the issue, or it's popped up somewhere else, or the triagers have
|
|
|
|
-- made a mistake, please reopen the ticket and tell us why. Please do not
|
|
|
|
reopen tickets that have been marked as "wontfix" by core developers.
|
2007-03-08 16:56:34 +08:00
|
|
|
|
2006-12-11 08:44:02 +08:00
|
|
|
.. _required details: `Reporting bugs`_
|
|
|
|
.. _good patch: `Patch style`_
|
2007-01-18 04:07:49 +08:00
|
|
|
.. _patch: `Submitting patches`_
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-12-21 13:43:58 +08:00
|
|
|
Submitting and maintaining translations
|
|
|
|
=======================================
|
|
|
|
|
|
|
|
Various parts of Django, such as the admin site and validator error messages,
|
|
|
|
are internationalized. This means they display different text depending on a
|
|
|
|
user's language setting.
|
|
|
|
|
|
|
|
These translations are contributed by Django users worldwide. If you find an
|
|
|
|
incorrect translation, or if you'd like to add a language that isn't yet
|
|
|
|
translated, here's what to do:
|
|
|
|
|
|
|
|
* Join the `Django i18n mailing list`_ and introduce yourself.
|
|
|
|
* Create and submit translations using the methods described in the
|
|
|
|
`i18n documentation`_.
|
|
|
|
|
|
|
|
.. _Django i18n mailing list: http://groups.google.com/group/django-i18n/
|
2007-01-25 04:08:47 +08:00
|
|
|
.. _i18n documentation: ../i18n/
|
2005-12-21 13:43:58 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
Coding style
|
|
|
|
============
|
|
|
|
|
|
|
|
Please follow these coding standards when writing code for inclusion in Django:
|
|
|
|
|
|
|
|
* Unless otherwise specified, follow `PEP 8`_.
|
|
|
|
|
2007-10-20 18:41:56 +08:00
|
|
|
You could use a tool like `pep8.py`_ to check for some problems in this
|
|
|
|
area, but remember that PEP 8 is only a guide, so respect the style of
|
|
|
|
the surrounding code as a primary goal.
|
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
* Use four spaces for indentation.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
* Use underscores, not camelCase, for variable, function and method names
|
|
|
|
(i.e. ``poll.get_unique_voters()``, not ``poll.getUniqueVoters``).
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
* Use ``InitialCaps`` for class names (or for factory functions that
|
|
|
|
return classes).
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
* Mark all strings for internationalization; see the `i18n documentation`_
|
|
|
|
for details.
|
|
|
|
|
2007-08-18 13:43:38 +08:00
|
|
|
* In docstrings, use "action words" such as::
|
2007-07-27 01:16:34 +08:00
|
|
|
|
|
|
|
def foo():
|
|
|
|
"""
|
|
|
|
Calculates something and returns the result.
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
Here's an example of what not to do::
|
|
|
|
|
|
|
|
def foo():
|
|
|
|
"""
|
|
|
|
Calculate something and return the result.
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
2007-05-17 05:34:43 +08:00
|
|
|
* Please don't put your name in the code you contribute. Our policy is to
|
|
|
|
keep contributors' names in the ``AUTHORS`` file distributed with Django
|
|
|
|
-- not scattered throughout the codebase itself. Feel free to include a
|
|
|
|
change to the ``AUTHORS`` file in your patch if you make more than a
|
|
|
|
single trivial change.
|
|
|
|
|
|
|
|
Template style
|
|
|
|
--------------
|
|
|
|
|
2005-11-29 08:24:34 +08:00
|
|
|
* In Django template code, put one (and only one) space between the curly
|
|
|
|
brackets and the tag contents.
|
|
|
|
|
|
|
|
Do this::
|
|
|
|
|
|
|
|
{{ foo }}
|
|
|
|
|
|
|
|
Don't do this::
|
|
|
|
|
|
|
|
{{foo}}
|
|
|
|
|
2007-05-17 05:34:43 +08:00
|
|
|
View style
|
|
|
|
----------
|
|
|
|
|
2006-08-31 12:31:54 +08:00
|
|
|
* In Django views, the first parameter in a view function should be called
|
|
|
|
``request``.
|
|
|
|
|
|
|
|
Do this::
|
|
|
|
|
|
|
|
def my_view(request, foo):
|
|
|
|
# ...
|
|
|
|
|
|
|
|
Don't do this::
|
|
|
|
|
|
|
|
def my_view(req, foo):
|
|
|
|
# ...
|
|
|
|
|
2007-05-17 05:34:43 +08:00
|
|
|
Model style
|
|
|
|
-----------
|
|
|
|
|
|
|
|
* Field names should be all lowercase, using underscores instead of
|
|
|
|
camelCase.
|
|
|
|
|
|
|
|
Do this::
|
|
|
|
|
|
|
|
class Person(models.Model):
|
2007-08-05 13:14:46 +08:00
|
|
|
first_name = models.CharField(max_length=20)
|
|
|
|
last_name = models.CharField(max_length=40)
|
2007-05-17 05:34:43 +08:00
|
|
|
|
|
|
|
Don't do this::
|
|
|
|
|
|
|
|
class Person(models.Model):
|
2007-08-05 13:14:46 +08:00
|
|
|
FirstName = models.CharField(max_length=20)
|
|
|
|
Last_Name = models.CharField(max_length=40)
|
2007-05-17 05:34:43 +08:00
|
|
|
|
|
|
|
* The ``class Meta`` should appear *after* the fields are defined, with
|
|
|
|
a single blank line separating the fields and the class definition.
|
|
|
|
|
|
|
|
Do this::
|
|
|
|
|
|
|
|
class Person(models.Model):
|
2007-08-05 13:14:46 +08:00
|
|
|
first_name = models.CharField(max_length=20)
|
|
|
|
last_name = models.CharField(max_length=40)
|
2007-05-17 05:34:43 +08:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
verbose_name_plural = 'people'
|
|
|
|
|
|
|
|
Don't do this::
|
|
|
|
|
|
|
|
class Person(models.Model):
|
2007-08-05 13:14:46 +08:00
|
|
|
first_name = models.CharField(max_length=20)
|
|
|
|
last_name = models.CharField(max_length=40)
|
2007-05-17 05:34:43 +08:00
|
|
|
class Meta:
|
|
|
|
verbose_name_plural = 'people'
|
|
|
|
|
|
|
|
Don't do this, either::
|
|
|
|
|
|
|
|
class Person(models.Model):
|
|
|
|
class Meta:
|
|
|
|
verbose_name_plural = 'people'
|
|
|
|
|
2007-08-05 13:14:46 +08:00
|
|
|
first_name = models.CharField(max_length=20)
|
|
|
|
last_name = models.CharField(max_length=40)
|
2007-05-17 05:34:43 +08:00
|
|
|
|
|
|
|
* The order of model inner classes and standard methods should be as
|
|
|
|
follows (noting that these are not all required):
|
|
|
|
|
|
|
|
* All database fields
|
|
|
|
* ``class Meta``
|
|
|
|
* ``class Admin``
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
* ``def __unicode__()``
|
2007-05-17 05:34:43 +08:00
|
|
|
* ``def __str__()``
|
|
|
|
* ``def save()``
|
|
|
|
* ``def get_absolute_url()``
|
|
|
|
* Any custom methods
|
|
|
|
|
|
|
|
* If ``choices`` is defined for a given model field, define the choices as
|
|
|
|
a tuple of tuples, with an all-uppercase name, either near the top of the
|
|
|
|
model module or just above the model class. Example::
|
|
|
|
|
|
|
|
GENDER_CHOICES = (
|
|
|
|
('M', 'Male'),
|
|
|
|
('F', 'Female'),
|
|
|
|
)
|
2006-07-27 08:46:32 +08:00
|
|
|
|
2007-07-01 05:20:44 +08:00
|
|
|
Documentation style
|
|
|
|
===================
|
|
|
|
|
|
|
|
We place a high importance on consistency and readability of documentation.
|
|
|
|
(After all, Django was created in a journalism environment!)
|
|
|
|
|
2007-09-10 11:42:33 +08:00
|
|
|
How to document new features
|
|
|
|
----------------------------
|
|
|
|
|
|
|
|
We treat our documentation like we treat our code: we aim to improve it as
|
|
|
|
often as possible. This section explains how writers can craft their
|
|
|
|
documentation changes in the most useful and least error-prone ways.
|
|
|
|
|
|
|
|
Documentation changes come in two forms:
|
|
|
|
|
|
|
|
* General improvements -- Typo corrections, error fixes and better
|
|
|
|
explanations through clearer writing and more examples.
|
|
|
|
|
|
|
|
* New features -- Documentation of features that have been added to the
|
|
|
|
framework since the last release.
|
|
|
|
|
|
|
|
Our philosophy is that "general improvements" are something that *all* current
|
|
|
|
Django users should benefit from, including users of trunk *and* users of the
|
|
|
|
latest release. Hence, the documentation section on djangoproject.com points
|
|
|
|
people by default to the newest versions of the docs, because they have the
|
|
|
|
latest and greatest content. (In fact, the Web site pulls directly from the
|
|
|
|
Subversion repository, converting to HTML on the fly.)
|
|
|
|
|
|
|
|
But this decision to feature bleeding-edge documentation has one large caveat:
|
|
|
|
any documentation of *new* features will be seen by Django users who don't
|
|
|
|
necessarily have access to those features yet, because they're only using the
|
|
|
|
latest release. Thus, our policy is:
|
|
|
|
|
2007-09-10 11:46:06 +08:00
|
|
|
**All documentation of new features should be written in a way that clearly
|
2007-09-10 11:42:33 +08:00
|
|
|
designates the features are only available in the Django development
|
2007-09-10 11:46:43 +08:00
|
|
|
version. Assume documentation readers are using the latest release, not the
|
2007-09-10 11:46:06 +08:00
|
|
|
development version.**
|
2007-09-10 11:42:33 +08:00
|
|
|
|
|
|
|
Our traditional way of marking new features is by prefacing the features'
|
|
|
|
documentation with: "New in Django development version." Changes aren't
|
|
|
|
*required* to include this exact text, but all documentation of new features
|
|
|
|
should include the phrase "development version," so we can find and remove
|
|
|
|
those phrases for the next release.
|
|
|
|
|
2007-07-01 05:20:44 +08:00
|
|
|
Guidelines for ReST files
|
|
|
|
-------------------------
|
|
|
|
|
|
|
|
These guidelines regulate the format of our ReST documentation:
|
|
|
|
|
2007-07-04 03:26:34 +08:00
|
|
|
* In section titles, capitalize only initial words and proper nouns.
|
2007-07-01 05:20:44 +08:00
|
|
|
|
2007-07-04 03:26:34 +08:00
|
|
|
* Wrap the documentation at 80 characters wide, unless a code example
|
|
|
|
is significantly less readable when split over two lines, or for another
|
|
|
|
good reason.
|
2007-07-01 05:20:44 +08:00
|
|
|
|
|
|
|
Commonly used terms
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
Here are some style guidelines on commonly used terms throughout the
|
|
|
|
documentation:
|
|
|
|
|
2007-07-04 03:26:34 +08:00
|
|
|
* **Django** -- when referring to the framework, capitalize Django. It is
|
|
|
|
lowercase only in Python code and in the djangoproject.com logo.
|
2007-07-01 05:20:44 +08:00
|
|
|
|
2007-07-04 03:26:34 +08:00
|
|
|
* **e-mail** -- it has a hyphen.
|
2007-07-01 05:20:44 +08:00
|
|
|
|
2007-07-04 03:26:34 +08:00
|
|
|
* **MySQL**
|
2007-07-01 05:24:56 +08:00
|
|
|
|
2007-07-04 03:26:34 +08:00
|
|
|
* **PostgreSQL**
|
2007-07-01 05:24:56 +08:00
|
|
|
|
2007-07-04 03:26:34 +08:00
|
|
|
* **Python** -- when referring to the language, capitalize Python.
|
2007-07-01 05:20:44 +08:00
|
|
|
|
2007-07-04 03:26:34 +08:00
|
|
|
* **realize**, **customize**, **initialize**, etc. -- use the American
|
|
|
|
"ize" suffix, not "ise."
|
2007-07-01 05:20:44 +08:00
|
|
|
|
2007-07-04 03:26:34 +08:00
|
|
|
* **SQLite**
|
2007-07-01 05:24:56 +08:00
|
|
|
|
2007-07-04 03:26:34 +08:00
|
|
|
* **subclass** -- it's a single word without a hyphen, both as a verb
|
|
|
|
("subclass that model") and as a noun ("create a subclass").
|
2007-07-01 05:28:13 +08:00
|
|
|
|
2007-07-04 03:26:34 +08:00
|
|
|
* **Web**, **World Wide Web**, **the Web** -- note Web is always
|
|
|
|
capitalized when referring to the World Wide Web.
|
2007-07-01 05:20:44 +08:00
|
|
|
|
2007-07-01 05:29:42 +08:00
|
|
|
* **Web site** -- use two words, with Web capitalized.
|
2007-07-01 05:20:44 +08:00
|
|
|
|
|
|
|
Django-specific terminology
|
|
|
|
---------------------------
|
|
|
|
|
2007-07-04 03:26:34 +08:00
|
|
|
* **model** -- it's not capitalized.
|
2007-07-01 05:20:44 +08:00
|
|
|
|
2007-07-04 03:26:34 +08:00
|
|
|
* **template** -- it's not capitalized.
|
2007-07-01 05:20:44 +08:00
|
|
|
|
2007-07-04 03:26:34 +08:00
|
|
|
* **URLconf** -- use three capitalized letters, with no space before
|
|
|
|
"conf."
|
2007-07-01 05:20:44 +08:00
|
|
|
|
2007-07-04 03:26:34 +08:00
|
|
|
* **view** -- it's not capitalized.
|
2007-07-01 05:20:44 +08:00
|
|
|
|
2006-01-08 14:24:17 +08:00
|
|
|
Committing code
|
|
|
|
===============
|
|
|
|
|
|
|
|
Please follow these guidelines when committing code to Django's Subversion
|
|
|
|
repository:
|
|
|
|
|
2006-01-08 14:30:56 +08:00
|
|
|
* For any medium-to-big changes, where "medium-to-big" is according to your
|
|
|
|
judgment, please bring things up on the `django-developers`_ mailing list
|
|
|
|
before making the change.
|
|
|
|
|
2006-05-04 22:17:56 +08:00
|
|
|
If you bring something up on `django-developers`_ and nobody responds,
|
|
|
|
please don't take that to mean your idea is great and should be
|
|
|
|
implemented immediately because nobody contested it. Django's lead
|
|
|
|
developers don't have a lot of time to read mailing-list discussions
|
|
|
|
immediately, so you may have to wait a couple of days before getting a
|
|
|
|
response.
|
|
|
|
|
2006-01-08 14:24:17 +08:00
|
|
|
* Write detailed commit messages in the past tense, not present tense.
|
|
|
|
|
2006-01-08 14:32:52 +08:00
|
|
|
* Good: "Fixed Unicode bug in RSS API."
|
|
|
|
* Bad: "Fixes Unicode bug in RSS API."
|
|
|
|
* Bad: "Fixing Unicode bug in RSS API."
|
2006-01-08 14:24:17 +08:00
|
|
|
|
|
|
|
* For commits to a branch, prefix the commit message with the branch name.
|
|
|
|
For example: "magic-removal: Added support for mind reading."
|
|
|
|
|
|
|
|
* Limit commits to the most granular change that makes sense. This means,
|
|
|
|
use frequent small commits rather than infrequent large commits. For
|
|
|
|
example, if implementing feature X requires a small change to library Y,
|
|
|
|
first commit the change to library Y, then commit feature X in a separate
|
|
|
|
commit. This goes a *long way* in helping all core Django developers
|
|
|
|
follow your changes.
|
|
|
|
|
2006-01-08 14:30:56 +08:00
|
|
|
* If your commit closes a ticket in the Django `ticket tracker`_, begin
|
|
|
|
your commit message with the text "Fixed #abc", where "abc" is the number
|
|
|
|
of the ticket your commit fixes. Example: "Fixed #123 -- Added support
|
|
|
|
for foo". We've rigged Subversion and Trac so that any commit message
|
|
|
|
in that format will automatically close the referenced ticket and post a
|
|
|
|
comment to it with the full commit message.
|
|
|
|
|
|
|
|
If your commit closes a ticket and is in a branch, use the branch name
|
|
|
|
first, then the "Fixed #abc." For example:
|
|
|
|
"magic-removal: Fixed #123 -- Added whizbang feature."
|
|
|
|
|
2006-07-24 10:41:44 +08:00
|
|
|
For the curious: We're using a `Trac post-commit hook`_ for this.
|
|
|
|
|
|
|
|
.. _Trac post-commit hook: http://trac.edgewall.org/browser/trunk/contrib/trac-post-commit-hook
|
|
|
|
|
2006-01-08 14:34:06 +08:00
|
|
|
* If your commit references a ticket in the Django `ticket tracker`_ but
|
|
|
|
does *not* close the ticket, include the phrase "Refs #abc", where "abc"
|
|
|
|
is the number of the ticket your commit references. We've rigged
|
|
|
|
Subversion and Trac so that any commit message in that format will
|
|
|
|
automatically post a comment to the appropriate ticket.
|
2006-01-08 14:24:17 +08:00
|
|
|
|
2006-01-11 13:54:27 +08:00
|
|
|
Unit tests
|
|
|
|
==========
|
|
|
|
|
|
|
|
Django comes with a test suite of its own, in the ``tests`` directory of the
|
|
|
|
Django tarball. It's our policy to make sure all tests pass at all times.
|
|
|
|
|
|
|
|
The tests cover:
|
|
|
|
|
2006-09-21 19:19:34 +08:00
|
|
|
* Models and the database API (``tests/modeltests/``).
|
|
|
|
* The cache system (``tests/regressiontests/cache.py``).
|
|
|
|
* The ``django.utils.dateformat`` module (``tests/regressiontests/dateformat/``).
|
|
|
|
* Database typecasts (``tests/regressiontests/db_typecasts/``).
|
|
|
|
* The template system (``tests/regressiontests/templates/`` and
|
|
|
|
``tests/regressiontests/defaultfilters/``).
|
|
|
|
* ``QueryDict`` objects (``tests/regressiontests/httpwrappers/``).
|
|
|
|
* Markup template tags (``tests/regressiontests/markup/``).
|
2006-01-11 13:54:27 +08:00
|
|
|
|
|
|
|
We appreciate any and all contributions to the test suite!
|
|
|
|
|
2006-09-21 19:19:34 +08:00
|
|
|
The Django tests all use the testing infrastructure that ships with Django for
|
2006-09-26 01:22:59 +08:00
|
|
|
testing applications. See `Testing Django applications`_ for an explanation of
|
2006-09-21 19:19:34 +08:00
|
|
|
how to write new tests.
|
|
|
|
|
2007-01-25 04:08:47 +08:00
|
|
|
.. _Testing Django applications: ../testing/
|
2006-09-21 19:19:34 +08:00
|
|
|
|
2006-01-11 13:54:27 +08:00
|
|
|
Running the unit tests
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
To run the tests, ``cd`` to the ``tests/`` directory and type::
|
|
|
|
|
|
|
|
./runtests.py --settings=path.to.django.settings
|
|
|
|
|
|
|
|
Yes, the unit tests need a settings module, but only for database connection
|
2007-12-02 23:17:21 +08:00
|
|
|
info, with the ``DATABASE_ENGINE`` setting. You'll also need a ``ROOT_URLCONF``
|
|
|
|
setting (its value is ignored; it just needs to be present).
|
2006-09-21 19:19:34 +08:00
|
|
|
|
2007-09-16 01:44:14 +08:00
|
|
|
If you're using the ``sqlite3`` database backend, no further settings are
|
|
|
|
needed. A temporary database will be created in memory when running the tests.
|
|
|
|
|
|
|
|
If you're using another backend:
|
|
|
|
|
|
|
|
* Your ``DATABASE_USER`` setting needs to specify an existing user account
|
|
|
|
for the database engine.
|
|
|
|
|
|
|
|
* The ``DATABASE_NAME`` setting must be the name of an existing database to
|
|
|
|
which the given user has permission to connect. The unit tests will not
|
|
|
|
touch this database; the test runner creates a new database whose name is
|
|
|
|
``DATABASE_NAME`` prefixed with ``test_``, and this test database is
|
|
|
|
deleted when the tests are finished. This means your user account needs
|
|
|
|
permission to execute ``CREATE DATABASE``.
|
|
|
|
|
|
|
|
To run a subset of the unit tests, append the names of the test modules to the
|
|
|
|
``runtests.py`` command line. See the list of directories in
|
|
|
|
``tests/modeltests`` and ``tests/regressiontests`` for module names.
|
|
|
|
|
|
|
|
As an example, if Django is not in your ``PYTHONPATH``, you placed
|
|
|
|
``settings.py`` in the ``tests/`` directory, and you'd like to only run tests
|
|
|
|
for generic relations and internationalization, type::
|
|
|
|
|
|
|
|
PYTHONPATH=..
|
|
|
|
./runtests.py --settings=settings generic_relations i18n
|
2006-01-11 13:54:27 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
Requesting features
|
|
|
|
===================
|
|
|
|
|
2005-11-29 08:24:34 +08:00
|
|
|
We're always trying to make Django better, and your feature requests are a key
|
|
|
|
part of that. Here are some tips on how to most effectively make a request:
|
2005-11-28 23:30:21 +08:00
|
|
|
|
2006-01-08 14:24:17 +08:00
|
|
|
* Request the feature on `django-developers`_, not in the ticket tracker;
|
|
|
|
it'll get read more closely if it's on the mailing list.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
|
|
|
* Describe clearly and concisely what the missing feature is and how you'd
|
2005-11-28 23:30:21 +08:00
|
|
|
like to see it implemented. Include example code (non-functional is OK)
|
|
|
|
if possible.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
* Explain *why* you'd like the feature. In some cases this is obvious, but
|
|
|
|
since Django is designed to help real developers get real work done,
|
2005-11-29 08:24:34 +08:00
|
|
|
you'll need to explain it, if it isn't obvious why the feature would be
|
2005-11-28 23:30:21 +08:00
|
|
|
useful.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
As with most open-source projects, code talks. If you are willing to write the
|
|
|
|
code for the feature yourself or if (even better) you've already written it,
|
|
|
|
it's much more likely to be accepted. If it's a large feature that might need
|
|
|
|
multiple developers we're always happy to give you an experimental branch in
|
|
|
|
our repository; see below.
|
|
|
|
|
|
|
|
Branch policy
|
|
|
|
=============
|
|
|
|
|
|
|
|
In general, most development is confined to the trunk, and the trunk
|
|
|
|
is kept stable. People should be able to run production sites against the
|
|
|
|
trunk at any time.
|
|
|
|
|
|
|
|
Thus, large architectural changes -- that is, changes too large to be
|
|
|
|
encapsulated in a single patch, or changes that need multiple eyes on them --
|
|
|
|
will have dedicated branches. See, for example, the `i18n branch`_. If you
|
2006-01-08 14:24:17 +08:00
|
|
|
have a change of this nature that you'd like to work on, ask on
|
|
|
|
`django-developers`_ for a branch to be created for you. We'll create a branch
|
|
|
|
for pretty much any kind of experimenting you'd like to do.
|
2005-11-28 23:30:21 +08:00
|
|
|
|
|
|
|
We will only branch entire copies of the Django tree, even if work is only
|
|
|
|
happening on part of that tree. This makes it painless to switch to a branch.
|
|
|
|
|
|
|
|
Developers working on a branch should periodically merge changes from the trunk
|
|
|
|
into the branch. Please merge at least once a week. Every time you merge from
|
|
|
|
the trunk, note the merge and revision numbers in the commit message.
|
|
|
|
|
2005-11-29 08:24:34 +08:00
|
|
|
Once the branch is stable and ready to be merged into the trunk, alert
|
2006-01-08 14:24:17 +08:00
|
|
|
`django-developers`_.
|
2005-11-28 23:30:21 +08:00
|
|
|
|
|
|
|
After a branch has been merged, it should be considered "dead"; write access to
|
|
|
|
it will be disabled, and old branches will be periodically "trimmed." To keep
|
|
|
|
our SVN wrangling to a minimum, we won't be merging from a given branch into the
|
|
|
|
trunk more than once.
|
|
|
|
|
|
|
|
Using branches
|
|
|
|
--------------
|
|
|
|
|
2006-12-15 05:02:30 +08:00
|
|
|
To use a branch, you'll need to do two things:
|
|
|
|
|
|
|
|
* Get the branch's code through Subversion.
|
|
|
|
|
|
|
|
* Point your Python ``site-packages`` directory at the branch's version of
|
|
|
|
the ``django`` package rather than the version you already have
|
|
|
|
installed.
|
|
|
|
|
|
|
|
Getting the code from Subversion
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
To get the latest version of a branch's code, check it out using Subversion::
|
2005-12-21 13:47:17 +08:00
|
|
|
|
|
|
|
svn co http://code.djangoproject.com/svn/django/branches/<branch>/
|
|
|
|
|
2006-12-15 05:02:30 +08:00
|
|
|
...where ``<branch>`` is the branch's name. See the `list of branch names`_.
|
2005-11-28 23:30:21 +08:00
|
|
|
|
2006-12-15 05:02:30 +08:00
|
|
|
Alternatively, you can automatically convert an existing directory of the
|
|
|
|
Django source code as long as you've checked it out via Subversion. To do the
|
|
|
|
conversion, execute this command from within your ``django`` directory::
|
2005-11-28 23:30:21 +08:00
|
|
|
|
2006-12-15 05:02:30 +08:00
|
|
|
svn switch http://code.djangoproject.com/svn/django/branches/<branch>/
|
2005-11-28 23:30:21 +08:00
|
|
|
|
2005-12-21 13:47:17 +08:00
|
|
|
The advantage of using ``svn switch`` instead of ``svn co`` is that the
|
|
|
|
``switch`` command retains any changes you might have made to your local copy
|
2006-12-15 05:02:30 +08:00
|
|
|
of the code. It attempts to merge those changes into the "switched" code. The
|
|
|
|
disadvantage is that it may cause conflicts with your local changes if the
|
|
|
|
"switched" code has altered the same lines of code.
|
|
|
|
|
|
|
|
(Note that if you use ``svn switch``, you don't need to point Python at the new
|
|
|
|
version, as explained in the next section.)
|
|
|
|
|
|
|
|
.. _list of branch names: http://code.djangoproject.com/browser/django/branches
|
|
|
|
|
|
|
|
Pointing Python at the new Django version
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Once you've retrieved the branch's code, you'll need to change your Python
|
|
|
|
``site-packages`` directory so that it points to the branch version of the
|
|
|
|
``django`` directory. (The ``site-packages`` directory is somewhere such as
|
|
|
|
``/usr/lib/python2.4/site-packages`` or
|
|
|
|
``/usr/local/lib/python2.4/site-packages`` or ``C:\Python\site-packages``.)
|
|
|
|
|
|
|
|
The simplest way to do this is by renaming the old ``django`` directory to
|
|
|
|
``django.OLD`` and moving the trunk version of the code into the directory
|
|
|
|
and calling it ``django``.
|
|
|
|
|
|
|
|
Alternatively, you can use a symlink called ``django`` that points to the
|
|
|
|
location of the branch's ``django`` package. If you want to switch back, just
|
|
|
|
change the symlink to point to the old code.
|
|
|
|
|
2007-02-10 16:55:18 +08:00
|
|
|
A third option is to use a `path file`_ (``<something>.pth``) which should
|
2007-02-11 12:38:44 +08:00
|
|
|
work on all systems (including Windows, which doesn't have symlinks
|
2007-02-10 16:55:18 +08:00
|
|
|
available). First, make sure there are no files, directories or symlinks named
|
|
|
|
``django`` in your ``site-packages`` directory. Then create a text file named
|
|
|
|
``django.pth`` and save it to your ``site-packages`` directory. That file
|
|
|
|
should contain a path to your copy of Django on a single line and optional
|
|
|
|
comments. Here is an example that points to multiple branches. Just uncomment
|
|
|
|
the line for the branch you want to use ('Trunk' in this example) and make
|
|
|
|
sure all other lines are commented::
|
|
|
|
|
|
|
|
# Trunk is a svn checkout of:
|
|
|
|
# http://code.djangoproject.com/svn/django/trunk/
|
|
|
|
#
|
|
|
|
/path/to/trunk
|
2007-03-16 23:13:31 +08:00
|
|
|
|
2007-02-10 16:55:18 +08:00
|
|
|
# <branch> is a svn checkout of:
|
|
|
|
# http://code.djangoproject.com/svn/django/branches/<branch>/
|
|
|
|
#
|
|
|
|
#/path/to/<branch>
|
2007-03-16 23:13:31 +08:00
|
|
|
|
2007-02-10 16:55:18 +08:00
|
|
|
# On windows a path may look like this:
|
|
|
|
# C:/path/to/<branch>
|
|
|
|
|
2006-12-15 05:02:30 +08:00
|
|
|
If you're using Django 0.95 or earlier and installed it using
|
|
|
|
``python setup.py install``, you'll have a directory called something like
|
|
|
|
``Django-0.95-py2.4.egg`` instead of ``django``. In this case, edit the file
|
|
|
|
``setuptools.pth`` and remove the line that references the Django ``.egg``
|
|
|
|
file. Then copy the branch's version of the ``django`` directory into
|
|
|
|
``site-packages``.
|
2005-12-21 13:47:17 +08:00
|
|
|
|
2007-02-10 16:55:18 +08:00
|
|
|
.. _path file: http://docs.python.org/lib/module-site.html
|
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
Official releases
|
|
|
|
=================
|
|
|
|
|
|
|
|
Django's release numbering works as follows:
|
|
|
|
|
2005-11-29 08:24:34 +08:00
|
|
|
* Versions are numbered in the form ``A.B`` or ``A.B.C``.
|
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
* ``A`` is the major version number, which is only incremented for major
|
|
|
|
changes to Django, and these changes are not necessarily
|
|
|
|
backwards-compatible. That is, code you wrote for Django 6.0 may break
|
|
|
|
when we release Django 7.0.
|
|
|
|
|
|
|
|
* ``B`` is the minor version number, which is incremented for large yet
|
|
|
|
backwards compatible changes. Code written for Django 6.4 will continue
|
|
|
|
to work under Django 6.5.
|
|
|
|
|
|
|
|
A minor release may deprecate certain features in previous releases. If a
|
|
|
|
feature in version ``A.B`` is deprecated, it will continue to work in
|
|
|
|
version ``A.B+1``. In version ``A.B+2``, use of the feature will raise a
|
|
|
|
``PendingDeprecationWarning`` but will continue to work. Version
|
2005-11-29 23:30:06 +08:00
|
|
|
``A.B+3`` will remove the feature entirely. Major point releases will
|
|
|
|
always remove deprecated features immediately.
|
2005-11-28 23:30:21 +08:00
|
|
|
|
|
|
|
* ``C`` is the micro version number which, is incremented for bug and
|
2005-11-29 08:24:34 +08:00
|
|
|
security fixes. A new micro-release will always be 100%
|
2005-11-28 23:30:21 +08:00
|
|
|
backwards-compatible with the previous micro-release.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
|
|
|
* In some cases, we'll make release candidate releases. These are of the
|
2005-11-28 23:30:21 +08:00
|
|
|
form ``A.BrcN``, which means the ``Nth`` candidate release of version
|
|
|
|
``A.B``.
|
|
|
|
|
2005-11-29 08:24:34 +08:00
|
|
|
An exception to this version numbering scheme is the pre-1.0 Django code.
|
|
|
|
There's no guarantee of backwards-compatibility until the 1.0 release.
|
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
In Subversion, each Django release will be tagged under `tags/releases`_. If
|
|
|
|
it's necessary to release a bug fix release or a security release that doesn't
|
2005-11-29 08:24:34 +08:00
|
|
|
come from the trunk, we'll copy that tag to ``branches/releases`` to make the
|
|
|
|
bug fix release.
|
2005-11-28 23:30:21 +08:00
|
|
|
|
|
|
|
Deciding on features
|
|
|
|
====================
|
|
|
|
|
|
|
|
Once a feature's been requested and discussed, eventually we'll have a decision
|
|
|
|
about whether to include the feature or drop it.
|
|
|
|
|
|
|
|
Whenever possible, we strive for a rough consensus. To that end, we'll often
|
2006-01-08 14:24:17 +08:00
|
|
|
have informal votes on `django-developers`_ about a feature. In these votes we
|
|
|
|
follow the voting style invented by Apache and used on Python itself, where
|
|
|
|
votes are given as +1, +0, -0, or -1. Roughly translated, these votes mean:
|
2005-11-28 23:30:21 +08:00
|
|
|
|
|
|
|
* +1: "I love the idea and I'm strongly committed to it."
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
* +0: "Sounds OK to me."
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
* -0: "I'm not thrilled, but I won't stand in the way."
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
* -1: "I strongly disagree and would be very unhappy to see the idea turn
|
|
|
|
into reality."
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2006-01-08 14:24:17 +08:00
|
|
|
Although these votes on django-developers are informal, they'll be taken very
|
2005-11-28 23:30:21 +08:00
|
|
|
seriously. After a suitable voting period, if an obvious consensus arises
|
|
|
|
we'll follow the votes.
|
|
|
|
|
2005-11-29 08:24:34 +08:00
|
|
|
However, consensus is not always possible. Tough decisions will be discussed by
|
2005-11-28 23:30:21 +08:00
|
|
|
all full committers and finally decided by the Benevolent Dictators for Life,
|
|
|
|
Adrian and Jacob.
|
|
|
|
|
|
|
|
Commit access
|
|
|
|
=============
|
|
|
|
|
|
|
|
Django has two types of committers:
|
|
|
|
|
|
|
|
Full committers
|
|
|
|
These are people who have a long history of contributions to Django's
|
|
|
|
codebase, a solid track record of being polite and helpful on the mailing
|
|
|
|
lists, and a proven desire to dedicate serious time to Django's development.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
The bar is very high for full commit access. It will only be granted by
|
|
|
|
unanimous approval of all existing full committers, and the decision will err
|
|
|
|
on the side of rejection.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
Partial committers
|
|
|
|
These are people who are "domain experts." They have direct check-in access
|
|
|
|
to the subsystems that fall under their jurisdiction, and they're given a
|
|
|
|
formal vote in questions that involve their subsystems. This type of access
|
|
|
|
is likely to be given to someone who contributes a large subframework to
|
|
|
|
Django and wants to continue to maintain it.
|
|
|
|
|
|
|
|
Like full committers, partial commit access is by unanimous approval of all
|
|
|
|
full committers (and any other partial committers in the same area).
|
|
|
|
However, the bar is set lower; proven expertise in the area in question is
|
|
|
|
likely to be sufficient.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
To request commit access, please contact an existing committer privately. Public
|
|
|
|
requests for commit access are potential flame-war starters, and will be ignored.
|
2005-11-29 08:24:34 +08:00
|
|
|
|
2005-11-28 23:30:21 +08:00
|
|
|
.. _community page: http://www.djangoproject.com/community/
|
|
|
|
.. _ticket tracker: http://code.djangoproject.com/newticket
|
2006-01-08 14:24:17 +08:00
|
|
|
.. _django-developers: http://groups.google.com/group/django-developers
|
2005-11-28 23:30:21 +08:00
|
|
|
.. _FAQ: http://www.djangoproject.com/documentation/faq/
|
|
|
|
.. _search the tracker: http://code.djangoproject.com/search
|
|
|
|
.. _django-users: http://groups.google.com/group/django-users
|
|
|
|
.. _`#django`: irc://irc.freenode.net/django
|
2007-01-19 11:16:54 +08:00
|
|
|
.. _list of tickets with patches: http://code.djangoproject.com/query?status=new&status=assigned&status=reopened&has_patch=1&order=priority
|
2005-11-28 23:30:21 +08:00
|
|
|
.. _PEP 8: http://www.python.org/peps/pep-0008.html
|
2007-10-20 18:41:56 +08:00
|
|
|
.. _pep8.py: http://svn.browsershots.org/trunk/devtools/pep8/pep8.py
|
2005-11-28 23:30:21 +08:00
|
|
|
.. _i18n branch: http://code.djangoproject.com/browser/django/branches/i18n
|
2006-01-11 13:54:27 +08:00
|
|
|
.. _`tags/releases`: http://code.djangoproject.com/browser/django/tags/releases
|