summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2016-05-13Fixed #24938 -- Added PostgreSQL trigram support.Matthew Somerville
2016-05-13Fixed #26333 -- Made GIS Geometry classes deconstructible.Nicolas Noé
2016-05-13Fixed #26612 -- Fixed SelectFilter2 buttons changing URL.David Sanders
2016-05-12Prevented findstatic argument from appearing as multiple options.eltronix
2016-05-12Fixed #26277 -- Added support for null values in ChoicesFieldListFilter.Vincenzo Pandolfo
2016-05-12Fixed #21231 -- Enforced a max size for GET/POST values read into memory.Andre Cruz
Thanks Tom Christie for review.
2016-05-11Refs #24227 -- Partially reverted replacement of M2M isinstance checks by ↵Collin Anderson
field.many_to_many. This fixes django-taggit and reflects some places where duck-typing may not be appropriate.
2016-05-11Refs #24227 -- Removed ManyToManyField special casing in model_to_dict().Tim Graham
2016-05-11Fixed #26429 -- Added a timestamp to merge migration names.Raphael Gaschignard
This reduces the possibility of a naming conflict, especially after squashing migrations.
2016-05-10Fixed #24046 -- Deprecated the "escape" half of utils.safestring.Tim Graham
2016-05-10Stopped truncating AdminEmailHandler message subjectsClaude Paroz
Refs #26572, #17281. The RFC doesn't limit total length, just the line length which is already taken care of by Python itself. Thanks Tim Graham for the review.
2016-05-10Fixed #26580 -- Updated references to obsolete RFC 2822.Vasiliy Faronov
Didn't rename django.utils.feedgenerator.rfc2822_date() as some external code may rely on it.
2016-05-10Fixed #26603 -- Forced lazy template names to text when computing cache key.Simon Charette
Refs #26536. Thanks Sylvain Fankhauser for the very detailed report.
2016-05-09Refs #24046 -- Removed redundant condition in render_value_in_context()Tim Graham
Calling conditional_escape() on SafeData won't change it.
2016-05-09Fixed #25005 -- Made date and time fields with auto_now/auto_now_add use ↵Iacopo Spalletti
effective default. Thanks to Andriy Sokolovskiy for initial patch.
2016-05-08Fixed #26483 -- Updated docs.python.org links to use Intersphinx.Tim Graham
2016-05-08Replaced `six.callable` with `callable`.Ville Skyttä
2016-05-08Included reverse deps in showmigrationsJarek Glowacki
2016-05-08Fixed #25945, #26292 -- Refactored MigrationLoader.build_graph()Jarek Glowacki
2016-05-07Fixed #26449 -- Merged admin's FORMFIELD_FOR_DBFIELD_DEFAULTS with ↵marysia
formfield_overrides. Useful for overriding the DateTimeField widget.
2016-05-07Fixed #26402 -- Added relative path support in include/extends template tags.Vitaly Bogomolov
2016-05-07Fixed #26582 -- Added prettier admin display for list values.Dan Watson
2016-05-07Fixed #26544 -- Delayed translations of SetPasswordForm help_textsClaude Paroz
Thanks Michael Bitzi for the reporti and Tim Graham for the review.
2016-05-07Fixed #26593 -- Leveraged deferrable_sql() in SchemaEditorMarkus Holtermann
2016-05-06Fixed #25986 -- Fixed crash sending email with non-ASCII in local part of ↵Sergei Maertens
the address. On Python 3, sending emails failed for addresses containing non-ASCII characters due to the usage of the legacy Python email.utils.formataddr() function. This is fixed by using the proper Address object on Python 3.
2016-05-06Removed HTTP prefixed CONTENT_TYPE/LENGTH headers in MultiPartParser.Tim Graham
The docs say that these headers always appear without the HTTP_ prefix. This may have been an oversight when they were added in d725cc9734272f867d41f7236235c28b3931a1b2, the only commit that uses these names.
2016-05-06Fixed #25588 -- Added spatial lookups to RasterField.Daniel Wiesmann
Thanks Tim Graham for the review.
2016-05-06Refs #25847 -- Added system check for ↵Tim Graham
UserModel.is_anonymous/is_authenticated methods.
2016-05-04Fixed #26555 -- Gave deconstructible objects a higher priority during ↵Markus Holtermann
serialization
2016-05-04Replaced a 'raw' six importClaude Paroz
2016-05-04Fixed #22936 -- Obsoleted Field.get_prep_lookup()/get_db_prep_lookup()Claude Paroz
Thanks Tim Graham for completing the initial patch.
2016-05-04Fixed #26558 -- Removed need for request context processor on admin login page.Dan Stephenson
2016-05-03Fixed #26577 -- Disabled implicit wait of Selenium tests where appropriate.Simon Charette
2016-05-03Normalized "an SQL" spelling.Ville Skyttä
2016-05-03Fixed #26575 -- Disabled SelectFilter buttons when inactive.David Sanders
2016-05-03Refs #22897 -- Removed unneeded empty string QueryDict argument.Tim Graham
2016-05-03Fixed #26567 -- Updated references to obsolete RFC2616.Vasiliy Faronov
Didn't touch comments where it wasn't obvious that the code adhered to the newer standard.
2016-05-03Fixed #26561 -- Improved admin's JavaScript SelectBox performance on large ↵David Sanders
lists.
2016-05-03Refs #16508 -- Added invalidation of stale cached instances of ↵Michal Petrucha
GenericForeignKey targets.
2016-05-03Refs #26565 -- Errored nicely when using Prefetch with a values() queryset.Simon Charette
Thanks Maxime Lorant for the report and Anssi for the suggestion.
2016-05-03Refs #16508 -- Made Model.__init__() aware of virtual fields.Michal Petrucha
It's no longer necessary for GenericForeignKey (and any other virtual fields) to intercept the field's values using the pre_init signal.
2016-05-02Fixed #26341 (again) -- Addressed multiple occurrences per line use caseClaude Paroz
2016-05-02Fixed #26569 -- Updated OSM Mapnik constructorbgaechter
2016-05-02Fixed docstring typos.Offby-One Kenobi
2016-05-02Refs 2bd1bbc -- Made GeometryField.get_db_prep_lookup() a private ↵Tim Graham
(deprecated) method.
2016-05-02Refs #22936 -- Moved more of Field.get_db_prep_lookup() to lookups.Tim Graham
2016-04-30Fixed #26440 -- Added a warning for non-url()s in urlpatterns.Alasdair Nicol
Thanks Burhan Khalid for the initial patch and knbk/timgraham for review.
2016-04-30Fixed #26058 -- Delegated os.path bits of FileField's filename generation to ↵Cristiano
the Storage.
2016-04-30Pulled translations from TransifexClaude Paroz
2016-04-30Removed deprecated Chinese language codes for contrib appsClaude Paroz
Refs #18149.