summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Expand)Author
2005-07-22Fixed #145 -- Changed admin logout to use views.auth.login.logout, which uses...Adrian Holovaty
2005-07-21Refactor dictfetch* methods from mysql backend out into a seperate module; th...Jacob Kaplan-Moss
2005-07-21Cleaned up [269] a tiny bitAdrian Holovaty
2005-07-21Fixed #132 -- thanks anonymous userJacob Kaplan-Moss
2005-07-21fixes #133 -- thanks JoeriJacob Kaplan-Moss
2005-07-21Fixed #137 -- thanks nesh@studioquattro.co.yuJacob Kaplan-Moss
2005-07-21Added copyright notice to utils/autoreload for CherryPy folksAdrian Holovaty
2005-07-21Added auto-reload to standalone server! Fixes #113. Thanks very much to Jason...Adrian Holovaty
2005-07-21Fixed #92 -- meta.Admin 'fields' parameter is now optional. If it's not given...Adrian Holovaty
2005-07-21Improved 'django-admin runserver' so that it explicitly tells you how to stop...Adrian Holovaty
2005-07-21Refactored django.views.admin.main to call opts.admin.get_field_objs() only o...Adrian Holovaty
2005-07-21Fixed #114 -- Changed uses of deprecated 'whrandom' module to 'random'Adrian Holovaty
2005-07-21Added 'django-admin createsuperuser' and updated tutorial to use it instead o...Adrian Holovaty
2005-07-20Added optional rel_name parameter to ManyToManyField, which makes it possible...Adrian Holovaty
2005-07-20Small code cleanup -- changed django.core.management.get_sql_delete to use ge...Adrian Holovaty
2005-07-20Fixed small bug in print_error() calls in django-adminAdrian Holovaty
2005-07-20Added '--settings' option to django-admin. This specifies which settings modu...Adrian Holovaty
2005-07-20Argh: fixed another bug in [244]Jacob Kaplan-Moss
2005-07-20Fixed really dumb bug in [244]Jacob Kaplan-Moss
2005-07-20Added "reversed" option to get_comment_list templatetag to return comments in...Jacob Kaplan-Moss
2005-07-20Fixed #97 -- Refactored django-admin.py so that it only contains command-line...Adrian Holovaty
2005-07-20Fixed #102 -- Now using text/plain mimetype for exceptions displayed in the b...Adrian Holovaty
2005-07-20'django-admin runserver' now displays the settings module you're using when i...Adrian Holovaty
2005-07-20Cleaned up code in django.conf.settings to move DJANGO_SETTINGS_MODULE into a...Adrian Holovaty
2005-07-20Fixed ForeignKey('self') so that extra cruft parameters aren't necessary. Als...Adrian Holovaty
2005-07-20Changed models.auth.Session.get_session_from_cookie to raise SessionDoesNotEx...Adrian Holovaty
2005-07-20Changed django.views.defaults to use template.Context instead of core.extensi...Adrian Holovaty
2005-07-20Made ModPythonHandler.get_response() tolerant of repr(request) that has an ex...Adrian Holovaty
2005-07-20Added missing import to [230]Adrian Holovaty
2005-07-20Fixed #95 -- Added SECRET_KEY setting instead of hard-coding keys that are sh...Adrian Holovaty
2005-07-19Fixed #59 -- Changed hard-coded references to password_change and logout in a...Adrian Holovaty
2005-07-19Fixed #84 -- CREATE TABLE foreign keys now work in MySQLAdrian Holovaty
2005-07-19Fixed the annoying login error that happens in some cases when REGISTRATION_C...Adrian Holovaty
2005-07-19Improved error message when DATABASE_ENGINE is invalid. It now displays a lis...Adrian Holovaty
2005-07-19Fixed #88 -- settings are now forgiving of single-element INSTALLED_APPS and ...Adrian Holovaty
2005-07-19Fixed #67 -- Human-readable name is now optional in model fields. If a second...Adrian Holovaty
2005-07-19Quick bugfix to [207] -- MySQL doesn't have ILIKEAdrian Holovaty
2005-07-19Added support for istartswith and iendswith in database APIAdrian Holovaty
2005-07-19Improved error message in urlresolvers.RegexURLResolver.resolve to use repr i...Adrian Holovaty
2005-07-19Fixed #83 -- Fixed spelling error in django.conf.settings. Nice catch, Manuzhai!Adrian Holovaty
2005-07-19Added a more helpful error message to django.core.urlresolvers.RegexURLResolv...Adrian Holovaty
2005-07-19Improved TemplateDoesNotExist error message in django.core.template_fileAdrian Holovaty
2005-07-19Improved ViewDoesNotExist error messages in django.core.urlresolversAdrian Holovaty
2005-07-19Fixed #69 -- Implemented dictfetchone(), dictfetchmany() and dictfetchall() f...Adrian Holovaty
2005-07-18Fixed #76 -- development server now serves images, too, at whatever relative ...Adrian Holovaty
2005-07-18Moved default admin from media to django/conf/admin_media, so Django is able ...Adrian Holovaty
2005-07-18Fixed #71 -- Changed default admin base_site template to use example.com inst...Adrian Holovaty
2005-07-18Fixed bug in dynamically-generated docs -- ForeignKeys were throwing an excep...Adrian Holovaty
2005-07-18Changed core.handlers.modpython.populate_apache_request NOT to have side effe...Adrian Holovaty
2005-07-18Added django.middleware.cache, which lets you cache an entire Django-powered ...Adrian Holovaty