- 31 May, 2012 1 kayıt (commit)
-
-
Daniel Roseman yazdı
-
- 30 Nis, 2012 6 kayıt (commit)
-
-
Alex Gaynor yazdı
docs: It's rsync_project not rysnc_project
-
Anssi Kääriäinen yazdı
Made get_indexes() consistent across backends.
-
Kyle Fuller yazdı
-
Anssi Kääriäinen yazdı
Fixed #15933, #18082 -- the get_indexes() method introspection was done inconsitently depending on the backend. For example SQLite included all the columns in the table in the returned dictionary, while MySQL introspected also multicolumn indexes. All backends return now consistenly only single-column indexes. Thanks to andi for the MySQL report, and ikelly for comments on Oracle's get_indexes() changes.
-
Claude Paroz yazdı
Thanks miguel.ventura@gmail.com for the report and the patch.
-
Alex Gaynor yazdı
-
- 29 Nis, 2012 24 kayıt (commit)
-
-
Adrian Holovaty yazdı
This makes the code easier to understand and may even have a benefit in memory usage (namedtuples instead of dicts). Thanks, lrekucki and akaariai
-
Aymeric Augustin yazdı
-
Claude Paroz yazdı
Thanks Clueless for the initial patch. Note that unittest has been purposely left out (external package only used by Python 2.6).
-
Claude Paroz yazdı
Thanks Ramiro Morales for the review.
-
Adrian Holovaty yazdı
Moved everything except VERSION and a get_version() stub out of the top-level __init__.py, so that we're not importing all that stuff all the time. And because it's cleaner.
-
Adrian Holovaty yazdı
-
Anssi Kääriäinen yazdı
-
Aymeric Augustin yazdı
And started the deprecation path for django.utils.simplejson. Thanks Alex Ogier, Clueless, and other contributors for their work on the patch.
-
Anssi Kääriäinen yazdı
Made a test checking ORM-generated query string case-insensitive.
-
Anssi Kääriäinen yazdı
Fixed #17957 -- when using Oracle and character fields, the fields were set null = True to ease the handling of empty strings. This caused problems when using multiple databases from different vendors, or when the character field happened to be also a primary key. The handling was changed so that NOT NULL is not emitted on Oracle even if field.null = False, and field.null is not touched otherwise. Thanks to bhuztez for the report, ramiro for triaging & comments, ikelly for the patch and alex for reviewing.
-
Alex Gaynor yazdı
Added regression test for #17967. Thanks to aviraldg for the patch!
-
Aviral Dasgupta yazdı
-
Aymeric Augustin yazdı
All relevant state is now properly reset whenever TIME_ZONE or USE_TZ are changed in tests.
-
Aymeric Augustin yazdı
Thanks Bradley Ayers for the report.
-
Anssi Kääriäinen yazdı
QuerySet had previously some complex logic for dealing with nullable fields in negated add_filter() calls. It seems the logic is leftover from a time where the WhereNode wasn't as intelligent in handling field__in=[] conditions. Thanks to aaugustin for comments on the patch.
-
Aymeric Augustin yazdı
This was a regression in Django 1.4. Thanks bronger for the report and claudep for the patch.
-
Aviral Dasgupta yazdı
-
Aymeric Augustin yazdı
Following the move from SVN to git.
-
Aymeric Augustin yazdı
Handled values returned by functions more like field values. In particular, localized dates, times and datetimes properly, and converted datetimes to the current timezone.
-
Aymeric Augustin yazdı
Fixed template syntax error, introduced in pull request #17
-
Mike Yumatov yazdı
-
Adrian Holovaty yazdı
Fixed #17967: Hide "Change Password" link in admin if user.has_usable_password is False.
-
Aviral Dasgupta yazdı
-
Adrian Holovaty yazdı
Made table_names() output sorted.
-
- 28 Nis, 2012 9 kayıt (commit)
-
-
Karen Tracey yazdı
-
Anssi Kääriäinen yazdı
Fixed #18218 -- previously Django's introspection table_names() and get_table_list() methods did not sort the output consistently. This resulted in random order of inspected models. This commit also removed all external usages of get_table_list(). table_names() should be used instead. Thanks to claudep for patch and report.
-
Adrian Holovaty yazdı
Corrected i18n javascript_catalog Reference Error
-
Adrian Holovaty yazdı
Fixed bullet formatting for README.rst.
-
Jason Davies yazdı
-
Matthew Tretter yazdı
-
Adrian Holovaty yazdı
Changed phone2numeric to use generator expressions instead of lambdas
-
Not Carl yazdı
-
Adrian Holovaty yazdı
Updated some antique references in "Is Django stable?"
-