.. |
admin_ordering
|
a19ed8aea3
Merged the newforms-admin branch into trunk.
|
il y a 16 ans |
admin_registration
|
7b3cf13d32
Improved admin model registration options: you can now register using register(Model, **options) and even register(Model, ModelAdmin, **options). This isn't documented yet -- a much expanded version of docs/admin.txt is on the way.
|
il y a 16 ans |
admin_scripts
|
a855755711
Fixed #9293: Corrected expected test output for the admin_scripts tests, following the changes to --verbosity in 9110. Thanks to Alex for the report.
|
il y a 16 ans |
admin_validation
|
b31568aed3
Fixed #8027: correctly validate fields/fieldsets in `ModelAdmin` validation when using custom `ModelForm`s.
|
il y a 16 ans |
admin_views
|
1f84630c87
Fixed #6470: made the admin use a URL resolver.
|
il y a 16 ans |
admin_widgets
|
b120c74032
Changed "date" column to "start_date"--Oracle won't name columns with reserved keywords.
|
il y a 16 ans |
aggregation_regress
|
542709d0d1
Fixed #10182 -- Corrected realiasing and the process of evaluating values() for queries with aggregate clauses. This means that aggregate queries can now be used as subqueries (such as in an __in clause). Thanks to omat for the report.
|
il y a 16 ans |
auth_backends
|
8bc442e771
Fixed #7304 -- Gave AnonymousUser a has_perms() method, which it was lacking
|
il y a 16 ans |
backends
|
b41a45f8e5
Fixed #5543: callproc() and friends now work with Oracle and our FormatStylePlaceholderCursor.
|
il y a 16 ans |
bug639
|
65c0846c45
Updated a few save() methods on models to accept force_insert and force_update
|
il y a 16 ans |
bug8245
|
9af56803f5
Fixed #8245 -- Added a LOADING flag to autodiscover to prevent an admin.py module with errors from raising a spurious AlreadyRegistered exception in a subsequent call to autodiscover.
|
il y a 16 ans |
cache
|
b21ea0a836
More be-nice-to-the-buildbot: be better about cleaning up files created by the cache/session tests.
|
il y a 16 ans |
comment_tests
|
344f16e220
Fixed #8138 -- Changed django.test.TestCase to rollback tests (when the database supports it) instead of flushing and reloading the database. This can substantially reduce the time it takes to run large test suites.
|
il y a 16 ans |
context_processors
|
daa6b38f35
Fixed #8092, #3828 -- Removed dictionary access for request objects so that GET and POST data doesn't "overwrite" request attributes when used in templates (since dictionary lookup is performed before attribute lookup). This is backwards-incompatible if you were using the request object for dictionary access to the combined GET and POST data, but you should use `request.REQUEST` for that instead.
|
il y a 16 ans |
custom_columns_regress
|
5834b1837f
Fixed #9736 -- Added quoting to the SQL constraint names generated during table creation. This is to accommodate primary keys with spaces.
|
il y a 16 ans |
datastructures
|
62b39322f3
Fixed #7496 -- It's now possible to pickle SortedDicts with pickle protocol 2
|
il y a 16 ans |
datatypes
|
e545058ba9
Fixed #8354: the MySQL backend no longer raises a cryptic error. Instead, it raises a less-cryptic error. Obiously this isn't a perfect solution by any means, but it'll do until we can revisit timezone handling in the future.
|
il y a 16 ans |
dateformat
|
f3c15225fc
Fixed #6023 -- Fixed daylight savings determination for years beyond 2038 on
|
il y a 17 ans |
datetime_safe
|
cd80ce7a3d
Added missing files form [7946]
|
il y a 16 ans |
db_typecasts
|
97b9ad73b4
Refs #2333 - Modified runtests script to use new testing framework. Migrated existing tests to use Django testing framework. All the 'othertests' have been migrated into 'regressiontests', and converted into doctests/unittests, as appropriate.
|
il y a 18 ans |
decorators
|
297a12c2d1
Fixed a missing __init__.py from [7153]
|
il y a 17 ans |
defaultfilters
|
b81bc22ad2
Fixed #5748 -- Made floatformat filter round properly on all platforms and handle NaN input correctly on Windows. Also added tests for these cases. Thanks for the report and initial patch to SmileyChris and PJCrosier.
|
il y a 16 ans |
dispatch
|
34a3bd5225
Major refactoring of django.dispatch with an eye towards speed. The net result is that signals are up to 90% faster.
|
il y a 16 ans |
expressions_regress
|
bd40c32f6c
Fixed some column names in the tests that were breaking the test suite on Oracle.
|
il y a 16 ans |
extra_regress
|
58ea6d4561
Fixed #10256 -- Corrected the interaction of extra(select=) with values() and values_list() where an explicit list of columns is requested.
|
il y a 16 ans |
file_storage
|
b96b450981
Fixed #9786 -- Fixed inequality checking for django.db.models.fields.file.FieldFile class.
|
il y a 16 ans |
file_uploads
|
344f16e220
Fixed #8138 -- Changed django.test.TestCase to rollback tests (when the database supports it) instead of flushing and reloading the database. This can substantially reduce the time it takes to run large test suites.
|
il y a 16 ans |
fixtures_regress
|
096a9ecc5c
Fixed #9942 -- Added a to_python handler for FloatField to ensure correct typing of deserialized data before saving. Underlying problem is analogous to #8298, fixed in [8515]. Thanks to David Larlet <larlet@gmail.com> for the report and fix.
|
il y a 16 ans |
forms
|
b2a4377651
Fixed #9066 -- Added Czech localflavor. Thanks to Elvard for the contribution.
|
il y a 16 ans |
generic_inline_admin
|
344f16e220
Fixed #8138 -- Changed django.test.TestCase to rollback tests (when the database supports it) instead of flushing and reloading the database. This can substantially reduce the time it takes to run large test suites.
|
il y a 16 ans |
get_or_create_regress
|
a949f9ec7d
Fixed #3121 -- Made `get_or_create()` work for `RelatedManager` and `ManyRelatedManager`.
|
il y a 16 ans |
httpwrappers
|
6a8dcafb57
Fixed #8278: fixed `QueryDict.update(QueryDict)`. Thanks, julien.
|
il y a 16 ans |
humanize
|
356662cf74
Implemented auto-escaping of variable output in templates. Fully controllable by template authors and it's possible to write filters and templates that simulataneously work in both auto-escaped and non-auto-escaped environments if you need to. Fixed #2359
|
il y a 17 ans |
i18n
|
fac84c0bf4
Tweaked an i18n test that is a bit sensitive to Python versions. It returns
|
il y a 17 ans |
initial_sql_regress
|
212ee65be7
Fixed #2101 -- Renamed `maxlength` argument to `max_length` for oldforms `FormField`s and db model `Field`s. This is fully backwards compatible at the moment since the legacy `maxlength` argument is still supported. Using `maxlength` will, however, issue a `PendingDeprecationWarning` when used.
|
il y a 17 ans |
inline_formsets
|
6c7cf34d69
Fixed #9171 -- Fixed a few places where we were assuming lists instead of
|
il y a 16 ans |
m2m_regress
|
fd0cc45828
[8721] introduced some internal field names. We hide them from the list of
|
il y a 16 ans |
m2m_through_regress
|
fbf09ee11d
Added a test to show that [8472] also fixed #8254.
|
il y a 16 ans |
mail
|
8ada8d7c03
Fixed #9214: EmailMessage now respects the From header instead of blindly using from_email. Thanks, Tai Lee.
|
il y a 16 ans |
managers_regress
|
f31425e8e2
Fixed #7154 -- Inherit all model managers from abstract base classes.
|
il y a 16 ans |
many_to_one_regress
|
900178d795
Added a test from kcarnold to show that #7498 is fixed. Refs #7498.
|
il y a 16 ans |
max_lengths
|
351a3ca154
Removed several deprecated features for 1.0 (refs #7830):
|
il y a 16 ans |
middleware
|
ce770aaecd
The tests added in r9184 were altering the test environment in bad ways. Fixed
|
il y a 16 ans |
model_fields
|
e5cd43e588
Fixed #5903 -- DecimalField.get_default() now correctly returns a Decimal object when the model instance was not retrieved from the database. Thanks Justin Driscoll and pigletto.
|
il y a 16 ans |
model_forms_regress
|
7e7a370e20
Fixed #9319 -- Fixed a crash when using the same model field in multiple
|
il y a 16 ans |
model_inheritance_regress
|
9319dc496c
Fixed #9406 -- Ensure that each database column is only represented once in the
|
il y a 16 ans |
model_inheritance_select_related
|
2c1d6a80b3
Removed a stray debugging print that slipped in.
|
il y a 16 ans |
model_regress
|
8e350d036c
Fixed #9608: Ensured a Model's default repr() is printable even if its __unicode__ method raises a Unicode error.
|
il y a 16 ans |
modeladmin
|
6c7cf34d69
Fixed #9171 -- Fixed a few places where we were assuming lists instead of
|
il y a 16 ans |
null_fk
|
f48855178d
Fixed #7530, #7716 -- When using select_related() and encountering a NULL
|
il y a 16 ans |
null_fk_ordering
|
2d7feda05c
Fixed #7512 -- Fixed an oversight when I first fixed ordering on nullable
|
il y a 16 ans |
null_queries
|
9c52d56f6f
Merged the queryset-refactor branch into trunk.
|
il y a 17 ans |
one_to_one_regress
|
2db4b13480
Fixed #8070 -- Cache related objects passed to Model init as keyword arguments. Also:
|
il y a 16 ans |
pagination_regress
|
7bc728c826
A few corrections to my docstrings in [8129].
|
il y a 16 ans |
queries
|
d579e716fe
Fixed #9997 -- Fixed use of ValuesQuerySets as rvalues in filters.
|
il y a 16 ans |
requests
|
646f2f6101
Fixed #7494 -- Fixed build_absolute_url() for some types of (uncommon) URLs.
|
il y a 16 ans |
reverse_single_related
|
593810a501
Fixed #7904: added support for a "use_for_related_fields" property on managers. If True, the manager will be used for related object lookups instead of the "bare" QuerySet introduced bu [8107]. Patch from Justin Bronn.
|
il y a 16 ans |
select_related_regress
|
8f5234d801
Fixed #8036 -- Fixed a case when attempting to traverse non-existent related
|
il y a 16 ans |
serializers_regress
|
dd2e1356f0
Corrected code in serializers_regress testcase so that, in the case where an exception has been raised, rollback is called before attempting to leave transaction management. With the old code the original exception (IntegrityError on InnoDB) was getting hidden by a transaction management error resulting from attempting to leave transaction management with a pending commit/rollback.
|
il y a 16 ans |
string_lookup
|
6294fc7179
Changed "exact" matches in MySQL to use the database's native collation.
|
il y a 16 ans |
syndication
|
2e9a8801d0
Added a test to ensure that strings in RSS are properly escaped. Refs #6533.
|
il y a 16 ans |
templates
|
bd2b0059be
Here's the rest of [9530] where I actually rename the tag like I said I did. I swear this was git's fault, not mine.
|
il y a 16 ans |
test_client_regress
|
95d8c0619a
Fixed #9351 -- Modified the test client to pass on URL encoded parameters to the underlying views. Thanks to sime for the suggestion.
|
il y a 16 ans |
test_utils
|
6db9fd0116
Made the test case for doctest comparison of XML fragments a little more rigorous. Refs #7441.
|
il y a 16 ans |
text
|
8c442f21dc
Fixed #5816 -- Fixed a regression from [6333] that generates incorrect cookie "expires" dates when using a locale other than English. Introduced `http_date` and `cookie_date` utility functions. Thanks for the report Michael Lemaire. Thanks for the patch Karen Tracey and `SmileyChris`.
|
il y a 17 ans |
urlpatterns_reverse
|
c01098e9cb
In urlconfs, include() may now be used on an iterable of patterns instead of just a module string. Refs #6470 -- making the admin use a urlconf is much easier with this work done. Thanks, Alex Gaynor.
|
il y a 16 ans |
utils
|
3111d7f60b
Fixed #7201 -- Fixed the timeuntil filter to work correctly with timezone-aware
|
il y a 16 ans |
views
|
a64dc39fb7
Fixed #7602 -- Corrected lookup keyword arguments in archive_month and archive_week to properly range when date_field is from DateField. Thanks nullie for the original patch and Colin Grady for the test coverage.
|
il y a 16 ans |
__init__.py
|
a513fcb455
Added regressions tests to ensure that one-to-one and many-to-many fields
|
il y a 19 ans |