= Version 1.0 Features = This page contains the list of features to be included in Django 1.0, and their status. See VersionOneRoadmap for more details on the process. == Unfinished Features == === Must-have features === || '''Feature''' || '''Lieutenant''' || '''Committer'''' || '''Status''' || '''Tickets''' || || newforms-admin || Brian Rosner, Karen Tracey || Joseph || in process || [query:status=new|assigned|reopened&version=newforms-admin see report] || || oldforms -> newforms || Brian Rosner || JKM || in process || #3639, ... || || WSGI compliance || ''???'' || Malcolm || [http://groups.google.com/group/django-developers/t/527bfb17ae113b93 under discussion] || #285 || === "Maybe" features === || '''Feature''' || '''Lieutenant''' || '''Committer'''' || '''Status''' || '''Tickets''' || || Signal performance improvements || Jeremy Dunck || JKM || needs feedback || #6814 || || INSTALLED_APPS refactoring || ''???'' || ''???'' || not started || #3591 || || File storage refactoring || Marty Alchin || JKM || needs update now that #2070 has landed || #5361 || || Model-level validation || Honza Král || JKM || started || #6845 || || GenericForeignKey support in nfa || ''???'' || Brian Rosner || not started || #4667 || || GeoDjango || Justin Bronn || Justin Bronn || nearly done, needs #7589, #7637; [http://geodjango.org/docs/ docs] [http://geodjango.org/hg/gis-docs/ in progress] || #7589, #7637, #7579, #6547, #7619 || || Many-to-many intermediates || Eric Florenzano || Russ || nearly done; has admin issues || #6095 || || Fix alternative Python VM bugs || Maciej Fijalkowski(pypy), Leo Soto(jython) || JKM || ''???'' || #7560, #7441, #7303, #7339, #7727, #7728. Reopen #6857, unless #6814 will be commited.|| || De-cruftify template tag loading || Øyvind Saltvik || JKM || needs feedback || #6587, #3349, ... || || Middleware ordering || ''???'' || JKM || ''???'' || #730, #749 || || Self-referencing fields in queries || ''???'' || Russ || ''???'' || #7210 || Finish documentation refactoring || ''???'' || JKM || needs work || || || [#Commentsrefactor Comments refactor] || Thejaswi Puthraya || ''???'' || in progress || #1829, #1853, #2134, #2177, #2228, #3091, #3546, #4189 || == Finished == || '''Feature''' || '''Lieutenant''' || '''Committer'''' || '''Commited in revision''' || || Large file uploads || Mike Axiak || JKM || [7814] || == Comments about Specific Features == DjangoAndPyPy DjangoAndJython === Comments === See VersionOneRoadmap for details. === Middleware ordering === We are not treating the middleware hierarchy as a stack, in the sense that if one piece of middleware short-circuits the response construction, we go right to the bottom of the pile before processing the request. We need to decide what behaviour we really want here and record it. Both the referenced tickets have good points in them and since this might slightly change request/response behaviour, it's a pre-1.0 decision if possible.