Zbigniew Siciarz 
							
						 
					 
					
						
						
							
						
						94b5bc361a 
					 
					
						
						
							
							Fixed   #22002  -- Documented avoiding database interaction in AppConfig.ready().  
						
						... 
						
						
						
						Thanks Marc Tamlyn for the suggestion. 
						
						
					 
					
						2014-02-15 13:50:31 -05:00 
						 
				 
			
				
					
						
							
							
								Alex Gaynor 
							
						 
					 
					
						
						
							
						
						cd7f37b647 
					 
					
						
						
							
							Corrected a pair of flake8 violations  
						
						
						
						
					 
					
						2014-02-15 10:42:12 -08:00 
						 
				 
			
				
					
						
							
							
								MattBlack85 
							
						 
					 
					
						
						
							
						
						1c1dffca75 
					 
					
						
						
							
							Fixed   #21725  -- Fixed JavaScript quoting encoding.  
						
						... 
						
						
						
						Thanks to nedbatchelder for the report. 
						
						
					 
					
						2014-02-15 19:39:21 +01:00 
						 
				 
			
				
					
						
							
							
								Zbigniew Siciarz 
							
						 
					 
					
						
						
							
						
						44814e78cc 
					 
					
						
						
							
							Fixed   #22013  -- Documented difference between SERVER_EMAIL and DEFAULT_FROM_EMAIL.  
						
						
						
						
					 
					
						2014-02-15 19:11:46 +01:00 
						 
				 
			
				
					
						
							
							
								Grzegorz Nosek 
							
						 
					 
					
						
						
							
						
						0b6f9f7c6f 
					 
					
						
						
							
							Improved fix for  #18373  -- backward compatibility  
						
						... 
						
						
						
						Commit 79558c78 
						
						
					 
					
						2014-02-15 17:51:18 +01:00 
						 
				 
			
				
					
						
							
							
								Christopher Medrela 
							
						 
					 
					
						
						
							
						
						d0133504e5 
					 
					
						
						
							
							Fixed   #22047  -- detecting related_name clash with inheritance  
						
						... 
						
						
						
						Thanks to mondone for fruitful colaboration. 
						
						
					 
					
						2014-02-15 17:24:05 +01:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						65b421c661 
					 
					
						
						
							
							Fixed some flake8 errors from recent commits.  
						
						
						
						
					 
					
						2014-02-15 11:21:15 -05:00 
						 
				 
			
				
					
						
							
							
								Aaron France 
							
						 
					 
					
						
						
							
						
						1150053b99 
					 
					
						
						
							
							Fixed   #21912  -- Improved error message if a view returns None.  
						
						... 
						
						
						
						Thanks brycenesbitt for the report. 
						
						
					 
					
						2014-02-15 11:18:16 -05:00 
						 
				 
			
				
					
						
							
							
								Marek Wywiał 
							
						 
					 
					
						
						
							
						
						d97bf2e9c8 
					 
					
						
						
							
							Fixed   #21765  -- Added support for comparing Context instances  
						
						
						
						
					 
					
						2014-02-15 17:14:28 +01:00 
						 
				 
			
				
					
						
							
							
								chomik 
							
						 
					 
					
						
						
							
						
						985ae732b2 
					 
					
						
						
							
							Fixed   #21884  -- Mentioned that exact is the defaut QuerySet lookup type  
						
						... 
						
						
						
						Thanks to cjerdonek for the suggestion. 
						
						
					 
					
						2014-02-15 17:17:58 +01:00 
						 
				 
			
				
					
						
							
							
								Grzegorz Nosek 
							
						 
					 
					
						
						
							
						
						79558c787e 
					 
					
						
						
							
							Fixed   #18373  - improved handling of Resolver404s from views  
						
						... 
						
						
						
						When django.core.urlresolvers.resolve was called from a view, failed
and the exception was propagated and rendered by technical_404_response,
the URL mentioned on the page was the current URL instead of the URL
passed to resolve().
Fixed by using the path attribute from the Resolver404 exception instead
of request.path_info. Also cleaned up the exceptions to use standard
named parameters instead of stuffing a dict in args[0] 
						
						
					 
					
						2014-02-15 15:56:04 +01:00 
						 
				 
			
				
					
						
							
							
								Albert Wang 
							
						 
					 
					
						
						
							
						
						8bbdcc76e4 
					 
					
						
						
							
							Fixed   #19299  -- Fixed Nullification of Foreign Keys To CharFields  
						
						... 
						
						
						
						Thanks tunixman for the report and Baptiste Mispelon and
