| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-09-16 | Fixed #26697 -- Removed contrib.gis.maps. | Tim Graham | |
| 2016-06-15 | Fixed broken links in docs and comments. | Ville Skyttä | |
| 2015-12-23 | Fixed #25969 -- Replaced render_to_response() with render() in docs examples. | Tim Graham | |
| 2015-09-04 | Refs #25345 -- Updated links to code.google.com. | Maxime Lorant | |
| 2015-08-31 | Fixed #25331 -- Removed trailing blank lines in docstrings. | Maxime Lorant | |
| 2015-06-27 | Sorted imports in __init__.py files. | Tim Graham | |
| 2015-06-15 | Removed django.utils.functional.total_ordering() | Tim Graham | |
| 2015-03-27 | Fixed #24469 -- Refined escaping of Django's form elements in non-Django ↵ | Moritz Sichert | |
| templates. | |||
| 2015-02-06 | Sorted imports with isort; refs #23860. | Tim Graham | |
| 2014-12-13 | Fixed #23812 -- Changed django.utils.six.moves.xrange imports to range | Michael Hall | |
| 2014-12-03 | Removed redundant numbered parameters from str.format(). | Berker Peksag | |
| Since Python 2.7 and 3.1, "{0} {1}" is equivalent to "{} {}". | |||
| 2014-09-05 | Limited lines to 119 characters in django/ | Tim Graham | |
| refs #23395. | |||
| 2014-04-26 | Fix many many typos in comments throughout the codebase | Alex Gaynor | |
| 2014-03-03 | Fixed many typos in comments and docstrings. | Rodolfo Carvalho | |
| Thanks Piotr Kasprzyk for help with the patch. | |||
| 2014-02-03 | Fixed #21934 -- Added unicode support in GoogleMap class | David Fischer | |
| 2013-11-03 | Fixed all E226 violations | Alex Gaynor | |
| 2013-11-02 | Fixed all E261 warnings | coagulant | |
| 2013-11-02 | More attacking E302 violators | Alex Gaynor | |
| 2013-11-02 | Fixed #21302 -- Fixed unused imports and import *. | Tim Graham | |
| 2013-10-26 | Fixed all the E203 violations | Alex Gaynor | |
| 2013-10-23 | Fixed E225 pep8 warnings. | Tim Graham | |
| 2013-10-22 | Fixed E221 pep8 warnings. | Tim Graham | |
| 2013-10-17 | Fixed #21270 -- Fixed E701 pep8 warnings | Alasdair Nicol | |
| 2013-10-14 | Fixed #21266 -- Fixed E201,E202 pep8 warnings. | Larry O'Neill | |
| 2013-10-11 | Fixed assorted flake8 errors. | Tim Graham | |
| 2013-10-10 | Whitespace cleanup. | Tim Graham | |
| * Removed trailing whitespace. * Added newline to EOF if missing. * Removed blank lines at EOF. * Removed some stray tabs. | |||
| 2013-08-30 | Fixed #20989 -- Removed useless explicit list comprehensions. | Simon Charette | |
| 2013-07-22 | Fixed #20773 -- [gis] Fixed regression in GoogleMap output | Claude Paroz | |
| Thanks Martyn Clement for the report and the initial patch. | |||
| 2012-08-12 | [py3] Refactored __unicode__ to __str__. | Aymeric Augustin | |
| * Renamed the __unicode__ methods * Applied the python_2_unicode_compatible decorator * Removed the StrAndUnicode mix-in that is superseded by python_2_unicode_compatible * Kept the __unicode__ methods in classes that specifically test it under Python 2 | |||
| 2012-07-22 | [py3] Added Python 3 compatibility for xrange. | Aymeric Augustin | |
| 2012-07-22 | [py3] Replaced basestring by six.string_types. | Aymeric Augustin | |
| 2012-07-03 | Removed various unnecessary instances of mark_safe applied to URLs | Luke Plant | |
| Also fixed some test breakages introduced in last commit | |||
| 2012-07-03 | Changed a lot of internal code to use 'format_html' where appropriate/possible | Luke Plant | |
| 2012-05-18 | Got rid of old __cmp__methods replaced by rich comparison. | Claude Paroz | |
| The __cmp__ methods are unsupported in Python 3. _doctest.py has been left untouched because it is likely it will not be migrated to Python 3. | |||
| 2011-08-12 | Fixed #16584 -- Fixed a bunch of typos in code comments. Thanks, Bernhard Essl. | Jannis Leidel | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@16598 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-07-13 | Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for ↵ | Jannis Leidel | |
| the work on the patch and Alex for reviewing. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16539 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2010-10-09 | Fixed #11509 -- Modified usage of "Web" to match our style guide in various ↵ | Russell Keith-Magee | |
| documentation, comments and code. Thanks to timo and Simon Meers for the work on the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14069 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2009-06-29 | Fixed #11249, #11261 -- Blocks may now be overridden again `google-map.js` ↵ | Justin Bronn | |
| template; now use GMaps `setUIToDefault` to use default controls. Thanks to ludifan and Peter Landry for the ttickets and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11124 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2009-05-30 | Fixed #11200 -- Now use a `set` data structure for `GoogleMap` icons so that ↵ | Justin Bronn | |
| they aren't repeated in rendered JavaScript. Thanks to ludifan for ticket and initial patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10865 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2009-03-20 | Fixed #10480 -- made `icons` a property to add more flexibility. | Justin Bronn | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@10102 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2009-03-10 | Fixed #9204 -- Added `GIcon` overlay, allowing customization for icons of ↵ | Justin Bronn | |
| `GMarker` objects. Thanks to qingfeng for initial ticket/patch, and to prairiedogg for final implementation. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10021 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2009-03-09 | Fixed #9955 -- Added `GoogleMapSet`, which enables multiple `GoogleMap` ↵ | Justin Bronn | |
| objects to placed on the same page; moved all templates to `google` parent dir, and added 'google-map.html' for an included example. Thanks to mandric for the ticket and aromano for initial patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10011 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2009-03-08 | Fixed #10072 -- `GMarker` overlays now have `draggable` option. Thanks to ↵ | Justin Bronn | |
| prairiedogg for ticket and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10002 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2008-08-17 | Fixed #8113. Made `get_width_height` a `GoogleZoom` method that takes the ↵ | Justin Bronn | |
| extent instead of an envelope so it may handle Point geometries. Thanks to Santiago Aguiar for the bug report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8428 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2008-08-05 | Merged the gis branch into trunk. | Justin Bronn | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@8219 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
