Changes between Version 170 and Version 171 of WikiStart


Ignore:
Timestamp:
Jul 4, 2006, 10:37:36 PM (18 years ago)
Author:
Adrian Holovaty
Comment:

Removed multi-auth stuff, because that's been merged.

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v170 v171  
    2222 * [wiki:SchemaEvolution]: This is a new feature, under development as a project for the 2006 Summer of Code.
    2323 * [wiki:RowLevelPermissions]: 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  * [wiki:GenericAuthorization]: A more flexible authorization system for Django. The new system should allow for ACL's, role-based systems, and Django's current model-level permissions.
    25  * 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#L684 documentation] to see how this will work.
     24 * [wiki:GenericAuthorization]: A more flexible authorization system for Django. The new system should allow for ACL's, role-based systems, and Django's current model-level permissions.
    2625
    2726== Descriptions of major changes to the codebase ==
     
    6968 * [wiki:WindowsInstall] - install django on Windows in 5 minutes (using sqlite and the internal webserver)
    7069
    71 === Development Environment ===
     70=== Development environment ===
    7271
    7372 * [wiki:SimpleBashScriptToSetupDevelopmentEnvironment Simple Bash Script To Setup Development Environment]: An example of how to set up your development environment.
Back to Top