diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000000..fe6e68f177 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,97 @@ +Django was originally created in late 2003 at World Online, the Web division +of the Lawrence Journal-World newspaper in Lawrence, Kansas. + + +The PRIMARY AUTHORS are (and/or have been): + +Adrian Holovaty , who originally created Django with +Simon and currently oversees things with Jacob. + +Simon Willison , who originally created Django with +Adrian during his year-long internship/placement at World Online and currently +helps from the sidelines. + +Jacob Kaplan-Moss , who joined the team shortly +before Simon departed and currently oversees things with Adrian. + +Wilson Miner , who designed Django's admin +interface, pretty error pages, official Web site (djangoproject.com) and has +made many other contributions. + +Georg "Hugo" Bauer , who added +internationalization support, manages i18n contributions and has made a ton +of excellent tweaks, feature additions and bug fixes. + +Robert Wittams , who majorly refactored the Django +admin application to allow for easier reuse and has made a ton of excellent +tweaks, feature additions and bug fixes. + + +And here is an inevitably incomplete list of MUCH-APPRECIATED CONTRIBUTORS -- +people who have submitted patches, reported bugs, added translations, helped +answer newbie questions, and generally made Django that much better: + + Andreas + David Ascher + James Bennett + Paul Bissex + Simon Blanchard + Andrew Brehaut + Antonio Cavedoni + Amit Chakradeo + Matt Croydon + Jeremy Dunck + Clint Ecker + Baishampayan Ghose + Espen Grindhaug + Brant Harris + Ian Holsman + Kieran Holland + Robert Rock Howard + Jason Huggins + Michael Josephson + Garth Kidd + Sune Kirkeby + lakin.wecker@gmail.com + Stuart Langridge + Eugene Lazutkin + Martin Maney + Maniac + Manuzhai + Petar Marić + mark@junklight.com + mattycakes@gmail.com + Jason McBrayer + mmarshall + Eric Moritz + Robin Munn + nesh + Sam Newman + Luke Plant + phaedo + plisk + David Schein + sopel + Radek Švarz + Aaron Swartz + Tom Tobin + Joe Topjian + Amit Upadhyay + Milton Waddams + Rachel Willmer + wojtek + ye7cakf02@sneakemail.com + + +A big THANK YOU goes to: + + Rob Curley and Ralph Gage for letting us open-source Django. + + Frank Wiles for making excellent arguments for open-sourcing, and for + his sage sysadmin advice. + + Ian Bicking for convincing Adrian to ditch code generation. + + Mark Pilgrim for diveintopython.org. + + Guido van Rossum for creating Python. diff --git a/django/core/management.py b/django/core/management.py index 161d195829..d34ee6fc4d 100644 --- a/django/core/management.py +++ b/django/core/management.py @@ -187,6 +187,7 @@ def get_sql_delete(mod): # Close database connection explicitly, in case this output is being piped # directly into a database client, to avoid locking issues. + cursor.close() db.db.close() return output[::-1] # Reverse it, to deal with table dependencies. diff --git a/docs/model-api.txt b/docs/model-api.txt index 344f34ef2c..3245b2a78a 100644 --- a/docs/model-api.txt +++ b/docs/model-api.txt @@ -909,7 +909,7 @@ object, which takes the following parameters. All are optional. list_display = ('username', 'email', 'first_name', 'last_name', 'is_staff'), list_filter = ('is_staff', 'is_superuser'), - This results in a admin that looks like: + The above code results in an admin that looks like this: .. image:: http://media.djangoproject.com/img/doc/users_changelist.png