Ramiro Morales 
							
						 
					 
					
						
						
							
						
						f3a0ecc9ee 
					 
					
						
						
							
							Changed (again) technique to get version IDs shown in docs from source code.  
						
						... 
						
						
						
						Hopefully it will fix the problem with the documentation building server
that caused a wrong Django version to be reported in the HTML zipball
docs edition.
Follow-up to commits 373df560b98ef6 
						
						
					 
					
						2012-11-25 11:58:06 -03:00 
						 
				 
			
				
					
						
							
							
								Aymeric Augustin 
							
						 
					 
					
						
						
							
						
						d266919584 
					 
					
						
						
							
							Fixed   #19280  -- Raised an explicit exception for the old {% url %} syntax.  
						
						
						
						
					 
					
						2012-11-24 22:10:51 +01:00 
						 
				 
			
				
					
						
							
							
								Claude Paroz 
							
						 
					 
					
						
						
							
						
						44815bad6b 
					 
					
						
						
							
							Removed obsolete contrib.comments upgrade guide  
						
						... 
						
						
						
						The old comment system was pre-1.0. 
						
						
					 
					
						2012-11-24 18:10:51 +01:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						fdb5c98d7e 
					 
					
						
						
							
							Fixed   #19218  -- Added documentation note on limitations of signals with custom User models.  
						
						... 
						
						
						
						Thanks to kunitoki@gmail.com  for the report. 
						
						
					 
					
						2012-11-24 13:53:44 +08:00 
						 
				 
			
				
					
						
							
							
								Aymeric Augustin 
							
						 
					 
					
						
						
							
						
						5c81e9de0f 
					 
					
						
						
							
							Negligible style fix in docs.  
						
						
						
						
					 
					
						2012-11-23 20:40:42 +01:00 
						 
				 
			
				
					
						
							
							
								Anssi Kääriäinen 
							
						 
					 
					
						
						
							
						
						90b86291d0 
					 
					
						
						
							
							Fixed   #18375  -- Removed dict-ordering dependency for F-expressions  
						
						... 
						
						
						
						F() expressions reuse joins like any lookup in a .filter() call -