Shai Berger for reviews. 
						
						
					 
					
						2014-02-15 09:47:32 -05:00 
						 
				 
			
				
					
						
							
							
								Rodolfo Carvalho 
							
						 
					 
					
						
						
							
						
						4d4e0ea461 
					 
					
						
						
							
							Fixed two typos.  
						
						
						
						
					 
					
						2014-02-15 15:16:16 +01:00 
						 
				 
			
				
					
						
							
							
								Rodolfo Carvalho 
							
						 
					 
					
						
						
							
						
						fd4d8f0f52 
					 
					
						
						
							
							Fixed typo in comment.  
						
						
						
						
					 
					
						2014-02-15 15:14:58 +01:00 
						 
				 
			
				
					
						
							
							
								Aaron France 
							
						 
					 
					
						
						
							
						
						23b781cc3d 
					 
					
						
						
							
							Fixed   #22018  -- Fixed checks for ModelAdmin.fields not handling sub-lists.  
						
						... 
						
						
						
						Flatten a level of sublists before checking for duplicate fields.
When given sublists such as:
```python
class FooAdmin(admin.ModelAdmin):
    fields = ('one', ('one', 'two'))
```
The previous code did not correctly detect the duplicated 'one' field.
Thanks to jwa for the report. 
						
						
					 
					
						2014-02-15 15:01:44 +01:00 
						 
				 
			
				
					
						
							
							
								Rodolfo Carvalho 
							
						 
					 
					
						
						
							
						
						2ebccebf06 
					 
					
						
						
							
							Fixed typo in test docstring.  
						
						
						
						
					 
					
						2014-02-15 14:19:33 +01:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						8251438cb8 
					 
					
						
						
							
							Moved relative URL handling added in refs  #21177  to a better place.  
						
						... 
						
						
						
						Thanks apollo13: "reverse() shouldn't know about absolute/relative paths." 
						
						
					 
					
						2014-02-15 07:54:35 -05:00 
						 
				 
			
				
					
						
							
							
								Rodolfo Carvalho 
							
						 
					 
					
						
						
							
						
						be6d1f39e8 
					 
					
						
						
							
							Fixed typo in docstring.  
						
						
						
						
					 
					
						2014-02-15 13:35:41 +01:00 
						 
				 
			
				
					
						
							
							
								Florian Apolloner 
							
						 
					 
					
						
						
							
						
						9d95dd08e5 
					 
					
						
						
							
							Merge pull request  #2281  from rhcarvalho/ticket_22053  
						
						... 
						
						
						
						Change analyse (British) to analyze (American). 
						
						
					 
					
						2014-02-15 13:05:27 +01:00 
						 
				 
			
				
					
						
							
							
								Michal Prusek 
							
						 
					 
					
						
						
							
						
						00da02cbfd 
					 
					
						
						
							
							Fixed   #22052  -- Corrected a misspelling of ellipsoid  
						
						
						
						
					 
					
						2014-02-15 13:02:16 +01:00 
						 
				 
			
				
					
						
							
							
								Rodolfo Carvalho 
							
						 
					 
					
						
						
							
						
						3d898b0e12 
					 
					
						
						
							
							Change analyse (British) to analyze (American).  
						
						
						
						
					 
					
						2014-02-15 13:00:56 +01:00 
						 
				 
			
				
					
						
							
							
								djendrju 
							
						 
					 
					
						
						
							
						
						4ac4c98cbd 
					 
					
						
						
							
							Fixed   #22049  -- Corrected a misspelling of dimensional  
						
						
						
						
					 
					
						2014-02-15 12:08:01 +01:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						865392c478 
					 
					
						
						
							
							Added 1.6.3 release note for refs  #21566 .  
						
						
						
						
					 
					
						2014-02-14 21:04:44 -05:00 
						 
				 
			
				
					
						
							
							
								Anton Baklanov 
							
						 
					 
					
						
						
							
						
						0bd92d68ad 
					 
					
						
						
							
							Fixed   #22035  -- reordered migration operations  
						
						... 
						
						
						
						Now AddField actions appear in operations list before AlterUniqueTogether
actions.
Thanks to SmileyChris for the report. 
						
						
					 
					
						2014-02-14 20:00:39 -05:00 
						 
				 
			
				
					
						
							
							
								Klemens Mantzos 
							
						 
					 
					
						
						
							
						
						f683cb90be 
					 
					
						
						
							
							Fixed   #21924  -- Added the ability to specify a reverse order for admin_order_field.  
						
						... 
						
						
						
						Thanks Klemens Mantzos for the report and initial patch. 
						
						
					 
					
						2014-02-14 19:53:44 -05:00 
						 
				 
			
				
					
						
							
							
								Lukasz Balcerzak 
							
						 
					 
					
						
						
							
						
						0242134d32 
					 
					
						
						
							
							Fixed   #17942  -- Added a JsonResponse class to more easily create JSON encoded responses.  
						
						... 
						
						
						
						Thanks leahculver for the suggestion and Erik Romijn,
