.. |
admin_changelist
|
065e6b6153
Fixed #15819 - Fixed 1.3 regression from r15526 causing duplicate search results in admin with search_fields traversing to non-M2M related models. Thanks to Adam Kochanowski for the report and Ryan Kaskel for the patch.
|
14 éve |
admin_filters
|
032b4ab5df
Fixed #15971 -- Fixed regression introduced in r16144 that prevented the use of the field's verbose_name attribute. Thanks to mk and Julien.
|
14 éve |
admin_inlines
|
0a9b5d7ade
Fixed #15424 -- Corrected lookup of callables listed in admin inlines' `readonly_fields` by passing the right ModelAdmin (sub)class instance when instantiating inline forms admin wrappers. Also, added early validation of its elements. Thanks kmike for the report and Karen for the patch fixing the issue.
|
14 éve |
admin_ordering
|
b3520da9ac
Fixed #13862 -- Added an ordering option to InlineModelAdmin and cleaned up documentation for it a bit. Thanks, Simon Meers, rasca and cogat.
|
14 éve |
admin_registration
|
12bd7bcb35
Fixed #12004 -- Improved error reporting when an abstract class is registered with the admin. Thanks to Matt Smalley for the report, and to mk and Julien Phalip for the patch.
|
14 éve |
admin_scripts
|
1d7fa75c97
Fixed #15064 -- Made manage.py honor the existence and value of DJANGO_SETTINGS_MODULE env var. Thanks olau for the report and Shawn Milochik for a patch.
|
14 éve |
admin_util
|
f459169170
Fixed #15661 - LogEntry objects have no unicode method
|
14 éve |
admin_validation
|
2b5730873b
Added ability to describe grouping of form fields in the same row to the `fields` ModelAdmin attribute.
|
14 éve |
admin_views
|
b0d274dbd5
Added missing future imports missed in r16167.
|
14 éve |
admin_widgets
|
b0d274dbd5
Added missing future imports missed in r16167.
|
14 éve |
aggregation_regress
|
385ae343fb
Fixed #15709 - Duplicated group_by condition
|
14 éve |
app_loading
|
2706fdbc87
Refs #15093 -- Fixed another get_models call missed in r16053. Thanks Luke for catching it.
|
14 éve |
backends
|
724c84fe90
Fixed #13648 - '%s' escaping support for sqlite3 regression.
|
14 éve |
bash_completion
|
121d2e3678
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.
|
14 éve |
bug639
|
121d2e3678
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.
|
14 éve |
bug8245
|
5bc0ec4ec4
Removed all usages of deprecated TestCase methods (self.fail*). This removed most of the Warnings emitted (with -Wall) during the test suite.
|
14 éve |
builtin_server
|
afd040d4d3
Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:
|
14 éve |
cache
|
fd309996df
Fixed #15704 -- Made cache tests more reusable by moving the backend path into a class attribute. Thanks for the patch, jonash
|
14 éve |
comment_tests
|
1b6670dd59
Fixed #15904 - render_comment_form executes unnecessary query for object
|
14 éve |
conditional_processing
|
3b94af8a84
Modified some regression tests to make them independent of the default root urlconf.
|
14 éve |
context_processors
|
4c468800ee
Updates to the test suite to allow for newly deprecated and removed features
|
14 éve |
csrf_tests
|
73721912e2
Fixed #16002 - test failure due to missing `from __future__ import with_statement`
|
14 éve |
custom_columns_regress
|
a904e55859
Fixed #11509 -- Modified usage of "Web" to match our style guide in various documentation, comments and code. Thanks to timo and Simon Meers for the work on the patch.
|
14 éve |
custom_managers_regress
|
e2ff11c6a3
Migrated the custom_managers_regress doctests. Thanks to Paul McMillan.
|
14 éve |
datatypes
|
afd040d4d3
Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:
|
14 éve |
dates
|
abaa3ed4bd
Fixed #13935, added support for using QuerySet.dates across related fields. Thanks to valyagolev for his work on the patch.
|
14 éve |
db_typecasts
|
6774207394
Fixed #14453 -- Changed handling of microseconds part in typecast_timestamp() DB backend helper function to be more correct. Thanks philipn for the report and fix.
|
14 éve |
decorators
|
086ab44336
Fixed #15637 -- Added a require_safe decorator for views to accept GET or HEAD. Thanks, aaugustin and Julien.
|
14 éve |
defaultfilters
|
b0d274dbd5
Added missing future imports missed in r16167.
|
14 éve |
defer_regress
|
07bfc76ecf
Fixed #15790 -- Fixed QuerySet only() and defer() methods behavior with proxy models. Thanks Michal Modzelewzki for the report and patch.
|
14 éve |
delete_regress
|
afd040d4d3
Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:
|
14 éve |
dispatch
|
13864703bc
Removed a bunch more Python 2.4 workarounds now that we don't support that version. Refs #15702 -- thanks to jonash for the patch.
|
14 éve |
expressions_regress
|
b1f6a4d66f
Fixed #10154: Allow combining F expressions with timedelta values.
|
14 éve |
extra_regress
|
13864703bc
Removed a bunch more Python 2.4 workarounds now that we don't support that version. Refs #15702 -- thanks to jonash for the patch.
|
14 éve |
file_storage
|
afd040d4d3
Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:
|
14 éve |
file_uploads
|
eb24b54634
Fixed #15496 -- Corrected handling of base64 file upload encoding. Thanks, gene and Claude Paroz.
|
14 éve |
fixtures_regress
|
f17fc56602
Fixed a bunch more tests that were failing in Oracle due to false assumptions about the primary keys of objects.
|
14 éve |
forms
|
02b837d38a
Fixed #8527 -- Made CAPostalCodeField more forgiving of the input format. Thanks to Claude Paroz.
|
14 éve |
formwizard
|
da0c6908e8
Fixed #9473: FormWizard now works with NullBooleanFields. As a bonus, we now have the beginnings of a test suite for FormWizard. Thanks, Keith Bussell.
|
16 éve |
generic_inline_admin
|
afd040d4d3
Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:
|
14 éve |
generic_relations_regress
|
bb6b9aa472
Fixed #11535: Corrected SQL generated for queries involving generic relations and ORed Q objects. Thanks to brianglass for report, tobias for fix and test, and Alex for review.
|
15 éve |
generic_views
|
f4c808b7f5
Fixed #15688 - Generic views should provide a HEAD implementation
|
14 éve |
get_or_create_regress
|
ea774bf9a7
Fix wrong attribute name in [15156]. Thanks to Alex Gaynor for spotting this.
|
14 éve |
handlers
|
12265410ac
Fixed #15672 -- Refined changes made in r15918. Thanks, vung.
|
14 éve |
httpwrappers
|
afd040d4d3
Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:
|
14 éve |
humanize
|
578a31fea3
Fixed #15921 -- Refined naturaltime filter added in r16071 to use timesince and timeuntil filters as fallbacks instead of date filter.
|
14 éve |
i18n
|
0322f2b653
Fixed #15263 -- Added support for format localization to the now template tag. Thanks to danielr and dmclain.
|
14 éve |
initial_sql_regress
|
b31a1b9926
Refs #14661 -- Clarified the handling of initial data injected via custom SQL.
|
14 éve |
inline_formsets
|
9e637d3061
Fixed a number of tests that were failing in Oracle due to false assumptions about the primary keys of objects.
|
14 éve |
inspectdb
|
74d485c4ec
Fixed #15170 -- Skip the inspectdb test under MySQL/MyISAM, because it can't differentiate a foreign key from an integer.
|
14 éve |
introspection
|
13864703bc
Removed a bunch more Python 2.4 workarounds now that we don't support that version. Refs #15702 -- thanks to jonash for the patch.
|
14 éve |
locale
|
f6e38f3800
Fixed #5494, #10765, #14924 -- Modified the order in which translations are read when composing the final translation to offer at runtime.
|
14 éve |
localflavor
|
59d1f82634
Fixed #11251 -- Extended Australian localflavor to ship a few model fields additionally. Thanks, Simon Meers and Julien Phalip.
|
14 éve |
m2m_regress
|
2bbea7555b
Fixed #14458 -- converted m2m_regress tests from doctests to unittests. We have always been at war with doctests. Thanks to Gabriel Hurley for the patch.
|
14 éve |
m2m_through_regress
|
84291b7b84
Fixed #15161 - Corrected handling of ManyToManyField with through table using to_field on its ForeignKeys. Thanks to adehnert for the report.
|
14 éve |
mail
|
2abd7af4dd
Fixed #11212 -- Stopped using quoted-printable encoding for mails with non-ASCII characters but rely on 8bit encoding instead. Thanks, phr, gisle and Ramiro Morales.
|
14 éve |
managers_regress
|
52efbf9715
Fixed #14460 -- converted managers_regress tests from doctests to unittests. We have always been at war with doctests. Patch from Gabriel Hurley.
|
14 éve |
many_to_one_regress
|
1ac4c101ae
Fixed #14459 -- converted many_to_one_regress tests from doctests to unittests. We have always been at war with doctests. Patch from Gabriel Hurley.
|
14 éve |
max_lengths
|
afd040d4d3
Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:
|
14 éve |
middleware
|
171df93170
Fixed #15954 - New IGNORABLE_404_URLS setting that allows more powerful filtering of 404s to ignore
|
14 éve |
middleware_exceptions
|
3b94af8a84
Modified some regression tests to make them independent of the default root urlconf.
|
14 éve |
model_fields
|
48cffd9e45
Fixed #5931 -- Added __repr__ to db fields. Thanks, Thomas Güttler, emulbreh and magopian.
|
14 éve |
model_forms_regress
|
f17fc56602
Fixed a bunch more tests that were failing in Oracle due to false assumptions about the primary keys of objects.
|
14 éve |
model_formsets_regress
|
4b746a6a24
Fixed #15549 -- Removed dependency on specific primary keys. Thanks to bberes for the report.
|
14 éve |
model_inheritance_regress
|
afd040d4d3
Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:
|
14 éve |
model_inheritance_select_related
|
ceef628c19
Converted model_inheritance_select_related tests from doctests to unittests. We have always been at war with doctests.
|
14 éve |
model_permalink
|
72c5733869
Fixed #15604 -- Changed django.db.models.permalink to use wraps() so that it doesn't eat the docstring. Thanks for the report, sfllaw. Also added tests.
|
14 éve |
model_regress
|
f777ddf3e6
Fixed a failing test caused by [14614].
|
14 éve |
modeladmin
|
18d2f4a816
Fixed #5833 -- Modified the admin list filters to be easier to customize. Many thanks to Honza Král, Tom X. Tobin, gerdemb, eandre, sciyoshi, bendavis78 and Julien Phalip for working on this.
|
14 éve |
multiple_database
|
afd040d4d3
Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:
|
14 éve |
null_fk
|
db5807bdb1
Fixed #15823 - incorrect join condition when combining Q objects
|
14 éve |
null_fk_ordering
|
d271566a7d
Migrated null_fk_ordering doctests. Thanks to Stephan Jaekel.
|
14 éve |
null_queries
|
afd040d4d3
Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:
|
14 éve |
one_to_one_regress
|
afd040d4d3
Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:
|
14 éve |
pagination_regress
|
0e9692bc66
Fixed #13689 -- Convert the per_page value to an integer upon initialization of the Paginator class to prevent unpleasant TypeErrors. Thanks, rbanffy, Eric Florenzano and Claude Paroz.
|
14 éve |
queries
|
c77372cad0
Fixed #14729 -- RawQuerySet.__repr__ fails when params passed as list. Thanks, intgr for ticket and accuser for patch.
|
14 éve |
queryset_pickle
|
5a3521fd07
Tweak the last two tests from r13013 to test what they are intended to test instead of repeating 3rd to last test.
|
15 éve |
requests
|
8bb46d8b7c
Fixed #15679 - regression in HttpRequest.POST and raw_post_data access.
|
14 éve |
reverse_single_related
|
afd040d4d3
Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:
|
14 éve |
select_related_onetoone
|
5506653b77
Fixed #5416 -- Added TestCase.assertNumQueries, which tests that a given function executes the correct number of queries.
|
14 éve |
select_related_regress
|
f17fc56602
Fixed a bunch more tests that were failing in Oracle due to false assumptions about the primary keys of objects.
|
14 éve |
serializers_regress
|
930371e91b
Fixed #15889 -- when trying to access to access a serializer that doesn't exist, raise a new SerializerDoesNotExist exception. Thanks to Mathieu Agopian for the patch.
|
14 éve |
servers
|
cfc19f84de
Fixed #12323 and #11582 -- Extended the ability to handle static files. Thanks to all for helping with the original app, the patch, documentation and general support.
|
14 éve |
settings_tests
|
1d7fa75c97
Fixed #15064 -- Made manage.py honor the existence and value of DJANGO_SETTINGS_MODULE env var. Thanks olau for the report and Shawn Milochik for a patch.
|
14 éve |
signals_regress
|
afd040d4d3
Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:
|
14 éve |
sites_framework
|
31560e31f9
Fixed #13790 -- auto detection of m2m fields to Site. Thanks, gabrielhurley!
|
14 éve |
special_headers
|
2f9c52dc90
Fixed a failing test in special_headers, and performed a bit of cleanup.
|
14 éve |
staticfiles_tests
|
bd0daa04f5
Fixed staticfiles test that was broken on Windows due to the result of the stdout not being correctly handled as Unicode.
|
14 éve |
string_lookup
|
afd040d4d3
Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:
|
14 éve |
syndication
|
3b94af8a84
Modified some regression tests to make them independent of the default root urlconf.
|
14 éve |
templates
|
32bd953e63
Minor renaming for consistency.
|
14 éve |
test_client_regress
|
27efda5f5b
Corrected warning filter in test_client_regress
|
14 éve |
test_runner
|
32517041bd
Silenced DeprecationWarning caused by testing deprecated DjangoTestRunner
|
14 éve |
test_utils
|
3b94af8a84
Modified some regression tests to make them independent of the default root urlconf.
|
14 éve |
text
|
b0d274dbd5
Added missing future imports missed in r16167.
|
14 éve |
transactions_regress
|
afd040d4d3
Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:
|
14 éve |
urlpatterns_reverse
|
ae3fec0da8
Fixed minor typo in tests introduced in r16121. Refs #5925.
|
14 éve |
utils
|
23b32c7554
Fixed #15811 - lazy() doesn't take into account methods defined in parents
|
14 éve |
views
|
4d039d8d05
Fixed #15980 - Unknown encoding "utf8" in tests/regressiontests/views/__init__.py
|
14 éve |
__init__.py
|
a513fcb455
Added regressions tests to ensure that one-to-one and many-to-many fields
|
19 éve |