reuse multijoins generated in the same .filter() call else generate
new joins. Also, lookups can now reuse joins generated by F().
This change is backwards incompatible, but it is required to prevent
dict randomization from generating different queries depending on
.filter() kwarg ordering. The new way is also more consistent in how
joins are reused. 
						
						
					 
					
						2012-11-23 19:53:04 +02:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						9d4baf80c6 
					 
					
						
						
							
							Merge pull request  #549  from WoLpH/master  
						
						... 
						
						
						
						Changed an if statement in the docs to a slightly cleaner variant. 
						
						
					 
					
						2012-11-23 04:12:54 -08:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						63e6cd1bb3 
					 
					
						
						
							
							Fixed   #19348  - Clarified the units of filesizeformat.  
						
						... 
						
						
						
						Thanks george_edison for the report and Claude Paroz for the patch. 
						
						
					 
					
						2012-11-23 07:00:08 -05:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						c13912ac7f 
					 
					
						
						
							
							Fixed   #19346  - Typo in docs/ref/contrib/gis/install/index.txt  
						
						
						
						
					 
					
						2012-11-22 18:01:20 -05:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						e94f8babc2 
					 
					
						
						
							
							Spell checked 1.5 alpha release notes  
						
						
						
						
					 
					
						2012-11-22 17:16:04 -05:00 
						 
				 
			
				
					
						
							
							
								WoLpH 
							
						 
					 
					
						
						
							
						
						eabb44417c 
					 
					
						
						
							
							changed if statement to a slightly cleaner/less confusing variant  
						
						
						
						
					 
					
						2012-11-22 22:29:39 +01:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						0e3690d230 
					 
					
						
						
							
							Fixed   #18974  - Warned against using models.permalink  
						
						... 
						
						
						
						Thanks dstufft for the draft patch. 
						
						
					 
					
						2012-11-22 16:08:51 -05:00 
						 
				 
			
				
					
						
							
							
								Aymeric Augustin 
							
						 
					 
					
						
						
							
						
						a026e480da 
					 
					
						
						
							
							Fixed   #16039  -- Made post_syncdb handlers multi-db aware.  
						
						... 
						
						
						
						Also reverted 8fb7a90026#17055 . 
						
						
					 
					
						2012-11-22 20:53:59 +01:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						71a3162a70 
					 
					
						
						
							
							Documented behavior of get_or_create when multiple objects are returned.  
						
						... 
						
						
						
						Thanks Matt Lauber for the patch. 
						
						
					 
					
						2012-11-22 10:36:18 -05:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						7b2d95eb30 
					 
					
						
						
							
							Clarified usage of as_view kwargs for setting arguments on class based views  
						
						... 
						
						
						
						Thanks Dave McLain for the patch. 
						
						
					 
					
						2012-11-22 09:07:21 -05:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						3587991ba8 
					 
					
						
						
							
							Fixed   #19317  - Added an image for warning blocks in the docs  
						
						... 
						
						
						
						Thanks tome for the suggestion and patch. 
						
						
					 
					
						2012-11-22 06:34:15 -05:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						3fb83729b9 
					 
					
						
						
							
							Merge branch 'ticket_19325' of  https://github.com/hannesstruss/django  into hannesstruss-ticket_19325  
						
						
						
						
					 
					
						2012-11-22 10:05:08 +01:00 
						 
				 
			
				
					
						
							
							
								Preston Holmes 
							
						 
					 
					
						
						
							
						
						d80d05fc67 
					 
					
						
						
							
							Added examples of using startproject/app with URLs  
						
						... 
						
						
						
						thanks to Brent O'Connor for the idea and intial docs 
						
						
					 
					
						2012-11-21 22:06:59 -08:00 
						 
				 
			
				
					
						
							
							
								shepdl 
							
						 
					 
					
						
						
							
						
						8e5573e99a 
					 
					
						
						
							
							Fixed   #19243  - Edited GeoDjango Tutorial for consistency and style.  
						
						
						
						
					 
					
						2012-11-21 19:31:17 -05:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						e2b1808196 
					 
					
						
						
							
							Fixed   #19335  - Typo and cleanups in docs/topics/class-based-views/index.txt  
						
						
						
						
					 
					
						2012-11-21 19:06:17 -05:00 
						 
				 
			
				
					
						
							
							
								Chris Beaven 
							
						 
					 
					
						
						
							
						
						48e8b5e944 
					 
					
						
						
							
							Add orphans support to MultipleObjectMixin  
						
						... 
						
						
						
						Fixes  #7005  
					
						2012-11-21 16:50:23 +13:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
							
						
						a32f30c79c 
					 
					
						
						
							
							Corrected docs about default value of MESSAGE_STORAGE  
						
						
						
						
					 
					
						2012-11-20 23:00:20 +00:00 
						 
				 
			
				
					
						
							
							
								Hannes Struss 
							
						 
					 
					
						
						
							
						
						f9891f2087 
					 
					
						
						
							
							Fixed   #19325  - Made email backend of AdminEmailHandler configurable  
						
						
						
						
					 
					
						2012-11-20 11:23:12 +01:00 
						 
				 
			
				
					
						
							
							
								Preston Holmes 
							
						 
					 
					
						
						
							
						
						edf7ad36fa 
					 
					
						
						
							
							Fixed   #18658  -- Improved ModelAdmin.message_user API  
						
						... 
						
						
						
						Thanks to Lowe Thiderman for the patch and tests 
						
						
					 
					
						2012-11-19 16:03:09 -08:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						8b659e439b 
					 
					
						
						
							
							Merge pull request  #536  from 1st/patch-1  
						
						... 
						
						
						
						Fixed typo in docs/ref/models/querysets.txt 
						
						
					 
					
						2012-11-19 15:45:53 -08:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						c559c3c3b9 
					 
					
						
						
							
							Merge pull request  #537  from 1st/patch-2  
						
						... 
						
						
						
						Fixed typo in docs/releases/1.5.txt 
						
						
					 
					
						2012-11-19 15:44:16 -08:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						1f1f60d12f 
					 
					
						
						
							
							Fixed   #19306  - Improved syndication example.  
						
						... 
						
						
						
						Thanks brycenesbitt for the report. 
						
						
					 
					
						2012-11-18 18:07:38 -05:00 
						 
				 
			
				
					
						
							
							
								Anton Danilchenko 
							
						 
					 
					
						
						
							
						
						3bdb2ca560 
					 
					
						
						
							
							Update docs/releases/1.5.txt  
						
						... 
						
						
						
						Deleted word that used second time 
						
						
					 
					
						2012-11-18 21:08:45 +02:00 
						 
				 
			
				
					
						
							
							
								Anton Danilchenko 
							
						 
					 
					
						
						
							
						
						76859e6eab 
					 
					
						
						
							
							Update docs/ref/models/querysets.txt  
						
						... 
						
						
						
						Fix typo: replace "can can" to "can" 
						
						
					 
					
						2012-11-18 18:46:39 +02:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						2564e31014 
					 
					
						
						
							
							Fixed   #19308  - Clarified stringformat filter example  
						
						... 
						
						
						
						Thanks Shabda Raaj. 
						
						
					 
					
						2012-11-17 19:29:31 -05:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						04775b4598 
					 
					
						
						
							
							Fixed   #13997  - Added an example of constructing a MultiWidget and documented the value_from_datadict method.  
						
						
						
						
					 
					
						2012-11-17 17:54:09 -05:00 
						 
				 
			
				
					
						
							
							
								Aymeric Augustin 
							
						 
					 
					
						
						
							
						
						ccb2b574e8 
					 
					
						
						
							
							Fixed   #19315  -- Improved markup in admin FAQ.  
						
						... 
						
						
						
						Thanks ClaesBas. 
						
						
					 
					
						2012-11-17 23:25:52 +01:00 
						 
				 
			
				
					
						
							
							
								Aymeric Augustin 
							
						 
					 
					
						
						
							
						
						4585e12318 
					 
					
						
						
							
							Fix typo in file storage docs.  
						
						
						
						
					 
					
						2012-11-17 23:25:37 +01:00 
						 
				 
			
				
					
						
							
							
								Aymeric Augustin 
							
						 
					 
					
						
						
							
						
						9b755a298a 
					 
					
						
						
							
							Fixed   #19291  -- Completed deprecation of ADMIN_MEDIA_PREFIX.  
						
						
						
						
					 
					
						2012-11-17 22:38:19 +01:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						778b8bdcf4 
					 
					
						
						
							
							Merge pull request  #467  from tomchristie/page-kwarg  
						
						... 
						
						
						
						Add 'page_kwarg' attribute to `MultipleObjectMixin`, removing hardcoded "page". 
						
						
					 
					
						2012-11-17 12:27:01 -08:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						1520748dac 
					 
					
						
						
							
							Fixed   #2550  -- Allow the auth backends to raise the PermissionDenied exception to completely stop the authentication chain. Many thanks to namn, danielr, Dan Julius, Łukasz Rekucki, Aashu Dwivedi and umbrae for working this over the years.  
						
						
						
						
					 
					
						2012-11-17 20:24:54 +01:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						7058b595b6 
					 
					
						
						
							
							Fixed   #16779  - Added a contributing tutorial  
						
						... 
						
						
						
						Thank-you Taavi Taijala for the draft patch! 
						
						
					 
					
						2012-11-17 14:10:25 -05:00 
						 
				 
			
				
					
						
							
							
								Preston Holmes 
							
						 
					 
					
						
						
							
						
						7a38e86bde 
					 
					
						
						
							
							Fixed   #19310  -- changed method docs formatting for custom file storage docs  
						
						
						
						
					 
					
						2012-11-17 07:26:10 -08:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						ac4aa8a76c 
					 
					
						
						
							
							Documented that contrib.sites creates a default site.  
						
						... 
						
						
						
						Thanks Lorin Hochstein for the patch. 
						
						
					 
					
						2012-11-17 06:49:28 -05:00 
						 
				 
			
				
					
						
							
							
								Preston Holmes 
							
						 
					 
					
						
						
							
						
						44046e8a38 
					 
					
						
						
							
							Fixed   #18985  -- made DeprecationWarnings loud  
						
						... 
						
						
						
						Capture warnings in Python >= 2.7 and route through