Simon Charette, and Marc Tamlyn for the reviews. 
						
						
					 
					
						2014-02-14 18:25:19 -05:00 
						 
				 
			
				
					
						
							
							
								Antoine Catton 
							
						 
					 
					
						
						
							
						
						e3d0790bd0 
					 
					
						
						
							
							Fixed   #21177  -- Made resolve_url support relative URLs.  
						
						... 
						
						
						
						This fixes redirecting to relative URLs with django.shortcuts.redirect. 
						
						
					 
					
						2014-02-14 17:58:03 -05:00 
						 
				 
			
				
					
						
							
							
								Alasdair Nicol 
							
						 
					 
					
						
						
							
						
						f3805f5c52 
					 
					
						
						
							
							Added missing snippet to show filename in docs  
						
						
						
						
					 
					
						2014-02-14 12:45:35 +00:00 
						 
				 
			
				
					
						
							
							
								Loic Bistuer 
							
						 
					 
					
						
						
							
						
						2e4200b5c7 
					 
					
						
						
							
							Fixed   #21654  -- Documented a use-case for Form.errors.as_data().  
						
						... 
						
						
						
						Thanks selwin for the suggestion. 
						
						
					 
					
						2014-02-14 06:52:50 -05:00 
						 
				 
			
				
					
						
							
							
								Simon Meers 
							
						 
					 
					
						
						
							
						
						007c5cd367 
					 
					
						
						
							
							Updated docs that misreported django.apps.apps.ready as being a method.  
						
						
						
						
					 
					
						2014-02-14 12:50:27 +11:00 
						 
				 
			
				
					
						
							
							
								Bas Peschier 
							
						 
					 
					
						
						
							
						
						83a3add4be 
					 
					
						
						
							
							Removed _actions_icnt declaration from local scope in admin JS.  
						
						... 
						
						
						
						Commit 4523fcd 
						
						
					 
					
						2014-02-13 14:30:18 -05:00 
						 
				 
			
				
					
						
							
							
								Baptiste Mispelon 
							
						 
					 
					
						
						
							
						
						6873eeeefb 
					 
					
						
						
							
							Fixed   #22030  -- Don't assume that all fields have a swappable_setting attribute.  
						
						
						
						
					 
					
						2014-02-13 17:43:21 +01:00 
						 
				 
			
				
					
						
							
							
								Florian Apolloner 
							
						 
					 
					
						
						
							
						
						474eeccb52 
					 
					
						
						
							
							Fixed a typo (I guess).  
						
						
						
						
					 
					
						2014-02-13 17:36:53 +01:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						e86aa83dc3 
					 
					
						
						
							
							Fixed a link in the 1.7 release notes.  
						
						
						
						
					 
					
						2014-02-13 10:32:50 -05:00 
						 
				 
			
				
					
						
							
							
								Jeremy 
							
						 
					 
					
						
						
							
						
						f94f466cd3 
					 
					
						
						
							
							Fixed   #19496  -- Added truncatechars_html filter.  
						
						... 
						
						
						
						Thanks esevece for the suggestion and  Nick Sandford and Martin Warne
