Changes between Version 59 and Version 60 of Version1.2Features


Ignore:
Timestamp:
Aug 20, 2009, 4:30:06 AM (15 years ago)
Author:
kramer
Comment:

Added settings.py and DVCS proposals

Legend:

Unmodified
Added
Removed
Modified
  • Version1.2Features

    v59 v60  
    1717  * Add a method to the orm to create Model instances from raw sql queries (useful when the orm is limiting you)
    1818  * Add a generic "official" way to create a REST API; so far there are quite a bunch of pluggables, with varying levels of "completeness", documentation and efficiency, and they're quite hard to choose from.
     19  * Make easier to mantain / deploy default settings.py by either:
     20    * include localsettings at the end, with the recommended approach of putting DATABASE_* settings in localsettings.py
     21    * or: if DEBUG: { some database settings } else: { other database settings }
     22  * integrate some DVCS in django-admin.py, perhaps Mercurial or Git. This would make it easier to adopt and collaborate on Django projects. (This is stolen from Rails)
    1923  * Complete comment moderation by documenting existing approval process (#9819) and/or by adding admin actions (#11625) to the `CommentsAdmin`.
    2024  * Extra template tags and filters (http://groups.google.com/group/django-developers/browse_thread/thread/2045a50970d6a883)
Back to Top