django/tests/regressiontests
Carl Meyer 9f6d50d02e Fixed #15182 - Fixed a security issue with ClearableFileInput. Disclosure and new release forthcoming.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15470 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-02-09 02:41:32 +00:00
..
admin_changelist Fixed #14982 -- Ensure that EMPTY_CHANGELIST_VALUE is honored for nullable foreign keys. Thanks to marcob for the report and fix, and to sontek for the test case. 2011-01-24 07:01:00 +00:00
admin_inlines
admin_ordering
admin_registration
admin_scripts Fixed #15112 -- Ensure that IPv6 addresses are correctly displayed in the admin. Thanks to oxy for the report, and Łukasz Rekucki for the test case. 2011-01-27 03:15:12 +00:00
admin_util
admin_validation
admin_views Ensure that L10N formats aren't cached between tests. 2011-02-09 00:09:54 +00:00
admin_widgets Modified wrong expected ClearableFileInput rendering output in a couple of additional tests after fix introduced in [15426]. Refs #14984. 2011-02-05 20:06:49 +00:00
aggregation_regress Fixed #13159 -- properly quote aggregates in order_by. 2011-01-26 03:48:15 +00:00
app_loading
backends
bash_completion Fixed #12991 -- Added unittest2 support. Thanks to PaulM for the draft patch, and to Luke, Karen, Justin, Alex, Łukasz Rekucki, and Chuck Harmston for their help testing and reviewing the final patch. 2010-10-11 12:55:17 +00:00
bug639
bug8245
builtin_server
cache Fixed #13283 -- Corrected CACHE_MIDDLEWARE_ANONYMOUS_ONLY's bad habit of setting Vary: Cookie on all responses and destroying cache efficiency. Thanks to natrius for the fix. 2011-02-01 00:20:31 +00:00
comment_tests
conditional_processing
context_processors
csrf_tests Fixed a security issue in the CSRF component. Disclosure and new release forthcoming. 2011-02-09 02:06:27 +00:00
custom_columns_regress
custom_managers_regress
datatypes
dates
db_typecasts
decorators
defaultfilters Fixed #14240 -- Enabled localization for the filesize filter. Thanks to David Danier for the report and patch. 2011-01-24 08:16:09 +00:00
defer_regress
delete_regress Fixed #11319 - Added lookup support for ForeignKey.to_field. Also reverted no-longer-needed model formsets workaround for lack of such support from r10756. Thanks Russell and Alex for review. 2011-01-25 03:14:28 +00:00
dispatch
expressions_regress Fixed #10154: Allow combining F expressions with timedelta values. 2010-12-22 03:34:04 +00:00
extra_regress
file_storage Fixed #15181 -- Ensure that special characters are escaped when querying for the URL of an uploaded file. Thanks to e.generalov for the report and patch. 2011-02-04 14:43:10 +00:00
file_uploads
fixtures_regress Made a transaction test optional unless transactions are supported. 2011-01-26 14:49:50 +00:00
forms Fixed #15182 - Fixed a security issue with ClearableFileInput. Disclosure and new release forthcoming. 2011-02-09 02:41:32 +00:00
formwizard Fixed #9473: FormWizard now works with NullBooleanFields. As a bonus, we now have the beginnings of a test suite for FormWizard. Thanks, Keith Bussell. 2009-04-01 14:13:43 +00:00
generic_inline_admin
generic_relations_regress
generic_views Fixed #14711 -- Corrected the calculation for the previous month in generic date views. Thanks to msundstr for the report and patch. 2011-02-06 06:31:52 +00:00
get_or_create_regress
handlers
httpwrappers Rationalised CompatCookie/SimpleCookie into single SimpleCookie class with all fixes. 2011-01-24 20:35:46 +00:00
humanize
i18n Fixed #5494, #10765, #14924 -- Modified the order in which translations are read when composing the final translation to offer at runtime. 2011-02-07 18:48:40 +00:00
initial_sql_regress
inline_formsets
inspectdb Fixed #15170 -- Skip the inspectdb test under MySQL/MyISAM, because it can't differentiate a foreign key from an integer. 2011-02-01 14:42:52 +00:00
introspection
locale/de/LC_MESSAGES Fixed #5494, #10765, #14924 -- Modified the order in which translations are read when composing the final translation to offer at runtime. 2011-02-07 18:48:40 +00:00
localflavor Fixed the rest of the US localflavor tests that were forgotten in r15058. Refs r15029. 2010-12-31 14:38:19 +00:00
m2m_regress
m2m_through_regress Fixed #15161 - Corrected handling of ManyToManyField with through table using to_field on its ForeignKeys. Thanks to adehnert for the report. 2011-01-26 19:10:08 +00:00
mail
managers_regress
many_to_one_regress
max_lengths
middleware
middleware_exceptions
model_fields
model_forms_regress
model_formsets_regress Fixed #15167 -- Ensure that non-form errors are always part of an ErrorList. Thanks to Harm Geerts for the report and patch. 2011-02-05 06:33:16 +00:00
model_inheritance_regress
model_inheritance_select_related
model_regress
modeladmin
multiple_database
null_fk
null_fk_ordering Migrated null_fk_ordering doctests. Thanks to Stephan Jaekel. 2010-09-28 08:17:12 +00:00
null_queries Fixed #13815 -- Ensure that reverse exclude lookups on nullable foreign keys exclude null values. Thanks to bpeschier for the report and patch. 2011-02-08 14:06:02 +00:00
one_to_one_regress
pagination_regress
queries Fixed #11319 - Added lookup support for ForeignKey.to_field. Also reverted no-longer-needed model formsets workaround for lack of such support from r10756. Thanks Russell and Alex for review. 2011-01-25 03:14:28 +00:00
queryset_pickle
requests
reverse_single_related
select_related_onetoone
select_related_regress
serializers_regress
servers
settings_tests
signals_regress
sites_framework Fixed #13790 -- auto detection of m2m fields to Site. Thanks, gabrielhurley! 2010-10-18 04:56:27 +00:00
special_headers
staticfiles_tests Fixed a few test docstrings and removed an unused import in staticfiles. 2011-02-01 20:39:40 +00:00
string_lookup
syndication
templates Fixed #14046 -- Made {% include %} behave the same, regardless of whether the template included is named by variable or constant string. Thanks to defcube for the report, and George Karpenkov for the draft patch. 2011-02-04 17:10:21 +00:00
test_client_regress Fixed #14753 -- Fixed the test client to not raise an AssertionError when request.raw_post_data is accessed from a view it has fetched with GET. Thanks zimnyx for the report and ojii for the patch. 2011-01-21 01:04:05 +00:00
test_runner Fixed #15029 -- Moved to database backends the ability to decide if two DATABASES items are different when creating temporary databases for tests. 2011-02-02 14:02:14 +00:00
test_utils
text
urlpatterns_reverse
utils Fixed #14698 -- Ensure that module_has_sumodule doesn't mistake a cache miss for an existent package. Thanks to Łukasz Rekucki for the report and patch, and to shields for the test case. 2011-01-30 13:10:47 +00:00
views Fixed #5494, #10765, #14924 -- Modified the order in which translations are read when composing the final translation to offer at runtime. 2011-02-07 18:48:40 +00:00
__init__.py