- 03 May, 2012 2 kayıt (commit)
-
-
Aymeric Augustin yazdı
Thanks Ramiro for the patch.
-
Alex Ogier yazdı
-
- 02 May, 2012 1 kayıt (commit)
-
-
Karen Tracey yazdı
Ticket 18163 - use faster password hasher in tests.
-
- 01 May, 2012 8 kayıt (commit)
-
-
Aymeric Augustin yazdı
-
Claude Paroz yazdı
Thanks jose for the report.
-
Aymeric Augustin yazdı
-
Aymeric Augustin yazdı
Converted aware datetimes to the default time zone before using them in the context of a DateField.
-
Anssi Kääriäinen yazdı
In some situations Django calls model validation when the models are already known good. This is most visible in tests, which use flush and loaddata commands. This resulted in around 10% overhead when running tests under sqlite.
-
Adrian Holovaty yazdı
Added @leereilly to contributor list.
-
Adrian Holovaty yazdı
Added @gsong to AUTHORS
-
George Song yazdı
See <https://code.djangoproject.com/ticket/10931> for my contribution.
-
- 30 Nis, 2012 19 kayıt (commit)
-
-
Lee Reilly yazdı
-
Anssi Kääriäinen yazdı
Fixed #18163
-
Anssi Kääriäinen yazdı
-
Anssi Kääriäinen yazdı
-
Aymeric Augustin yazdı
-
Aymeric Augustin yazdı
Introduced a distinct implementation depending on the type of the date field (DateField or DateTimeField), and applied appropriate conversions is the latter case, when time zone support is enabled.
-
Claude Paroz yazdı
-
Lee Reilly yazdı
See commit message at for https://code.djangoproject.com/changeset/16324 verification.
-
Aymeric Augustin yazdı
-
Aymeric Augustin yazdı
-
Anssi Kääriäinen yazdı
Fixed #18175 -- Calling SortedDict.__copy__() resulted in changes to the original dictionary. The reason was likely related to subclassing dict. Thanks to linovia for report and patch.
-
Alex Gaynor yazdı
-
Alex Gaynor yazdı
docs: It's rsync_project not rysnc_project
-
Aymeric Augustin yazdı
Removed a confusing helper function that was confusing -- it used last_day to store the first day of the next month.
-
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 10 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.
-