3
I Use This!
Very High Activity

Commits : Listings

Analyzed about 19 hours ago. based on code collected 2 days ago.
Nov 16, 2024 — Nov 16, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Added '--settings' option to django-admin. This specifies which settings module to use, if you don't want to deal with setting the DJANGO_SETTINGS_MODULE environment variable. Refactored django-admin to use optparse. Updated the tutorials to use '--settings' instead of environment variables, which can be confusing. More... over 20 years ago
Argh: fixed another bug in [244] More... over 20 years ago
Fixed really dumb bug in [244] More... over 20 years ago
Added "reversed" option to get_comment_list templatetag to return comments in most-recent-first order. More... over 20 years ago
Fixed #97 -- Refactored django-admin.py so that it only contains command-line-interface code. Moved the actual meat into django/core/management.py More... over 20 years ago
Fixed #102 -- Now using text/plain mimetype for exceptions displayed in the browser, so angle brackets are no longer an issue More... over 20 years ago
'django-admin runserver' now displays the settings module you're using when it starts up More... over 20 years ago
Cleaned up code in django.conf.settings to move DJANGO_SETTINGS_MODULE into a variable, so other scripts can introspect it. Also made it display a better error message if DJANGO_SETTINGS_MODULE is set to the empty string More... over 20 years ago
Fixed ForeignKey('self') so that extra cruft parameters aren't necessary. Also refactored the way meta.Admin is handled, so that fields aren't initialized until you manually call meta.Admin.get_field_objs() More... over 20 years ago
Added 'How can I customize the functionality of the admin interface?' to FAQ More... over 20 years ago
Fixed typos and tightened up docs/url_dispatch.txt More... over 20 years ago
Changed models.auth.Session.get_session_from_cookie to raise SessionDoesNotExist instead of SuspiciousOperation if tamper check fails More... over 20 years ago
Changed django.views.defaults to use template.Context instead of core.extensions.DjangoContext More... over 20 years ago
Made ModPythonHandler.get_response() tolerant of repr(request) that has an exception More... over 20 years ago
Added missing import to [230] More... over 20 years ago
Fixed #95 -- Added SECRET_KEY setting instead of hard-coding keys that are shared for every Django installation. 'django-admin.py startproject' now creates a random SECRET_KEY. The auth and comments modules, and the admin middleware, all use SECRET_KEY now, instead of hard-coded values. More... over 20 years ago
Fixed #59 -- Changed hard-coded references to password_change and logout in admin templates to add /admin/ prefix. Still hard-coded, but you can override it in custom templates if your URL structure is different More... over 20 years ago
Fixed #84 -- CREATE TABLE foreign keys now work in MySQL More... over 20 years ago
Fixed inevitable ReST bug in [224] More... over 20 years ago
Added better description of SlugField More... over 20 years ago
Changed docs/cache to add docs for site-wide caching, via the cache middleware More... over 20 years ago
Added 'Running a development server with mod_python' to docs/modpython.txt More... over 20 years ago
Added note about 'PythonDebug Off' to docs/modpython.txt More... over 20 years ago
Added some more to docs/modpython.txt More... over 20 years ago
Removed redundant word from docs/modpython.txt More... over 20 years ago
Added note to tutorial02 on how to stop the development server on Unix vs. Windows More... over 20 years ago
Added 'How can I see the raw SQL queries Django is running?' to the FAQ More... over 20 years ago
Added 'How to use Django with mod_python' -- docs/modpython.txt More... over 20 years ago
Fixed the annoying login error that happens in some cases when REGISTRATION_COOKIE_DOMAIN isn't set. Now, generally you don't have to sete REGISTRATION_COOKIE_DOMAIN unless you want to use multi-domain cookies (such as '.foo.com') More... over 20 years ago
Improved error message when DATABASE_ENGINE is invalid. It now displays a list of all available database backends More... over 20 years ago