Chris Beaven 
							
						 
					 
					
						
						
							
						
						48e8b5e944 
					 
					
						
						
							
							Add orphans support to MultipleObjectMixin  
						
						... 
						
						
						
						Fixes  #7005  
					
						2012-11-21 16:50:23 +13: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 
						 
				 
			
				
					
						
							
							
								Preston Holmes 
							
						 
					 
					
						
						
							
						
						6bd61194d4 
					 
					
						
						
							
							Fixed py3 compatibility for  5a00a57aa5 
						
						
						
						
					 
					
						2012-11-04 23:38:41 -08:00 
						 
				 
			
				
					
						
							
							
								Preston Holmes 
							
						 
					 
					
						
						
							
						
						5a00a57aa5 
					 
					
						
						
							
							Fixed   #19240  -- include pagination error details in ListView 404  
						
						... 
						
						
						
						Thanks to seawolf for the patch 
						
						
					 
					
						2012-11-04 15:52:00 -08:00 
						 
				 
			
				
					
						
							
							
								Tom Christie 
							
						 
					 
					
						
						
							
						
						f824a95177 
					 
					
						
						
							
							Test for ListView.page_kwarg  
						
						
						
						
					 
					
						2012-10-25 13:19:53 +01:00 
						 
				 
			
				
					
						
							
							
								Marc Tamlyn 
							
						 
					 
					
						
						
							
						
						58683e9c82 
					 
					
						
						
							
							Fixed   #16744  -- Class based view should have the view object in the context  
						
						... 
						
						
						
						Updated the most recent patch from @claudep to apply again and updated
the documentation location. 
						
						
					 
					
						2012-08-18 15:07:21 +01:00 
						 
				 
			
				
					
						
							
							
								Aymeric Augustin 
							
						 
					 
					
						
						
							
						
						009e237cf0 
					 
					
						
						
							
							Fixed   #17535  -- Optimized list generic views.  
						
						... 
						
						
						
						When allow_empty is False, prevented the view from loading
the entire queryset in memory when pagination is enabled. 
						
						
					 
					
						2012-05-17 13:34:53 +02:00 
						 
				 
			
				
					
						
							
							
								Alex Gaynor 
							
						 
					 
					
						
						
							
						
						8c0eefd066 
					 
					
						
						
							
							Convert the remainder of the relative imports in the tests to be absolute imports.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@16981  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-10-13 21:34:56 +00:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						24f4764a48 
					 
					
						
						
							
							Fixed   #16225  -- Removed unused imports. Many thanks to Aymeric Augustin for 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 
						
						
					 
					
						2011-07-13 09:35:51 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						87a100b642 
					 
					
						
						
							
							Fixed   #15575  -- Corrected handling of pagination in generic views to match documentation and historical behavior. Thanks to Ivan Virabyan for the report and patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@15820  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-03-15 08:24:31 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						06b22963ea 
					 
					
						
						
							
							Fixed   #15272  -- Altered generic views to use the guaranteed untranslated object_name, rather than the possibly translated verbose_name(_plural) for default context objects. Thanks to szczav for the report and patch.  
						
						... 
						
						
						
						This is BACKWARDS INCOMPATIBLE for anyone relying on the default context object names for class-based Detail and List views. To migrate, either update your templates to use the new default names, or add a context_object_name argument to your generic views.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15531  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-02-14 13:04:51 +00:00 
						 
				 
			
				
					
						
							
							
								Andrew Godwin 
							
						 
					 
					
						
						
							
						
						32a344dfe2 
					 
					
						
						
							
							Fixed inconsistency in ListView's pagination (short datasets should also trigger a pagination, but with a single possible page)  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@15155  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-01-08 13:15:44 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						a00e8d4e42 
					 
					
						
						
							
							Fixed   #14878  -- Clarified the way verbose_name_plural is used in generic list views as a context variable. Thanks to diegueus9 for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@15133  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-01-03 13:15:58 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Beaven 
							
						 
					 
					
						
						
							
						
						ff8711a825 
					 
					
						
						
							
							Fixes   #14873  -- A paginated ListView with a List instead of queryset produces an error.  
						
						... 
						
						
						
						Additional minor change in functionality: the page is now not considered paginated if the objects do not span multiple pages according to the paginator. This will only affect views with a custom paginator method which uses orphans.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14864  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2010-12-09 02:34:14 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						ee48da2405 
					 
					
						
						
							
							Fixed   #14773  -- Modified MultipleObjectMixin to allow for custom paginators. Thanks to piquadrat for the report and initial patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@14828  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2010-12-05 04:32:36 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						baa1e90d4c 
					 
					
						
						
							
							Fixed   #14504  -- Corrected the way object_list is used in ListView to avoid overwriting context. Includes improved usage of unittest2 assertions. Thanks to Łukasz Rekucki for the final patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@14372  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2010-10-28 02:58:28 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						0fcb094557 
					 
					
						
						
							
							Fixed   #6735  -- Added class-based views.  
						
						... 
						
						
						
						This patch is the result of the work of many people, over many years.
To try and thank individuals would inevitably lead to many people
being left out or forgotten -- so rather than try to give a list that
will inevitably be incomplete, I'd like to thank *everybody* who
contributed in any way, big or small, with coding, testing, feedback
and/or documentation over the multi-year process of getting this into
trunk.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14254  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2010-10-18 13:34:47 +00:00