summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-04-29Switch a datastructure internal to the ORM to be a set, instead of a dictionary.Alex Gaynor
2012-04-29Fixed #17644 -- Changed Query.alias_map to use namedtuplesAdrian Holovaty
This makes the code easier to understand and may even have a benefit in memory usage (namedtuples instead of dicts). Thanks, lrekucki and akaariai
2012-04-29Minor fixes in the custom template tags docs.Aymeric Augustin
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
Thanks Clueless for the initial patch. Note that unittest has been purposely left out (external package only used by Python 2.6).
2012-04-29Fixed #18220 -- Removed the CACHE_BACKEND setting, as per official ↵Claude Paroz
deprecation timeline. Thanks Ramiro Morales for the review.
2012-04-29Moved version code out of __init__.py.Adrian Holovaty
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.
2012-04-29Edited docs/releases/1.5.txtAdrian Holovaty
2012-04-29Removed unused variable from sql/query.pyAnssi Kääriäinen
2012-04-29Fixed #18023 -- Removed bundled simplejson.Aymeric Augustin
And started the deprecation path for django.utils.simplejson. Thanks Alex Ogier, Clueless, and other contributors for their work on the patch.
2012-04-29Fixed an Oracle-specific test case failureAnssi Kääriäinen
Made a test checking ORM-generated query string case-insensitive.
2012-04-29Prevent Oracle from changing field.null to TrueAnssi Kääriäinen
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.
2012-04-29Merge pull request #22 from aviraldg/test_17967Alex Gaynor
Added regression test for #17967. Thanks to aviraldg for the patch!
2012-04-29Fixed some style issues in previous commit.Aviral Dasgupta
2012-04-29Simplified timezones tests with settings_changed.Aymeric Augustin
All relevant state is now properly reset whenever TIME_ZONE or USE_TZ are changed in tests.
2012-04-29Fixed #17992 -- Added a public API for localtime.Aymeric Augustin
Thanks Bradley Ayers for the report.
2012-04-29Simplified QuerySet field.null handlingAnssi Kääriäinen
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.
2012-04-29Fixed #17976 -- Made forms.BooleanField pickleable.Aymeric Augustin
This was a regression in Django 1.4. Thanks bronger for the report and claudep for the patch.
2012-04-29Added regression test for #17967.Aviral Dasgupta
2012-04-29Fixed #18224 -- Changed the dev version number.Aymeric Augustin
Following the move from SVN to git.
2012-04-29Fixed #13196 -- Formatting in admin changelists.Aymeric Augustin
Handled values returned by functions more like field values. In particular, localized dates, times and datetimes properly, and converted datetimes to the current timezone.
2012-04-29Merge pull request #20 from yumike/fix/pull_request_17_syntax_errorAymeric Augustin
Fixed template syntax error, introduced in pull request #17
2012-04-29Fixed template syntax error, introduced in pull request #17Mike Yumatov
2012-04-28Merge pull request #17 from aviraldg/fix_17967Adrian Holovaty
Fixed #17967: Hide "Change Password" link in admin if user.has_usable_password is False.
2012-04-29Fixed #17967: Hide "Change Password" link in admin if ↵Aviral Dasgupta
user.has_usable_password is False.
2012-04-28Merge pull request #16 from akaariai/ticket_18218Adrian Holovaty
Made table_names() output sorted.
2012-04-28Fixed #18234: Avoided exception on flatpage addKaren Tracey
2012-04-29Made table_names() output sorted.Anssi Kääriäinen
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.
2012-04-28Merge pull request #14 from matthewwithanm/js-i18n-patch-2Adrian Holovaty
Corrected i18n javascript_catalog Reference Error
2012-04-28Merge pull request #15 from jasondavies/readmeAdrian Holovaty
Fixed bullet formatting for README.rst.
2012-04-28Fix bullet formatting for README.rst.Jason Davies
2012-04-28Correct reference error (undefined variable)Matthew Tretter
2012-04-28Merge pull request #2 from notcarl/masterAdrian Holovaty
Changed phone2numeric to use generator expressions instead of lambdas
2012-04-28Whitespace formattingNot Carl
2012-04-28Merge pull request #10 from kleinmatic/patch-1Adrian Holovaty
Updated some antique references in "Is Django stable?"
2012-04-28Merge pull request #9 from t0m/masterAdrian Holovaty
Fixed typo: instanciating -> instantiating in django/views/generic/edit.py
2012-04-28Renamed README to README.rst so that GitHub will give it the proper formattingAdrian Holovaty
2012-04-28Updated some antique references in "Is Django stable?"Scott Klein
2012-04-28fix typo: instanciating -> instantiatingTom Terrace
2012-04-28Removed a svn-specific hack from a test.Aymeric Augustin
2012-04-28Removed a svn-specific configuration for Sphinx.Aymeric Augustin
2012-04-28forgot the allow_lazy(phone2numeric)Not Carl
2012-04-28Modified phone2numeric to not use regular expression or lambdasNot Carl
2012-04-27Updated unique-messages.py to reference Git instead of SVNAdrian Holovaty
2012-04-27Updated docs/intro/whatsnext.txt to reference Git instead of SVNAdrian Holovaty
2012-04-27Updated compilemessages and makemessages management commands to change ↵Adrian Holovaty
SVN->Git references
2012-04-27Updated docs/topics/install.txt to note github URL instead of ↵Adrian Holovaty
code.djangoproject.com
2012-04-27Added a friendly sentence to the README, to make sure GitHub committing is ↵Adrian Holovaty
working
2012-04-27Fixed #15076 -- Quoted ForeignKey target class names in inspectdb when class ↵Claude Paroz
is defined below. Thanks saschwarz for the report, jeff@deserettechnology.com for the initial patch and Ramiro Morales for the review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17942 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-26Removed direct print statements from django management commands.Claude Paroz
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17941 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-04-26Removed unneeded deprecation warning silencing in test suite.Claude Paroz
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17940 bcc190cf-cafb-0310-a4f2-bffc1f526a37