summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Expand)Author
2005-09-29Changed [735] so that database-agnostic SQL always gets executed, even if dat...Adrian Holovaty
2005-09-29Fixed #295 - added {{{forloop.revcounter}}} and {{{forloop.revcounter0}}} var...Jacob Kaplan-Moss
2005-09-29Fixed #363 - django-admin sqlall now uses database-specific initial data file...Jacob Kaplan-Moss
2005-09-29Fixed #541 - generic views now may take a {{{template_loader}}} argument so t...Jacob Kaplan-Moss
2005-09-29Fixed #574 - small CSS issue in admin tables. Thanks, Hein-PieterJacob Kaplan-Moss
2005-09-29Fixed #576 - popups no longer show "save & continue" buttons. Thanks, Hein-P...Jacob Kaplan-Moss
2005-09-29Changed django.core.template_file to use absolute import for 'template' moduleAdrian Holovaty
2005-09-29Fixed #537 -- Fixed typo in [718]. Thanks, EsajAdrian Holovaty
2005-09-29Fixed #537; thanks, fonsoJacob Kaplan-Moss
2005-09-29Fixed #546 - render_to_string and render_to_response may now take lists of te...Jacob Kaplan-Moss
2005-09-29Fixed #106 - "Add another" now correctly works in IE - thanks, PaoloJacob Kaplan-Moss
2005-09-29Fixed #501 -- Fixed block.super in multi-level templates, and added unit test...Adrian Holovaty
2005-09-29Fixed #573 -- Added 'Add another' link to many-to-many fields in admin. Thank...Adrian Holovaty
2005-09-28Fixed #553 -- Added django.core.meta.fields.Field.get_internal_type() hook, f...Adrian Holovaty
2005-09-27Moved JING from django.core.validators into settings where it belongs. Fixes...Jacob Kaplan-Moss
2005-09-27Fixed #567 -- Added HttpRequest.has_key() method. Thanks, wojtek3@brandlay.comAdrian Holovaty
2005-09-27Added EMAIL_SUBJECT_PREFIX setting so you can customize the "[Django]" prefixJacob Kaplan-Moss
2005-09-27Fixed #544 -- Added xmlns and lang attributes to <html> tag in admin_template...Adrian Holovaty
2005-09-27Fixed #131 -- URLconfs that are 'included' now receive captured parameters fr...Adrian Holovaty
2005-09-27Fixed #213 -- Improved formfields.TimeField.html2python() so that it doesn't ...Adrian Holovaty
2005-09-26Quick bug fix to [699] - fixes #515.Jacob Kaplan-Moss
2005-09-26Fixed type in static view URL pattern example (refs #428)Jacob Kaplan-Moss
2005-09-26Added exception handlers to take care of the bugs with the file and db backendsJacob Kaplan-Moss
2005-09-26Subclassed models now use their own class name (or explicitly defined verbose...Adrian Holovaty
2005-09-26Fixed #558 -- Subclassed models now use their own class name (or explicitly d...Adrian Holovaty
2005-09-26Fixed #515 (again) - renamed "key" field in SQL cache to "cache_key" because Jacob Kaplan-Moss
2005-09-26Fixed #489 -- Changed MySQL backend to use longtext for XMLFieldAdrian Holovaty
2005-09-25Fixed #469 -- Admin changelist no longer assumes ForeignKey has 'ordering' se...Adrian Holovaty
2005-09-25Added a database-backed cache backend, along with a tool in django-admin to Jacob Kaplan-Moss
2005-09-25Fixed #468 -- Model classes now get an accessor method to get the human-reada...Adrian Holovaty
2005-09-25Added "locmem" and "file" cache backends. "locmem" is a thread-safe local-me...Jacob Kaplan-Moss
2005-09-25Improved model validator so that it checks for PIL if ImageFields are usedAdrian Holovaty
2005-09-25Fixed #550 -- Default admin template now checks user permissions, hiding apps...Adrian Holovaty
2005-09-25Fixed #428 -- added a "static pages" view. Note that this view should only b...Jacob Kaplan-Moss
2005-09-25Fixed #556 -- ManyToManyField join tables no longer assume the primary keys o...Adrian Holovaty
2005-09-24Fixed #489 -- Changed MySQL backend to use longtext instead of text for TextF...Adrian Holovaty
2005-09-23Made a small improvement to django.views.core.flatfiles so that it only uses ...Adrian Holovaty
2005-09-23Changed django.views.core.flatfiles to use get_object_or_404Adrian Holovaty
2005-09-23Changed django.views.admin.template to use render_to_response, to cut on codeAdrian Holovaty
2005-09-23Changed django.views.admin.main to use get_object_or_404 and render_to_respon...Adrian Holovaty
2005-09-23Added django.core.extensions get_object_or_404 and get_list_or_404Adrian Holovaty
2005-09-23Fixed #543 -- Fixed broken mod_python support due to an import in the wrong p...Adrian Holovaty
2005-09-23Fixed #264 -- Added django.core.validators.isValidIPAddress4. Thanks, Hugo an...Adrian Holovaty
2005-09-23Fixed #333 -- Added DEFAULT_MIME_TYPE setting, and set it to 'text/html; char...Adrian Holovaty
2005-09-23Added request.session.delete_test_cookie()Adrian Holovaty
2005-09-23Fixed #236 -- Added HttpResponse.delete_cookie() method.Adrian Holovaty
2005-09-23Removed a legacy 'TODO' from django.middleware.sessionsAdrian Holovaty
2005-09-23Fixed #539 -- Added support for strides to 'slice' template filter, and made ...Adrian Holovaty
2005-09-22Converted load_and_render() calls to render_to_response() because of [664].Adrian Holovaty
2005-09-22Added django.core.template_loader.render_to_string and django.core.extensions...Adrian Holovaty