for the inital work on the patch. 
						
						
					 
					
						2014-02-13 10:27:27 -05:00 
						 
				 
			
				
					
						
							
							
								Adam Avramov 
							
						 
					 
					
						
						
							
						
						390001ce52 
					 
					
						
						
							
							Fixed   #21064  -- Refactored common logic in ModelAdmin.add_view and change_view.  
						
						
						
						
					 
					
						2014-02-13 07:31:18 -05:00 
						 
				 
			
				
					
						
							
							
								Alasdair Nicol 
							
						 
					 
					
						
						
							
						
						8aa1efff6d 
					 
					
						
						
							
							Fixed   #21951  -- Updated docs to use __str__ for Python 3  
						
						... 
						
						
						
						Thanks Tim Graham for the report and recommendations 
						
						
					 
					
						2014-02-13 07:12:40 -05:00 
						 
				 
			
				
					
						
							
							
								Baptiste Mispelon 
							
						 
					 
					
						
						
							
						
						c3434fed5b 
					 
					
						
						
							
							Removed test for migration check forgotten in  7e941ba67c.  
						
						
						
						
					 
					
						2014-02-13 09:31:39 +01:00 
						 
				 
			
				
					
						
							
							
								Andrew Godwin 
							
						 
					 
					
						
						
							
						
						f0f1ba75b0 
					 
					
						
						
							
							Fixed   #21856 : Don't crash runserver when DATABASES = {}  
						
						
						
						
					 
					
						2014-02-12 19:09:43 +00:00 
						 
				 
			
				
					
						
							
							
								Andrew Godwin 
							
						 
					 
					
						
						
							
						
						7e941ba67c 
					 
					
						
						
							
							Reverting unapplied migrations check away from being a system-level check.  
						
						... 
						
						
						
						This reverts commit 0ac13ecceb 
						
						
					 
					
						2014-02-12 18:55:20 +00:00 
						 
				 
			
				
					
						
							
							
								Andrew Godwin 
							
						 
					 
					
						
						
							
						
						dbe82e74f2 
					 
					
						
						
							
							Add reference documentation for operations and stubs for schemaeditor.  
						
						
						
						
					 
					
						2014-02-12 18:53:35 +00:00 
						 
				 
			
				
					
						
							
							
								Andrew Godwin 
							
						 
					 
					
						
						
							
						
						bad9456b9c 
					 
					
						
						
							
							Fix my slightly hasty autodetector changes  
						
						
						
						
					 
					
						2014-02-12 17:22:50 +00:00 
						 
				 
			
				
					
						
							
							
								Andrew Godwin 
							
						 
					 
					
						
						
							
						
						80bbe2265d 
					 
					
						
						
							
							Remove redunant code from RunPython operation  
						
						
						
						
					 
					
						2014-02-12 17:21:25 +00:00 
						 
				 
			
				
					
						
							
							
								Andrew Godwin 
							
						 
					 
					
						
						
							
						
						b333de0f5d 
					 
					
						
						
							
							Add --empty option to makemigrations  
						
						
						
						
					 
					
						2014-02-12 17:16:40 +00:00 
						 
				 
			
				
					
						
							
							
								Loic Bistuer 
							
						 
					 
					
						
						
							
						
						7e27885c6e 
					 
					
						
						
							
							Reworked the detection of local storages for the collectstatic command.  
						
						... 
						
						
						
						Before 4befb30#21581 . 
						
						
					 
					
						2014-02-12 11:00:01 -05:00 
						 
				 
			
				
					
						
							
							
								Eli Bendersky 
							
						 
					 
					
						
						
							
						
						73f51e4113 
					 
					
						
						
							
							Fixed   #22025  -- Listing app followed by app.Model in dumpdata command  
						
						... 
						
						
						
						When invoked as follows:
  $ python manage.py dumpdata blogapp blogapp.Tag
Django would throw a TypeError. This commit fixes the problem and provides
a test. 
						
						
					 
					
						2014-02-12 15:34:26 +01:00 
						 
				 
			
				
					
						
							
							
								Claude Paroz 
							
						 
					 
					
						
						
							
						
						e0381cdf2e 
					 
					
						
						
							
							Fixed   #22017  -- Prevented RuntimeError on Python 3  
						
						... 
						
						
						
						Refs #21049 . Thanks quinox for the report. 
						
						
					 
					
						2014-02-12 10:26:08 +01:00 
						 
				 
			
				
					
						
							
							
								Christopher Adams 
							
						 
					 
					
						
						
							
						
						eefc88feef 
					 
					
						
						
							
							Fixed   #2445  -- Allowed limit_choices_to attribute to be a callable.  
						
						... 
						
						
						
						ForeignKey or ManyToManyField attribute ``limit_choices_to`` can now
be a callable that returns either a ``Q`` object or a dict.
Thanks michael at actrix.gen.nz for the original suggestion. 
						
						
					 
					
						2014-02-11 14:05:12 -05:00 
						 
				 
			
				
					
						
							
							
								Florian Apolloner 
							
						 
					 
					
						
						
							
						
						a718fcf201 
					 
					
						
						
							
							Reordered INSTALLED_APPS in default template, refs  #22005  
						
						
						
						
					 
					
						2014-02-11 09:01:48 +01:00 
						 
				 
			
				
					
						
							
							
								Claude Paroz 
							
						 
					 
					
						
						
							
						
						fb1e3435a4 
					 
					
						
						
							
							Fixed   #21996  -- Used proper encoding for GeoIP content  
						
						... 
						
						
						
						Thanks Florent Messa for the report. 
						
						
					 
					
						2014-02-10 16:09:04 +01:00