Changes between Version 135 and Version 136 of WikiStart


Ignore:
Timestamp:
May 28, 2006, 6:02:03 PM (18 years ago)
Author:
James Bennett
Comment:

Add "head up" section detailing things that are broken or under development

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v135 v136  
    1313 * [http://www.djangoproject.com/documentation/contributing/ How to contribute to Django]: The lowdown on how our community works.
    1414 * [report:1 Tickets]: View active tickets, make bug reports and contribute feature requests.
    15  * [wiki:LittleEasyImprovements Little, easy improvements]: Get your feet wet by taking on one of these small tasks.
     15 * [wiki:LittleEasyImprovements Little, easy improvements]: Get your feet wet by taking on one of these small tasks.
     16
     17== Heads up ==
     18
     19Django's development version is always being worked on, which means that from time to time there are things that won't work for a while because they're being updated, and new features will be introduced which take a little time to stabilize. Some of them are listed here:
     20
     21 * [wiki:ModelInheritance]: Write-up discussing how inheritance/subclassing of models should work. Currently this is not implemented in the development version of Django, so if you need model subclassing stick to one of the older stable releases or use workarounds like one-to-one relationships.
     22 * [wiki:SchemaEvolution]: This is a new feature, under development as a project for the 2006 Summer of Code.
     23 * [wiki:GenericAuthorization]: Currently Django's permission system only works at the level of an entire model -- e.g., user "Bob" has access to add flatpages and edit users. This Summer of Code project will extend the permission system to be much more fine-grained, so permissions will be able to be assigned per object instead of per model (so, for example, user "Bob" could be given permission to edit only flatpage number 24 and user number 12, instead of all flatpages and all users).
     24 * Multiple authentication backends: the [http://code.djangoproject.com/browser/django/branches/multi-auth multi-auth branch] of Django, currently under development, is abstracting the authentication backend to make it easier to use other authentication systems like LDAP. Check out the [http://code.djangoproject.com/browser/django/branches/multi-auth/docs/authentication.txt#L677 documentation] to see how this will work.
    1625
    1726== Descriptions of major changes to the codebase ==
Back to Top