summaryrefslogtreecommitdiff
path: root/django/contrib
AgeCommit message (Collapse)Author
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
Thanks Tim Graham for the review.
2017-02-04Refs #27656 -- Updated django.contrib docstring verb style according to PEP 257.Anton Samarchyan
2017-02-04Fixed #27767 -- Added distinct argument to ArrayAgg.orf
2017-02-03Fixed spelling of "nonexistent".Tim Graham
2017-02-01Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis
2017-02-01Fixed #27661 -- Moved FileSystemFinder's ImproperlyConfigured exceptions to ↵Ling-Xiao Yang
system checks. Thanks Simon Charette, Mariusz Felisiak, Tim Graham, and Adam Johnson for review.
2017-01-31Used model_ngettext in two more placesClaude Paroz
2017-01-28Fixed #26993 -- Increased User.last_name max_length to 150 characters.Thom Wiggers
2017-01-28Fixed #27788 -- Dropped support for Oracle < 12.1.Tim Graham
2017-01-26Fixed #27781 -- Made simplify_regex() remove outstanding '?' characters.Mariusz Felisiak
Regression in f0ef0c49e9284f262fbc63e8a497699ca4a248fe.
2017-01-26Refs #23919 -- Replaced usage of django.utils.http utilities with Python ↵Claude Paroz
equivalents Thanks Tim Graham for the review.
2017-01-26Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis
2017-01-25Refs #23919 -- Removed misc Python 2/3 references.Tim Graham
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-25Refs #23919 -- Replaced errno checking with PEP 3151 exceptions.Tim Graham
2017-01-25Removed unused variables that are overwritten.Mads Jensen
2017-01-23Fixed #27743 -- Prevented admin's "+" button icon from overlapping its label.Nick Mavrakis
2017-01-22Refs #23919 -- Replaced six.reraise by raiseClaude Paroz
2017-01-21Refs #23919 -- Removed misc references to Python 2.Tim Graham
2017-01-21Refs #23919 -- Removed django.utils.decorators.available_attrs() usage.Tim Graham
It's only needed to workaround a bug on Python 2.
2017-01-20Refs #23919 -- Removed pysqlite support (it's Python 2 only).Tim Graham
2017-01-20Refs #23919 -- Removed unneeded str() callsClaude Paroz
2017-01-20Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham
These functions do nothing on Python 3.
2017-01-20Refs #23919 -- Removed unneeded force_str callsClaude Paroz
2017-01-19Refs #23919 -- Removed SessionBase.iterkeys(), itervalues(), iteritems().Srinivas Reddy Thatiparthy
These methods only work on Python 2.
2017-01-19Refs #23919 -- Removed docs references to long integers.Tim Graham
2017-01-19Refs #23919 -- Removed __nonzero__() methods (for Python 2).Simon Charette
Thanks Tim for the review.
2017-01-19Updated translation catalogsClaude Paroz
Forward port of 518693bef559bb719e68b08904a9250abfd9237c from stable/1.11.x
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed obsolete __ne__() methods.Aymeric Augustin
__ne__() defaults to the opposite of __eq__() on Python 3 when it doesn't return NotImplemented.
2017-01-18Refs #23919 -- Stopped using django.utils.lru_cache().Aymeric Augustin
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
Thanks Tim Graham for the review.
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
Thanks Tim Graham and Simon Charette for the reviews.
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
Thanks Tim Graham for the review.
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Increased the default PBKDF2 iterations for the 1.11 release cycle.Tim Graham
2017-01-17Refs #23957 -- Removed the useless SessionAuthenticationMiddleware.Tim Graham
2017-01-17Refs #26601 -- Removed support for old-style middleware using ↵Tim Graham
settings.MIDDLEWARE_CLASSES.
2017-01-17Refs #26509 -- Removed contrib.gis.utils.precision_wkt() per deprecation ↵Tim Graham
timeline.
2017-01-17Refs #25847 -- Removed support for User.is_(anonymous|authenticated) as methods.Tim Graham
Per deprecation timeline.
2017-01-17Refs #25773 -- Removed deprecated geos.MultiPolygon.cascaded_union property.Tim Graham
2017-01-17Refs #25665 -- Removed deprecated getter/setter of Point.tuple.Tim Graham
2017-01-17Refs #25665 -- Removed deprecated getters/setters of Point coordinate ↵Tim Graham
properties.
2017-01-17Refs #25665 -- Removed GEOSGeometry.get/set_srid() per deprecation timeline.Tim Graham
2017-01-17Refs #25135 -- Removed support for the contrib.admin allow_tags attribute.Tim Graham
Per deprecation timeline.
2017-01-17Refs #24126 -- Removed auth views' current_app parameter per deprecation ↵Tim Graham
timeline.
2017-01-17Refs #25184 -- Removed contrib.gis.geoip per deprecation timeline.Tim Graham
2017-01-17Removed GeoManager and GeoQuerySet per deprecation timeline.Tim Graham
2017-01-17Refs #22993 -- Removed skipIfCustomUser per deprecation timeline.Tim Graham