console handler, which is subject to DEBUG==True
Thanks to dstufft for the idea, and claudep for initial patch 
						
						
					 
					
						2012-11-16 17:07:38 -08:00 
						 
				 
			
				
					
						
							
							
								Brandon Adams 
							
						 
					 
					
						
						
							
						
						d8ee46afff 
					 
					
						
						
							
							comment_will_be_sent can cause a 400, not a 403  
						
						... 
						
						
						
						Doc cleanup for django.contrib.comments.signals.comment_will_be_sent
If a receiver returns False, an HttpResponse with status code 400
is returned. A test case already exists confirming this behavior.
Updated docs to reflect reality. 
						
						
					 
					
						2012-11-16 10:19:54 -05:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						2dbfa66f4d 
					 
					
						
						
							
							Fixed   #19289  - Removed an out of place sentence in tutorial 2.  
						
						... 
						
						
						
						Thanks colinnkeenan for the report. 
						
						
					 
					
						2012-11-14 05:46:30 -05:00 
						 
				 
			
				
					
						
							
							
								Alex Gaynor 
							
						 
					 
					
						
						
							
						
						1e34fd3c03 
					 
					
						
						
							
							fixed a broken link in the docs  
						
						
						
						
					 
					
						2012-11-13 14:48:23 -08:00 
						 
				 
			
				
					
						
							
							
								David Cramer 
							
						 
					 
					
						
						
							
						
						54fbe6ce5f 
					 
					
						
						
							
							Correct link to Sentry  
						
						... 
						
						
						
						django-sentry is no longer maintained, and sentry is the replacement. 
						
						
					 
					
						2012-11-13 13:51:50 -08:00 
						 
				 
			
				
					
						
							
							
								Aymeric Augustin 
							
						 
					 
					
						
						
							
						
						00ff69a827 
					 
					
						
						
							
							Fixed   #19283  -- Fixed typo in imports in CBV docs.  
						
						
						
						
					 
					
						2012-11-13 20:46:29 +01:00 
						 
				 
			
				
					
						
							
							
								Aymeric Augustin 
							
						 
					 
					
						
						
							
						
						e27a43cc54 
					 
					
						
						
							
							Merge pull request  #509  from pydanny/ticket_19244  
						
						... 
						
						
						
						Fixed  #19244  -- Provided examples for some built-in templatetags and filters 
					
						2012-11-13 04:42:53 -08:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						a72b8a2247 
					 
					
						
						
							
							Fixed   #19260  - Added a comment to tutorial 1.  
						
						... 
						
						
						
						Thanks terwey for the suggestion. 
						
						
					 
					
						2012-11-13 05:45:08 -05:00 
						 
				 
			
				
					
						
							
							
								Daniel Greenfeld 
							
						 
					 
					
						
						
							
						
						3f65f751a0 
					 
					
						
						
							
							Converted <paragraph> to <p> per #aaugustin's request  
						
						
						
						
					 
					
						2012-11-12 16:12:27 -08:00 
						 
				 
			
				
					
						
							
							
								Nicolas Ippolito 
							
						 
					 
					
						
						
							
						
						17b14d4819 
					 
					
						
						
							
							Typo in comments doc  
						
						
						
						
					 
					
						2012-11-12 22:15:41 +01:00 
						 
				 
			
				
					
						
							
							
								Aymeric Augustin 
							
						 
					 
					
						
						
							
						
						4c5cea7073 
					 
					
						
						
							
							Merge pull request  #218  from mgrouchy/ticket_18582  
						
						... 
						
						
						
						Fixed  #18582  -- Added a no-op close to BaseCache 
					
						2012-11-11 07:18:45 -08:00