Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							1aa0d1b4a6 
							
						 
					 
					
						
						
							
							Fixed   #10490  -- Small wording correction in the docs. Thanks, matehat.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10529  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-04-12 02:00:36 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							da17a314ca 
							
						 
					 
					
						
						
							
							Fixed a silly typo in my bio. How embarrassing.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10490  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-04-10 17:09:09 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							ec4cf19700 
							
						 
					 
					
						
						
							
							Updated my bio.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10484  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-04-10 16:33:52 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							c0ad626dca 
							
						 
					 
					
						
						
							
							Fixed   #10647 : intermediary tables between two umanaged models are no longer created.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10455  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-04-09 15:03:31 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							f8adf99cdb 
							
						 
					 
					
						
						
							
							Fixed   #9268 : pass the "next" param through in the comment preview/post view. Also updated the docs to make this a bit clearer.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10418  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-04-07 19:28:13 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							37c21ef05d 
							
						 
					 
					
						
						
							
							Fixed   #10714  - made mod_wsgi recommendation consistent across deployment documentation  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10413  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-04-07 00:01:49 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							7f7606070b 
							
						 
					 
					
						
						
							
							Fixed a documentation typo  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10412  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-04-06 23:45:56 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							bb182bea1c 
							
						 
					 
					
						
						
							
							Removed duplicate modwsgi navigation link  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10411  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-04-06 23:39:26 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							07465b635d 
							
						 
					 
					
						
						
							
							Fixed a small error in the docs that I missed from [10408].  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10409  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-04-06 20:28:55 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							bb15cee58a 
							
						 
					 
					
						
						
							
							Made a bunch of improvements to admin actions. Be warned: this includes one minor but BACKWARDS-INCOMPATIBLE change.  
						
						... 
						
						
						
						These changes are:
    * BACKWARDS-INCOMPATIBLE CHANGE: action functions and action methods now share the same signature: `(modeladmin, request, queryset)`. Actions defined as methods stay the same, but if you've defined an action as a standalone function you'll now need to add that first `modeladmin` argument.
    * The delete selected action is now a standalone function registered site-wide; this makes disabling it easy.
    * Fixed  #10596 : there are now official, documented `AdminSite` APIs for dealing with actions, including a method to disable global actions. You can still re-enable globally-disabled actions on a case-by-case basis.
    * Fixed  #10595 : you can now disable actions for a particular `ModelAdmin` by setting `actions` to `None`.
    * Fixed  #10734 : actions are now sorted (by name).
    * Fixed  #10618 : the action is now taken from the form whose "submit" button you clicked, not arbitrarily the last form on the page.
    * All of the above is documented and tested.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10408  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-04-06 20:23:33 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							c6c25adf6d 
							
						 
					 
					
						
						
							
							Fixed a whole bunch of small docs typos, errors, and ommissions.  
						
						... 
						
						
						
						Fixes  #8358 , #8396 , #8724 , #9043 , #9128 , #9247 , #9267 , #9267 , #9375 , #9409 , #9414 , #9416 , #9446 , #9454 , #9464 , #9503 , #9518 , #9533 , #9657 , #9658 , #9683 , #9733 , #9771 , #9835 , #9836 , #9837 , #9897 , #9906 , #9912 , #9945 , #9986 , #9992 , #10055 , #10084 , #10091 , #10145 , #10245 , #10257 , #10309 , #10358 , #10359 , #10424 , #10426 , #10508 , #10531 , #10551 , #10635 , #10637 , #10656 , #10658 , #10690 , #10699 , #19528 .
Thanks to all the respective authors of those tickets.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10371  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
					
						2009-04-03 18:30:54 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							f1c64816bb 
							
						 
					 
					
						
						
							
							Fixed   #10693 : updated  params in the docs.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10324  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-04-01 15:32:00 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							a2dec37c41 
							
						 
					 
					
						
						
							
							Fixed   #9908 : allow individual app index templates in the admin. Thanks, arne.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10317  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-04-01 14:13:59 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							1f74e3382f 
							
						 
					 
					
						
						
							
							Fixed   #10031 : updated SQLite database docs to more strongly indicate the problems with versions before 3.3.6. Thanks, ramiro.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10311  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-04-01 01:36:44 +00:00 
						 
				 
			
				
					
						
							
							
								Joseph Kocherhans 
							
						 
					 
					
						
						
						
						
							
						
						
							efd7141d70 
							
						 
					 
					
						
						
							
							Fixed   #9452 . InlineModelAdmin docs now mention the right default for 'form'.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10309  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-04-01 01:29:30 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							4a44498dcf 
							
						 
					 
					
						
						
							
							Fixed a silly typo in databases ref. Thanks, Alex.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10304  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-31 23:46:37 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							516051bfd2 
							
						 
					 
					
						
						
							
							A whole lotta documentation fixes:  Fixes   #8704 ,  #8826 ,  #8980 ,  #9243 ,  #9343 ,  #9529 ,  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10303  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-31 23:34:03 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							98f5f68463 
							
						 
					 
					
						
						
							
							Reformated the source of the doc index to be more friendly to human readers.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10281  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-31 19:43:32 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							58298fae71 
							
						 
					 
					
						
						
							
							Fixed   #9970 : added mod_wsgi docs. Thanks, Alex Gaynor.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10280  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-31 19:34:25 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							83c6f8d4e2 
							
						 
					 
					
						
						
							
							Fixed   #9012 : Changed inappropriate title of models documentation.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10276  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-31 18:14:12 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							131de1cf2b 
							
						 
					 
					
						
						
							
							Fixed   #10367 : Added note to generic-relation docs explaining when it's necessary to pass in field names to create a reverse relation.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10273  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-31 17:14:10 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							33e87318c0 
							
						 
					 
					
						
						
							
							Fixed   #10306 : Corrected form action in auth login example.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10269  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-31 17:00:59 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							86d772bb2a 
							
						 
					 
					
						
						
							
							Fixed   #10120  -- Added a return to a doc example, patch from andrews.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10265  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-31 16:49:54 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							e87e7436e2 
							
						 
					 
					
						
						
							
							Fixed   #10266  -- Clarified restart of shell in tutorial, patch from mboersma.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10263  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-31 16:45:41 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							d8bffb3969 
							
						 
					 
					
						
						
							
							Fixed   #10375  -- Added documentation about the default format strings used for the date and time filters when no format string is passed to the filter, based on patch from kgrandis.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10259  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-31 16:34:24 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							b4f5655c86 
							
						 
					 
					
						
						
							
							Fixed   #10553  -- Corrected several uses of URLconf in documentation and comments, according to the Django style guide.  Based on patch from rduffield.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10256  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-31 16:07:07 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							f2df3650d6 
							
						 
					 
					
						
						
							
							Fixed   #10575  -- Fixed wording in database docs, patch from rduffield.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10252  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-31 15:42:13 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							1eccb1c6aa 
							
						 
					 
					
						
						
							
							Fixed   #10577  -- Fixed doc typo, patch from Zoramite.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10250  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-31 15:39:32 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							4a73b603d0 
							
						 
					 
					
						
						
							
							Fixed   #10612  -- Removed duplicate word in docs, patch from adamfast.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10249  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-31 15:33:57 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							7372ea159a 
							
						 
					 
					
						
						
							
							Fixed   #10389 ,  #10501 ,  #10502 ,  #10540 ,  #10562 ,  #10563 ,  #10564 ,  #10565 ,  #10568 ,  #10569 ,  #10614 ,  #10617 ,  #10619  -- Fixed several typos as well as a couple minor issues in the docs, patches from timo, nih, bthomas, rduffield, UloPe, and sebleier@gmail.com.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10242  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-31 07:01:01 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							184ea1c91f 
							
						 
					 
					
						
						
							
							Fixed   #8847 ,  #10370 : added some missing methods to MultiValueDict after [8399]. Thanks, James Turk and rfk.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10241  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-31 06:30:07 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							5c9d54344c 
							
						 
					 
					
						
						
							
							Fixed   #9946  -- Removed redundant mention of needing to define list_display.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10237  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-30 23:30:33 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							ef933f1643 
							
						 
					 
					
						
						
							
							Fixed a few class references in the model field docs.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10207  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-30 19:54:27 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							78cbc3acfa 
							
						 
					 
					
						
						
							
							Fixed   #10076  -- Documented invalid arguments for FileField, based on patch from timo.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10204  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-30 19:31:50 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							27314a8934 
							
						 
					 
					
						
						
							
							Fixed   #9944  -- Fixed a URL in tutorial four that was changed in the "Decoupling the URLconfs" section at the end of tutorial three, patch from programmerq.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10202  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-30 19:00:33 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							1e214534e7 
							
						 
					 
					
						
						
							
							Fixed   #9914  -- Fixed field class name in models docs, patch from timo.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10200  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-30 18:40:59 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							8ed6b2b1d1 
							
						 
					 
					
						
						
							
							Fixed   #9853  -- Added information to the model date/time fields to note the Python objects used to represent them.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10198  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-30 18:30:44 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							a61c0b7949 
							
						 
					 
					
						
						
							
							Fixed some long lines and removed trailing whitespace.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10195  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-30 17:07:43 +00:00 
						 
				 
			
				
					
						
							
							
								Joseph Kocherhans 
							
						 
					 
					
						
						
						
						
							
						
						
							9face54bb7 
							
						 
					 
					
						
						
							
							Fixed   #9284 .  Fixed   #8813 . BaseModelFormSet now calls ModelForm.save().  
						
						... 
						
						
						
						This is backwards-incompatible if you were doing things to 'initial' in BaseModelFormSet.__init__, or if you relied on the internal _total_form_count or _initial_form_count attributes of BaseFormSet. Those attributes are now public methods.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10190  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-30 15:58:52 +00:00 
						 
				 
			
				
					
						
							
							
								Justin Bronn 
							
						 
					 
					
						
						
						
						
							
						
						
							1e082c3873 
							
						 
					 
					
						
						
							
							Fixed   #10653  -- Update docs regarding Jython support.  Thanks, Leo Soto for ticket & patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10188  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-30 03:32:40 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							6fa30faa79 
							
						 
					 
					
						
						
							
							Fixed   #10574  -- Documented interaction between annotations and order_by.  
						
						... 
						
						
						
						In the future, I'd like to fix this properly, but the current behavior
has the advantage of being consistent across the board (and changing it
everywhere is backwards-incompatible with documented functionality).
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10172  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-25 09:05:38 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							cce822c0f5 
							
						 
					 
					
						
						
							
							Fixed   #10329  -- Added link target for get_FOO_display, get_next_by_FOO, and get_previous_by_FOO. Thanks to rctay for the report, and timo for the patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10152  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-24 11:46:18 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							539bebab3f 
							
						 
					 
					
						
						
							
							Fixed   #10503  -- Clarified docs on the operation of the noop option to {% trans %}. Thanks to liangent for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10151  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-24 11:44:51 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							2aa8890136 
							
						 
					 
					
						
						
							
							Fixed   #10434  -- Corrected FastCGI example. Thanks to vithlani.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10150  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-24 11:43:52 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							f55aba59d0 
							
						 
					 
					
						
						
							
							Fixed   #10437  -- Corrected typo in Widget media example. Thanks to Manuel Saelices.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10149  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-24 11:42:34 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							c4eb2883bc 
							
						 
					 
					
						
						
							
							Fixed   #10510  -- Added missing versionadded marker for formfield_for_foreignkey docs. Thanks to onno.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10148  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-24 11:41:37 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							01757192e6 
							
						 
					 
					
						
						
							
							Fixed   #10570  -- Grammar fix for Manager docs. Thanks to adamv.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10147  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-24 11:40:12 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							d379ebdabb 
							
						 
					 
					
						
						
							
							Fixed   #10591  -- Corrected link to Jython in docs. Thanks to framos.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10146  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-24 11:38:53 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							af997a1625 
							
						 
					 
					
						
						
							
							Fixed   #10592  -- Corrected typo in initial-data howto. Thanks to Paul Menzel.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10145  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-24 11:37:48 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							6cd8e0f608 
							
						 
					 
					
						
						
							
							Added versionadded markers for ModelForm field ordering, added in [10062].  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10144  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-24 11:36:58 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							e5a8d9e810 
							
						 
					 
					
						
						
							
							A bunch of improvements for conditional HTTP processing.  
						
						... 
						
						
						
						Fixed some typos in the code (fixed  #10586 ). Added more tests. Made the
tests compatible with Python 2.3. Improved the documentation by putting
the good news and common use-case right up front.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10134  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-24 03:01:46 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							4246c832b6 
							
						 
					 
					
						
						
							
							Added 1.1 beta release notes.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10130  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-23 23:25:03 +00:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
						
						
							
						
						
							cdc8c61bc3 
							
						 
					 
					
						
						
							
							Made default MIDDLEWARE_CLASSES same as in project_template.  
						
						... 
						
						
						
						And updated docs, and also corrected them about middleware by removing
'XViewMiddleware'
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10129  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-23 23:20:40 +00:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
						
						
							
						
						
							20f7e51493 
							
						 
					 
					
						
						
							
							Reverted 10094 and 10095 (in favour of solution that will hopefully land for beta 2)  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10128  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-23 23:02:46 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							f22418a6be 
							
						 
					 
					
						
						
							
							Oops, added missing file from [10122].  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10123  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-23 21:22:31 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							f0560dfdb2 
							
						 
					 
					
						
						
							
							Fixed   #9282 : added a generic comment moderation toolkit. See the documentation for details.  
						
						... 
						
						
						
						This began life as (part of) James Bennett's comment-utils app, and was adapted to be part of Django by Thejaswi Puthraya and Jannis Leidel. Thanks, all!
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10122  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-23 21:07:02 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							44f3080226 
							
						 
					 
					
						
						
							
							Fixed   #10505 : added support for bulk admin actions, including a globally-available "delete selected" action. See the documentation for details.  
						
						... 
						
						
						
						This work started life as Brian Beck's "django-batchadmin." It was rewritten for inclusion in Django by Alex Gaynor, Jannis Leidel (jezdez), and Martin Mahner (bartTC). Thanks, guys!
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10121  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-23 20:22:56 +00:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
						
						
							
						
						
							4e2533436e 
							
						 
					 
					
						
						
							
							Removed erroneous changes to 1.1 alpha 1 release notes.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10120  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-23 16:37:25 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							14b160957e 
							
						 
					 
					
						
						
							
							Fixed   #8962  -- Consistently support format and input_format in the various (individual, combined, split) date and time form fields and widgets.  
						
						... 
						
						
						
						Many thanks to Tai Lee for doing all the work here.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10115  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-22 16:13:06 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							b203db6ec8 
							
						 
					 
					
						
						
							
							Fixed   #5791  -- Added early-bailout support for views (ETags and Last-modified).  
						
						... 
						
						
						
						This provides support for views that can have their ETag and/or Last-modified
values computed much more quickly than the view itself. Supports all HTTP
verbs (not just GET).
Documentation and tests need a little more fleshing out (I'm not happy with the
documentation at the moment, since it's a bit backwards), but the functionality
is correct.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10114  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-22 07:58:29 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							10923b42b3 
							
						 
					 
					
						
						
							
							Corrected syntax typos in a couple of versionadded directives.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10112  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-21 15:28:51 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							e389234201 
							
						 
					 
					
						
						
							
							Added a versionadded directive to new redirect shortcut (refs  #10194 ).  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10111  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-21 15:26:56 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							231a7e0419 
							
						 
					 
					
						
						
							
							Fixed   #9958 : split the CommentForm into a set of smaller forms. This for better encapsulation, but also so that it's easier for subclasses to get at the pieces they might need. Thanks to Thejaswi Puthraya.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10110  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-21 13:45:31 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							d7e8127524 
							
						 
					 
					
						
						
							
							Fixed   #10194 : added django.shortcuts.redirect, a do-what-I-mean redirect shortcut. See the docs at topics/http/shortcuts for details.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10108  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-21 13:09:13 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							4eadcf45d4 
							
						 
					 
					
						
						
							
							Added some further clarification to the docs for Meta.managed.  
						
						... 
						
						
						
						Not sure if any of these are noticed as omissions yet; it's too new.
Primarily trying to head off questions in the future.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10107  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-20 23:15:27 +00:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
						
						
							
						
						
							4e7a4eda3d 
							
						 
					 
					
						
						
							
							Updated all refs to default middleware in docs.  
						
						... 
						
						
						
						(adding CSRF, removing XView which is no longer a default)
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10095  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-19 23:28:16 +00:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
						
						
							
						
						
							2d28724730 
							
						 
					 
					
						
						
							
							Added CSRF middleware to default settings and updated docs.  
						
						... 
						
						
						
						Updated docs to reflect the change, and the fact that using the
two separate middleware is preferred to using the combined one.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10094  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-19 23:14:20 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							729c974e64 
							
						 
					 
					
						
						
							
							Fixed   #10546  -- Fixed a docs typo noticed by carljm.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10093  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-19 22:46:49 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							29050ef999 
							
						 
					 
					
						
						
							
							Fixed   #5420  -- Added support for delayed loading of model fields.  
						
						... 
						
						
						
						In extreme cases, some fields are expensive to load from the database
(e.g. GIS fields requiring conversion, or large text fields). This
commit adds defer() and only() methods to querysets that allow the
caller to specify which fields should not be loaded unless they are
accessed.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10090  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-19 09:06:04 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							96d5d434fa 
							
						 
					 
					
						
						
							
							Added some documentation explaining "managed=False" vs. "proxy=True".  
						
						... 
						
						
						
						These features look similar, but they're not identical. They can't be merged
into one (without requiring at least two Meta parameters anyway), so we've made
them have APIs that match their natural use-cases most easily.
Anyway, the documentation explains both the details and gives some simple to
follow rules.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10089  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-19 09:04:19 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							ee2f04d79e 
							
						 
					 
					
						
						
							
							Fixed   #10482  -- Unified access to response.context when inspecting responses from the test client. Thanks to James Bennett for the design, and Julien Phalip for the patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10084  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-18 10:46:55 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							61a2708c41 
							
						 
					 
					
						
						
							
							Fixed   #10356  -- Added pure-Python inheritance for models (a.k.a proxy models).  
						
						... 
						
						
						
						Large portions of this are needed for #5420 , so I implemented it fully.
Thanks to Ryan Kelly for an initial patch to get this started.
Refs #5420 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10083  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-18 09:47:08 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							7bc0878922 
							
						 
					 
					
						
						
							
							Fixed   #8939 : added a list_editable option to ModelAdmin; fields declared list_editable may be edited, in bulk, on the changelist page. Thanks, Alex Gaynor.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10077  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-17 20:51:47 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							0597dea4d0 
							
						 
					 
					
						
						
							
							Fixed   #10507  -- Corrected formatting problem in ModelForm docs. Thanks to Paul Menzel for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10064  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-15 11:21:41 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							b994387d8d 
							
						 
					 
					
						
						
							
							Fixed   #689  -- Added a middleware and authentication backend to contrib.auth for supporting external authentication solutions.  Thanks to all who contributed to this patch, including Ian Holsman, garthk, Koen Biermans, Marc Fargas, ekarulf, and Ramiro Morales.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10063  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-15 05:54:28 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							7be4b9a4c0 
							
						 
					 
					
						
						
							
							Fixed   #8164  -- Fields on a ModelForm are now ordered in the order specified in the fields attribute of the ModelForm's Meta class. Thanks to Alex Gaynor for the patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10062  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-15 05:05:26 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							24b9c65d3f 
							
						 
					 
					
						
						
							
							Documented patterns for adding extra managers to model subclasses.  
						
						... 
						
						
						
						This seems to have been a source of confusion, so now we have some explicit
examples. Fixed  #9676 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10058  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-15 03:42:31 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							292f503845 
							
						 
					 
					
						
						
							
							Clarified and expanded documentation for Manager.use_for_related_fields.  
						
						... 
						
						
						
						This is for Manager subclasses that are default managers, but only
sometimes.  The general rule is: "don't use it." If you really need it,
read the instructions.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10057  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-15 03:42:08 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							957c721594 
							
						 
					 
					
						
						
							
							Made a bunch of edits to docs/topics/cache.txt, mostly based on stuff from the Django Book  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10055  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-14 22:51:05 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							638dbc3e83 
							
						 
					 
					
						
						
							
							Fixed   #6464  -- Added incr() and decr() operations on cache backends. Atomic on Memcache; implemented as a 2 stage retrieve/update on other backends. Includes refactor of the cache tests to ensure all the backends are actually tested, and a fix to the DB cache backend that was discovered as a result. Thanks to Michael Malone for the original patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10031  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-11 13:27:03 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							5fb6667036 
							
						 
					 
					
						
						
							
							Fixed   #3460  -- Added an ability to enable true autocommit for psycopg2 backend.  
						
						... 
						
						
						
						Ensure to read the documentation before blindly enabling this: requires some
code audits first, but might well be worth it for busy sites.
Thanks to nicferrier, iamseb and Richard Davies for help with this patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10029  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-11 07:06:50 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							b4dd4d4bb7 
							
						 
					 
					
						
						
							
							Fixed   #3163  -- Add a "Meta.managed" option to models.  
						
						... 
						
						
						
						This allows a model to be defined which is not subject to database table
creation and removal. Useful for models that sit over existing tables or
database views.
Thanks to Alexander Myodov, Wolfgang Kriesing and Ryan Kelly for the bulk of
this patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10008  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-09 03:35:02 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							98710a5a28 
							
						 
					 
					
						
						
							
							Made a couple of cross-references in the model fields documentaiton consistent.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10007  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-09 03:33:54 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							059765fa6c 
							
						 
					 
					
						
						
							
							Fixed   #9436  -- Updated docs build code to create "new in development version".  
						
						... 
						
						
						
						Patch from Marc Fargas.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10006  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-09 01:37:17 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							fedea84f3c 
							
						 
					 
					
						
						
							
							Changed a few versionadded doc directives from "development" to "1.1".  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@10005  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-09 01:36:53 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							e8a817d499 
							
						 
					 
					
						
						
							
							Fixed   #10433 : Corrected typo in test doc.  Thanks Matt Doran.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9989  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-08 04:31:05 +00:00 
						 
				 
			
				
					
						
							
							
								Ian Kelly 
							
						 
					 
					
						
						
						
						
							
						
						
							ad6ce1e6f9 
							
						 
					 
					
						
						
							
							Clarified documentation regarding Oracle's treatment of nulls and empty strings.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9976  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-05 20:21:22 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							7197a4dcb7 
							
						 
					 
					
						
						
							
							Made it explicit if you accidentally override a Field from a parent model.  
						
						... 
						
						
						
						This was always not working reliably (model initialization and serialization
were two of the problems). Now, it's an explicit error. Also, documented.
Fixed  #10252 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9974  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-04 10:39:29 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							5e8ddd59e2 
							
						 
					 
					
						
						
							
							Minor update to documentation for many-to-many filter() calls.  
						
						... 
						
						
						
						Removed a potential ambiguity when describing how multiple conditions in one
filter() call are handled.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9958  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-03 01:40:47 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							dfddf129f0 
							
						 
					 
					
						
						
							
							Fixed   #9701  -- Added a "safeseq" template filter.  
						
						... 
						
						
						
						This is like "safe", except it operates on the individual elements of a
sequence, rather than treating the whole argument as a string.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9952  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-02 08:16:33 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							a605a8fe08 
							
						 
					 
					
						
						
							
							Small edit to the caching docs.  
						
						... 
						
						
						
						Turns out, super-lightning is not faster than normal lightning. :-)
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9949  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-03-02 05:46:04 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							5fcd75ce14 
							
						 
					 
					
						
						
							
							Fixed   #10377 : Added clearer warning to database notes for cx_Oracle 5.0.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9922  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-28 06:03:18 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							db2a95f6f5 
							
						 
					 
					
						
						
							
							Fixed   #5610  -- Added the ability for dumpdata to take individual model names, as well as entire applications. Thanks to David Reynolds for his work on this patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9921  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-28 05:35:22 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							e735fe7160 
							
						 
					 
					
						
						
							
							Fixed   #4476  -- Added a `follow` option to the test client request methods. This implements browser-like behavior for the test client, following redirect chains when a 30X response is received. Thanks to Marc Fargas and Keith Bussell for their work on this.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9911  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-27 13:14:59 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							86a048b4e0 
							
						 
					 
					
						
						
							
							Fixed   #10344  -- Corrected some typos in the aggregation docs. Thanks to ewoudenberg for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9904  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-24 22:51:14 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							28605a9c26 
							
						 
					 
					
						
						
							
							Whitespace fix to [9896].  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9897  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-24 02:31:09 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							17bb750b08 
							
						 
					 
					
						
						
							
							Cleaned up some reST errors in the 1.1 alpha release notes, and made a few minor edits.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9895  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-24 02:21:09 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							f3a95d2d14 
							
						 
					 
					
						
						
							
							Add 1.1 alpha 1 release notes  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9893  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-24 01:42:45 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							4cf1327aa4 
							
						 
					 
					
						
						
							
							Cleaned up some documentation about admin URLs in Django 1.1. Thanks, Alex Gaynor.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9892  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-24 01:10:26 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							63d85a684a 
							
						 
					 
					
						
						
							
							Fixed   #8630 : finished the custom comment app API that was left out of 1.0. This means it's now possible to override any of the models, forms, or views used by the comment app; see the new custom comment app docs for details and an example. Thanks to Thejaswi Puthraya for the original patch, and to carljm for docs and tests.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9890  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-23 22:16:26 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							542709d0d1 
							
						 
					 
					
						
						
							
							Fixed   #10182  -- Corrected realiasing and the process of evaluating values() for queries with aggregate clauses. This means that aggregate queries can now be used as subqueries (such as in an __in clause). Thanks to omat for the report.  
						
						... 
						
						
						
						This involves a slight change to the interaction of annotate() and values() clauses that specify a list of columns. See the docs for details.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9888  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-23 14:47:59 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							b2a4377651 
							
						 
					 
					
						
						
							
							Fixed   #9066  -- Added Czech localflavor. Thanks to Elvard for the contribution.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9876  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-22 07:51:57 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							0c2a5ebe97 
							
						 
					 
					
						
						
							
							Fixed   #9347  -- Added an entry in the field reference for the verbose_name option. Thanks to marcoberi for the suggestion, and timo for the eventual patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9865  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-22 06:10:29 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							a50a188a62 
							
						 
					 
					
						
						
							
							Fixed   #9939  -- Corrected minor error in model fields documentation. Thanks to seemant for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9864  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-22 06:09:54 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							af346081e3 
							
						 
					 
					
						
						
							
							Fixed   #10007  -- Corrected (and narrowed) a reference to the Python standard library documentation. Thanks to d00gs for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9863  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-22 06:09:28 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							7b9fe15a9f 
							
						 
					 
					
						
						
							
							Fixed   #10009  -- Corrected a field reference in an example on rendering hidden fields. Thanks to karihre@gmail.com for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9862  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-22 06:09:03 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							f1e8d24e0c 
							
						 
					 
					
						
						
							
							Fixed   #10030  -- Corrected a typo in a reference to the login_required decorator. Thanks to mk for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9860  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-22 06:08:13 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							b1d487e0f8 
							
						 
					 
					
						
						
							
							Fixed   #10118  -- Clarified the error message raised when accessing a subclass model that doesn't exist. Thanks to peterbraden@peterbraden.co.uk for the suggestion.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9859  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-22 06:07:47 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							b77bf5291a 
							
						 
					 
					
						
						
							
							Fixed   #10141  -- Added a missing import to the complex Feed example. Thanks to Temoto for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9858  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-22 06:07:21 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							16d67a11ac 
							
						 
					 
					
						
						
							
							Fixed   #10298  -- Corrected the example for the get_list_or_404 shortcut. Thanks to Dagur for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9857  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-22 06:06:56 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							bd658cb814 
							
						 
					 
					
						
						
							
							Fixed   #10312  -- Corrected a link to the Reportlab user guide. Thanks to JohnDoe for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9856  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-22 06:06:29 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							28448a53a9 
							
						 
					 
					
						
						
							
							Fixed   #10135  -- Added some import statements to docs/ref/forms/fields.txt and docs/ref/forms/widgets.txt to help people understand where the code lives. Thanks, Rob Hudson  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9853  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-21 08:45:47 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							641853331d 
							
						 
					 
					
						
						
							
							Fixed   #10177  -- Fixed typo in docs/ref/templates/builtins.txt. Thanks, bmjames  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9852  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-21 08:43:35 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							8ed6a62a3c 
							
						 
					 
					
						
						
							
							Fixed   #10195  -- Fixed a ReST error in docs/ref/contrib/syndication.txt. Thanks, toxik  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9851  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-21 08:41:04 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							68d15e94d2 
							
						 
					 
					
						
						
							
							Fixed   #10218  -- Reworded serialization.txt sentence to remove awkward quotes. Thanks for bringing this up, thedaniel  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9850  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-21 08:40:07 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							322a6a9d1d 
							
						 
					 
					
						
						
							
							Fixed   #10303  -- Corrected a contradiction in the docs regarding the capabilities of the .update() clause that was introduced by the documentation for F() expressions. Thanks to gluckj for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9846  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-19 22:45:48 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							e83f81de8c 
							
						 
					 
					
						
						
							
							Clarified some documentation on the use of the aggregate() query modifier, following suggestions on IRC. Thanks to Tai Lee for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9844  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-17 10:17:29 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							88837875f2 
							
						 
					 
					
						
						
							
							Auth-related doc cleanups:  
						
						... 
						
						
						
						* Added to documentation of missing characters from `allowed_chars` in `make_random_password`.
  * Fixed several long lines and word wraps.
  * Added a reference link to the "How to log a user in" section and made a later reference to this section an actual link using the `:ref:` directive.
  * Turned a command line code example into a code block.
  * Added attribute reference link for a ``request.META`` mention.
  * Added `code-block:: html` directives for HTML examples.
  * Corrected reference links for all the `auth.views` functions.
  * Added a few function signatures and documentation of optional parameters that were missing for some of the the `auth.views` functions (refs #10272 ).
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9835  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-16 05:10:31 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							f76cb41251 
							
						 
					 
					
						
						
							
							A few minor wording, whitespace, punctuation, and link changes for the middleware documentation.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9833  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-15 05:46:00 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							addd3df3bd 
							
						 
					 
					
						
						
							
							Fixed   #7672  -- Added a 'week_day' lookup type. Many thanks to Ross Poulton for the proposal and implementation on all built-in database backends..  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9818  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-08 05:08:06 +00:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
						
						
							
						
						
							9a2e338107 
							
						 
					 
					
						
						
							
							Made CSRF middleware skip post-processing for 'csrf_exempt' decorated views.  
						
						... 
						
						
						
						This commit also decomposes the decorator into two decorators which can be
used separately, adds some tests, updates docs and fixes some code comments.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9815  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-07 17:47:02 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							fffade6633 
							
						 
					 
					
						
						
							
							Fixed   #10187  -- Added documentation on how to import F() objects. Thanks to trigeek38 for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9814  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-03 23:13:02 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							a008b5c9ab 
							
						 
					 
					
						
						
							
							Corrected code block in apache auth docs.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9806  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-03 03:13:13 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							65ad2132ab 
							
						 
					 
					
						
						
							
							Fixed   #10142  -- Added docs and an exploding error message to highlight an error present in the implementation of STDDEV_POP and VAR_POP in PostgreSQL 8.2-8.2.4 that will give incorrect answers (the database function mistakenly returns sample, rather than population deviation/variance). Thanks to Vinay Sajip <vinay_sajip@yahoo.co.uk> for the report, and Ian Kelly for pointing out the cause of the problem.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9804  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-02 12:03:31 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							b197fa7ece 
							
						 
					 
					
						
						
							
							Fixed   #10152  -- Fixed typo in porting guide.  Thanks eagle-eyed anonymous.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9795  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-29 20:21:43 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							9a03c21a18 
							
						 
					 
					
						
						
							
							Fixed   #8638  -- Added documentation on how to redirect email to a dummy server for testing purposes. Thanks to Rob Hudson and Marc Fargas for their work on the draft for this change.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9793  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-29 12:31:11 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							cf37e4624a 
							
						 
					 
					
						
						
							
							Fixed   #7210  -- Added F() expressions to query language. See the documentation for details on usage.  
						
						... 
						
						
						
						Many thanks to:
    * Nicolas Lara, who worked on this feature during the 2008 Google Summer of Code.
    * Alex Gaynor for his help debugging and fixing a number of issues.
    * Malcolm Tredinnick for his invaluable review notes.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9792  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-29 10:46:36 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							ff78aef93b 
							
						 
					 
					
						
						
							
							Fixed   #10110  -- Added FAQ on how and when to poke the core developers about tickets. Thanks to Graham King for turning a couple of django-dev posts into a good first draft.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9789  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-24 12:07:26 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							f5ed27cf1f 
							
						 
					 
					
						
						
							
							Fixed   #10052  -- Added import line for other aggregates used in examples. Thanks to Tyler Brownell <tyler@bluefoxstudio.ca> for the suggestion.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9787  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-23 11:12:06 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							f212b24b64 
							
						 
					 
					
						
						
							
							Cleaned up and refactored ModelAdmin.formfield_for_dbfield:  
						
						... 
						
						
						
						* The new method uses an admin configuration option (`formfield_overrides`); this makes custom admin widgets especially easy.
  * Refactored what was left of `formfield_for_dbfield` into a handful of smaller methods so that it's easier to hook in and return custom fields where needed.
  * These `formfield_for_*` methods now pass around `request` so that you can easily modify fields based on request (as in #3987 ).
Fixes  #8306 , #3987 , #9148 .
Thanks to James Bennet for the original patch; Alex Gaynor and Brian Rosner also contributed.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9760  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-16 15:32:31 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							d579e716fe 
							
						 
					 
					
						
						
							
							Fixed   #9997  -- Fixed use of ValuesQuerySets as rvalues in filters.  
						
						... 
						
						
						
						Previous behaviour was pretty stupid. Let's never speak of it again. New
behaviour both works and is documented.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9759  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-16 10:59:43 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							344f16e220 
							
						 
					 
					
						
						
							
							Fixed   #8138  -- Changed django.test.TestCase to rollback tests (when the database supports it) instead of flushing and reloading the database.   This can substantially reduce the time it takes to run large test suites.  
						
						... 
						
						
						
						This change may be slightly backwards incompatible, if existing tests need to test transactional behavior, or if they rely on invalid assumptions or a specific test case ordering.  For the first case, django.test.TransactionTestCase should be used.  TransactionTestCase is also a quick fix to get around test case errors revealed by the new rollback approach, but a better long-term fix is to correct the test case.  See the testing doc for full details.
Many thanks to:
* Marc Remolt for the initial proposal and implementation.
* Luke Plant for initial testing and improving the implementation.
* Ramiro Morales for feedback and help with tracking down a mysterious PostgreSQL issue.
* Eric Holscher for feedback regarding the effect of the change on the Ellington testsuite.
* Russell Keith-Magee for guidance and feedback from beginning to end.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9756  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-16 02:30:22 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							f9f9d703cf 
							
						 
					 
					
						
						
							
							Fixed   #10042  -- YAADT (Aggregation Docs Typo).  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9755  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-16 00:02:35 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							b3dd0b5dcc 
							
						 
					 
					
						
						
							
							Fixed   #10039  -- More typos in aggregation docs. Seriously, people, now you're just making me look bad :-) Thanks to ElliottM, and to Erich Holscher for a separate report that I've piggybacked on this checkin.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9754  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-15 23:15:32 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							bf710bd005 
							
						 
					 
					
						
						
							
							Fixed   #10035  -- Corrected more typos in the aggregation docs. Thanks to Ivan Sagalaev for his eagle eyes.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9753  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-15 22:33:55 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							d55b361ac4 
							
						 
					 
					
						
						
							
							Corrected another typo in aggregation docs. Thanks to Ivan Sagalaev for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9752  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-15 22:26:00 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							14d15093bc 
							
						 
					 
					
						
						
							
							Corrected typo in aggregation docs. Thanks to Ivan Sagalaev for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9746  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-15 14:07:53 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							79fa78cc80 
							
						 
					 
					
						
						
							
							Corrected a copy-and-paste typo in a heading of the aggregation docs. Thanks to Eivind Uggedal for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9744  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-15 12:35:41 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							1a87e01f21 
							
						 
					 
					
						
						
							
							Corrected some ReST problems with the aggregation docs. Thanks to James Bennett for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9743  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-15 12:13:17 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							cc4e4d9aee 
							
						 
					 
					
						
						
							
							Fixed   #3566  -- Added support for aggregation to the ORM. See the documentation for details on usage.  
						
						... 
						
						
						
						Many thanks to:
 * Nicolas Lara, who worked on this feature during the 2008 Google Summer of Code.
 * Alex Gaynor for his help debugging and fixing a number of issues.
 * Justin Bronn for his help integrating with contrib.gis.
 * Karen Tracey for her help with cross-platform testing.
 * Ian Kelly for his help testing and fixing Oracle support.
 * Malcolm Tredinnick for his invaluable review notes.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9742  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-15 11:06:34 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							1f84630c87 
							
						 
					 
					
						
						
							
							Fixed   #6470 : made the admin use a URL resolver.  
						
						... 
						
						
						
						This *is* backwards compatible, but `admin.site.root()` has been deprecated. The new style is `('^admin/', include(admin.site.urls))`; users will need to update their code to take advantage of the new customizable admin URLs.
Thanks to Alex Gaynor.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9739  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-14 20:22:25 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							ffeb1d0465 
							
						 
					 
					
						
						
							
							Fixed   #9346 : fixed comment upgrade SQL in documentation. Thanks, mt.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9732  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-12 17:31:40 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							3990d00f20 
							
						 
					 
					
						
						
							
							Fixed   #9959 : fixed comment documentation example showing how to get a preview.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9731  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-12 17:29:01 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							11d382c6c4 
							
						 
					 
					
						
						
							
							Fixed a long line, a typo, and a few misspellings from [9727].  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9729  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-11 05:47:06 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							299e1e814f 
							
						 
					 
					
						
						
							
							Fixed   #6791 : added a write-through cache session backend: session data is written through the cache to the database, but read from the cache for speed. Thanks to jhenry, mcroydon, and jdunck.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9727  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-10 22:18:14 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							d32c290846 
							
						 
					 
					
						
						
							
							Revised r9566 slightly to be backwards compatible with versions 1.0 - 1.0.2.  
						
						... 
						
						
						
						Also documented the change. We prefer to load directory_index.html for static
directory listings, but if you have the (older style) "directory_index"
template and no .html version, we'll load that. This should stop a bunch of
mysterious breakages when people upgrade to Django 1.0.3 or Django 1.1. Also
keeps the docs in sync with released code.
Fixed  #9993 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9725  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-09 12:41:07 +00:00 
						 
				 
			
				
					
						
							
							
								Ian Kelly 
							
						 
					 
					
						
						
						
						
							
						
						
							bde7e79fb3 
							
						 
					 
					
						
						
							
							Refs  #9935 : Added a note in the documentation to the effect that Django currently requires a 4.X release of cx_Oracle.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9709  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-06 18:22:07 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							a9c2f033cd 
							
						 
					 
					
						
						
							
							Upgraded included simplejson to 2.0.7.  
						
						... 
						
						
						
						Also changed importing logic to prefer a system-installed version of
simplejson (unless it's an earlier version that does not contian the C
speedups), then the json module from Python 2.6, then the version
shipped with Django.
Fixed  #9266 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9707  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-06 05:13:02 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							3b489b7742 
							
						 
					 
					
						
						
							
							Documented that case-insensitive matching is not supported for non-ASCII  
						
						... 
						
						
						
						strings in SQLite. Refs #9905 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9705  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-06 03:34:47 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							f747b61c20 
							
						 
					 
					
						
						
							
							Nested query support.  
						
						... 
						
						
						
						This extends previous functionality that allowed passing Query objects as the
rvals to filters. You can now pass QuerySets, which requires less poking at
opaque attributes. See the documentation of the "__in" lookup type for the
details.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9701  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-05 11:47:48 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							ff4b844cb4 
							
						 
					 
					
						
						
							
							Added a link to RKM's blog in the committers file.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9698  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-01-03 05:04:12 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							89dc5b894a 
							
						 
					 
					
						
						
							
							Added some documentation explaining (1) that it's possible to add users via the Django admin site, and (2) that in order to be able to add users via the admin site, you need to have both 'add user' and 'change user' permissions. Refs  #9866  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9684  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-25 06:19:14 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							7bf9626adb 
							
						 
					 
					
						
						
							
							Fixed   #9884  -- Corrected template example in model forms documentation, thanks bradmontgomery.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9676  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-23 05:20:49 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							05737128de 
							
						 
					 
					
						
						
							
							Fixed   #9902  -- Corrected misspelling in form validation documentation, thanks zunzun.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9674  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-23 04:13:14 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							bcae5fc1b3 
							
						 
					 
					
						
						
							
							Fixed   #9896  -- Corrected a couple uses of formset.forms, thanks aglzen.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9672  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-23 00:13:15 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							c565352954 
							
						 
					 
					
						
						
							
							Fixed   #9780  -- Fixed an undefined internal link in the model forms documentation, thanks ramiro.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9670  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-23 00:01:09 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							d66e63f2dc 
							
						 
					 
					
						
						
							
							Fixed   #9904  -- Corrected name of storage method in files documentation.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9668  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-22 23:21:32 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							9d13b6ec28 
							
						 
					 
					
						
						
							
							Changed some ReST formatting of headers (in forms/validation.txt).  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9666  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-22 04:18:00 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							04ed423469 
							
						 
					 
					
						
						
							
							Fixed   #9898  -- Added a missing 'e' to 'one'.  Thanks gizzywump.  Also Americanized specialised while in the area, per contributing's guideline.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9662  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-21 04:17:46 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							b58a260c56 
							
						 
					 
					
						
						
							
							Fixed   #9431  -- Added extra validation for VARCHAR-based fields on MySQL.  
						
						... 
						
						
						
						max_length > 255 and unique=True is not permitted. Based on a patch from
adamnelson.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9650  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-16 06:43:18 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							7030ab9a72 
							
						 
					 
					
						
						
							
							Yet another place where we claim to support 2.3 and up  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9635  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-10 01:52:08 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							280236eacd 
							
						 
					 
					
						
						
							
							Another place where we talked about Python versions.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9632  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-09 23:05:55 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							626f72733d 
							
						 
					 
					
						
						
							
							Clarify install docs to point at new FAQ items about Python 3.0.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9630  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-09 22:48:23 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							adfad3c193 
							
						 
					 
					
						
						
							
							Fixed   #9783 ; clarified install docs and FAQ to explain that Django does not yet work with Python 3.0.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9628  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-09 22:39:58 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							b4364e099e 
							
						 
					 
					
						
						
							
							Documented how to handle '%' characters in redirect_to() URL strings (even in  
						
						... 
						
						
						
						the absence of keyword arguments). Fixed  #9773 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9626  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-09 07:33:08 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							80da07e4b9 
							
						 
					 
					
						
						
							
							The "permanent" parameter to redirect_to (r9594) is new in Django 1.1. Noted as  
						
						... 
						
						
						
						much in the docs.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9625  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-09 07:32:28 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							731f6be262 
							
						 
					 
					
						
						
							
							Fixed   #9777  -- Typo fix.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9622  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-09 07:15:35 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							d29b7a14c5 
							
						 
					 
					
						
						
							
							Fixed   #9772  -- Fixed a couple of broken links and pointed them to a more  
						
						... 
						
						
						
						appropriate section. Thanks, Ramiro Morales.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9621  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-09 07:13:49 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							c006ef5746 
							
						 
					 
					
						
						
							
							Did some much-needed rewriting/editing in the formsets section of docs/topics/forms/modelsforms.txt. 'It self' is not two words.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9616  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-09 04:17:14 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Rosner 
							
						 
					 
					
						
						
						
						
							
						
						
							6553ddc5b4 
							
						 
					 
					
						
						
							
							Improved the model formset and inline formset documentation to be more explicit and handle some cases that were never addressed before.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9614  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-09 00:31:17 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							453d452653 
							
						 
					 
					
						
						
							
							In the release process doc, clarify that the original committer is responsible for backporting trunk fixes to the bug-fix branch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9610  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-08 17:15:56 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							235600c3c3 
							
						 
					 
					
						
						
							
							Fixed   #9724  -- Added missing import to URLconf example, thanks shacker.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9597  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-08 05:35:20 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							ff3e1a7d40 
							
						 
					 
					
						
						
							
							Fixed   #9718  -- Removed a reference to oldforms FormWrapper object in the user authentication docs.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9595  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-08 05:27:04 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							b76d7c1dec 
							
						 
					 
					
						
						
							
							Added a 'permanent' argument the simple.redirect_to() generic view. It's True by default, to match existing behavior. If set to False, the redirect will be a 302 instead of a 301. This is technically backwards-incompatible if you were using the redirect_to generic view with a format-string key called 'permanent', which is highly, highly unlikely.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9594  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-08 04:53:34 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							e9b90d9899 
							
						 
					 
					
						
						
							
							Edited ref/contrib/csrf.txt changes from [9554]  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9593  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-08 04:15:19 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							352efd1893 
							
						 
					 
					
						
						
							
							Edited docs/topics/forms/index.txt changes from [9569] and fixed a typo in the visible_fields() docstring  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9592  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-08 04:07:42 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							e8707e068d 
							
						 
					 
					
						
						
							
							Fixed   #9645  -- Work around a backwards-incompatibility in Sphinx so that  
						
						... 
						
						
						
						various combinations of released docutils and sphinx versions all work
together. Thanks, Ramiro Morales.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9586  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-07 04:00:08 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							d1102d63e6 
							
						 
					 
					
						
						
							
							Fixed   #9677  -- Fixed a tiny typo in the 1.0.2 release notes.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9584  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-07 03:54:45 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							89ada943ee 
							
						 
					 
					
						
						
							
							Fixed   #9705  -- Call the Netherlands by their real name in the localflavor  
						
						... 
						
						
						
						documentation.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9580  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-07 03:42:25 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							04ff1aff12 
							
						 
					 
					
						
						
							
							Fixed   #9712  -- Documented how HTTP headers are converted to request.META keys.  
						
						... 
						
						
						
						Based on a patch from masklinn.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9579  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-07 03:41:54 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							84cc008473 
							
						 
					 
					
						
						
							
							Fixed   #9731  -- Typo fix in docs.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9578  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-07 03:41:23 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							bfab9d62ee 
							
						 
					 
					
						
						
							
							Added a way to iterate over hidden/visible fields in a form. Useful for manual  
						
						... 
						
						
						
						form layout.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9569  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-05 04:22:00 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							5d7c57f681 
							
						 
					 
					
						
						
							
							Fixed some markup errors in the form validation docs.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9564  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-04 05:37:37 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							4bdbd1401d 
							
						 
					 
					
						
						
							
							Fixed   #9735  -- Documentation typo fix.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9558  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-03 05:50:46 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							94f4348728 
							
						 
					 
					
						
						
							
							Fixed   #9734  -- Typo fix in the custom fields documentation, pointed out by  
						
						... 
						
						
						
						col16.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9557  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-03 05:50:11 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							1302fe9a35 
							
						 
					 
					
						
						
							
							Fixed   #9740  -- Updated and correct usage of max_entries in cache documentation.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9556  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-03 05:49:37 +00:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
						
						
							
						
						
							9ec9936413 
							
						 
					 
					
						
						
							
							Updated csrf docs with 'versionadded' info  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9555  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-03 00:44:12 +00:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
						
						
							
						
						
							9eedc7bd0b 
							
						 
					 
					
						
						
							
							New CsrfMiddleware features: automatic exceptions for known AJAX and decorator for manual exceptions  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9554  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-03 00:34:18 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							87fc7efda5 
							
						 
					 
					
						
						
							
							Added a note to the SQLite database documentation mentioning that version 3.6.2  
						
						... 
						
						
						
						is to be avoided like the plague. Fortunately, it was only the latest release
for three weeks, so avoidance is easy (as is upgrading).
Refs #9358 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9540  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-02 05:58:15 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							f7a64b341a 
							
						 
					 
					
						
						
							
							Added a short note to the modelforms documentation linking between  
						
						... 
						
						
						
						save(commit=False) and using force_insert or force_update on the Model.save()
call. Refs #8672 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9539  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-12-02 04:07:43 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							4aa97f5c18 
							
						 
					 
					
						
						
							
							Fixed   #6398 : added an optional {% empty %} clause to the {% for %} template tag. The contents of this clause are rendered if the list iterated over turns out to be empty. Thanks, Jannis Leidel.  
						
						... 
						
						
						
						Astute readers will notice that the patch originally called this `default`; after consideration I decided that `empty` is a very slightly better color for this particular bikeshed.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9530  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-24 22:01:48 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							136c4f8549 
							
						 
					 
					
						
						
							
							Fixed a small reST header glitch in docs/ref/templates/builtins.txt  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9529  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-24 22:01:24 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							089ab18c02 
							
						 
					 
					
						
						
							
							Fixed   #4924 : added support for loading compressed fixtures. Thanks to Lars Yencken and Jeremy Dunck.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9527  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-24 20:42:09 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							3ac16c0fdd 
							
						 
					 
					
						
						
							
							Remove the FAQ answer about a setuptools install error that references running a script 2-years-gone from the source tree.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9523  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-21 17:47:47 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							5372508fdf 
							
						 
					 
					
						
						
							
							Fixed   #9611  -- Noted in the FAQ answer about Python versions that some contrib apps (notably gis) may require a higher Python version.  Thansk jamesivanwhite for the report and initial patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9521  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-21 17:41:08 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							a5172c3e1f 
							
						 
					 
					
						
						
							
							Fixed   #9618 : Corrected an error in some example code in the forms documentation.  Thanks matthijs.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9517  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-21 16:25:05 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							e5437af89a 
							
						 
					 
					
						
						
							
							Forward-port docutils fix from [9497].  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9498  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-19 05:26:31 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							5759f28947 
							
						 
					 
					
						
						
							
							Add 1.0.2 release notes to trunk so they show up online  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9496  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-19 05:21:58 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							56c06c835c 
							
						 
					 
					
						
						
							
							Greatly refactored the docs index to allow for more efficient use by power users, while staying clean for new users. It no longer takes four clicks to get to the list of default template filters.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9490  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-18 07:33:35 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							0cfcc72f88 
							
						 
					 
					
						
						
							
							Renamed file-uploads.txt from 'topics-file-uploads' to 'topics-http-file-uploads' to be consistent with directory structure  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9489  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-18 07:32:38 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							e37e57f44a 
							
						 
					 
					
						
						
							
							Removed 'Most Web sites wouldn't be complete without a way to upload files' sentence from file-uploads.txt in docs. I beg to differ.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9487  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-18 06:35:05 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							a573f4c029 
							
						 
					 
					
						
						
							
							Fixed   #9472  -- Fixed a couple of URL patterns to be more consistent (and remove  
						
						... 
						
						
						
						a misleading initial slash). Thanks, daveyjoe.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9471  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-16 09:35:30 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							2246d526b1 
							
						 
					 
					
						
						
							
							One more correction to the release notes.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9456  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-15 05:57:39 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							644ad9073f 
							
						 
					 
					
						
						
							
							Fixed   #9477  -- Removed and edited a bunch of references to "development  
						
						... 
						
						
						
						version". Some were replaced with versionadded or versionchanged directives.
Other, more minor ones, were removed altogether.
Based on a patch from James Bennett.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9454  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-15 05:51:25 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							1d375e1472 
							
						 
					 
					
						
						
							
							Port [9450] forward to trunk.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9451  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-15 05:36:30 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							f5532f7119 
							
						 
					 
					
						
						
							
							Add 1.0.1 release notes to trunk so they'll show up in the online docs.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9449  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-15 05:21:37 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							64b56447f3 
							
						 
					 
					
						
						
							
							Fixed   #9377  -- Clarified when cmemcached support was included in Django.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9435  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-14 08:02:46 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							26fabdb218 
							
						 
					 
					
						
						
							
							Fixed   #9531  -- Fixed some awkward wording in the docs. Thanks, gsf.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9434  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-14 08:01:01 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							599852d04d 
							
						 
					 
					
						
						
							
							Fixed   #9507  -- Correct an example in the admin docs. Thanks, john_scott and  
						
						... 
						
						
						
						SmileyChris.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9432  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-14 07:49:51 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							40976e0862 
							
						 
					 
					
						
						
							
							Fixed   #9594  -- Typo fix in the testing example.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9429  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-14 07:38:55 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							a0d4749920 
							
						 
					 
					
						
						
							
							Fixed   #9468  -- Fixed a misleading FAQ answer.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9428  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-14 07:38:27 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							8d28a4c853 
							
						 
					 
					
						
						
							
							Quit being a complete mystery.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9416  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-13 23:43:25 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							e32299e0bc 
							
						 
					 
					
						
						
							
							Fixed   #9572  -- Corrected some documentation that misleadingly gave the extension for YAML fixtures as YML. Thanks to django@i-sh.me.uk for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9401  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-12 11:48:57 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							95d8c0619a 
							
						 
					 
					
						
						
							
							Fixed   #9351  -- Modified the test client to pass on URL encoded parameters to the underlying views. Thanks to sime for the suggestion.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9398  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-12 11:22:05 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							675a4a1067 
							
						 
					 
					
						
						
							
							Fixed   #9567  - Removed an extraneous 'are'.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9390  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-11 02:57:02 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							c672e44ea9 
							
						 
					 
					
						
						
							
							Fixed   #9556  - typos in syndication docs.  Thanks sedden.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9373  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-09 19:01:34 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							fb8a7702a0 
							
						 
					 
					
						
						
							
							Fixed   #9518  -- Corrected example JSON snippet in fixture documentation. Thanks to claude@2xlibre.net for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9355  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-06 10:24:24 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							834ca580fc 
							
						 
					 
					
						
						
							
							Fixed   #9499 : Corrected self-reference in test client put method doc.  Thanks jroes.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9332  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-02 21:38:44 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							c483583023 
							
						 
					 
					
						
						
							
							Fixed   #9497  - Doc typos.  Many thanks ramiro.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9330  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-02 20:43:20 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							8a5f2ee912 
							
						 
					 
					
						
						
							
							Fixed   #9495  -- Corrected typo in urls doc.  Thanks seemant.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9328  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-02 04:17:59 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							1f69b11ef5 
							
						 
					 
					
						
						
							
							Fixed   #9337  -- Use a link to Jython that actually works.  Thanks admackin.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9323  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-01 20:51:54 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							2efa5f80d6 
							
						 
					 
					
						
						
							
							Fixed   #9374  -- Added missing close paren in serialization doc.  Thanks jordy.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9318  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-01 20:14:36 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							dd9fd80561 
							
						 
					 
					
						
						
							
							Fixed   #9441  -- Corrected typo in file upload settings doc. Thanks gsf.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9316  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-01 19:45:03 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							021b40a84c 
							
						 
					 
					
						
						
							
							Fixed   #9412  -- Corrected a couple of typos in the custom model field doc.  Thanks carljm.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9314  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-01 19:20:00 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							d4f4ab8535 
							
						 
					 
					
						
						
							
							Fixed   #9487  -- Corrected several links into the Python docs that were broken by the recent Python docs refactor.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9312  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-01 19:02:09 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							8955a085a5 
							
						 
					 
					
						
						
							
							Fixed   #9491  -- Added a missing 'the' in what to read next.  Thanks mh983.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9310  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-11-01 18:04:36 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							2026934600 
							
						 
					 
					
						
						
							
							Fixed   #8966  -- Changed is_safe for length_is filter to False, since its return value is a boolean, not a string.  
						
						... 
						
						
						
						Thanks Thomas Steinacher and carljm.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9291  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-28 19:00:49 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							0503442d2c 
							
						 
					 
					
						
						
							
							Minor typo correction from [9279].  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9280  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-26 03:10:13 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							2d40c75acf 
							
						 
					 
					
						
						
							
							Remove obsolete reference to "development version" in autoescaping docs.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9279  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-26 03:09:29 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							03fcf19fd2 
							
						 
					 
					
						
						
							
							Fixed   #9434  -- Added a note to the mod_python docs regarding requiring  
						
						... 
						
						
						
						PythonInterpreter in different VirtualHost blocks that share the same server
name. Thanks to Graham Dumpleton for the clarification.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9268  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-24 09:26:09 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							c57fe6c3ec 
							
						 
					 
					
						
						
							
							Fixed   #9432  -- Revived documentation of ~Q usage.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9267  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-24 09:25:32 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							cbe11c1982 
							
						 
					 
					
						
						
							
							Fixed   #9430  -- Fixed documentation references to the HttpResponse classes for  
						
						... 
						
						
						
						returning HTTP status codes other than 200.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9266  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-24 09:24:42 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							1dafebaed1 
							
						 
					 
					
						
						
							
							Fixed   #9424  -- Typo fix.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9258  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-24 07:16:23 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							032b7bc45e 
							
						 
					 
					
						
						
							
							Fixed   #9420  -- Fixed an exception type in the documentation of Queryset.get().  
						
						... 
						
						
						
						Based on a suggestion from daveyjoe.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9257  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-24 07:15:52 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							9900c87161 
							
						 
					 
					
						
						
							
							Fixed   #9390  -- Restored some documentation about select_related() that was  
						
						... 
						
						
						
						accidentally lost in the docs refactor.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9256  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-24 07:15:07 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							92a6c14291 
							
						 
					 
					
						
						
							
							Fixed   #9384  -- Fixed a couple of typos. Thanks, Thomas Güttler and romke.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9255  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-24 07:14:30 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Rosner 
							
						 
					 
					
						
						
						
						
							
						
						
							227a5a4ee6 
							
						 
					 
					
						
						
							
							Corrected a typo in the 1.0 porting guide.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9219  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-09 23:35:34 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							ede4f94621 
							
						 
					 
					
						
						
							
							Fixed   #9239  -- Somebody read my form validation docs from r9177 and found a  
						
						... 
						
						
						
						typo in them. I guess that was predictable. Thanks, Berry Groenendijk
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9217  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-09 09:30:54 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							0b7b74432a 
							
						 
					 
					
						
						
							
							Fixed   #9325  -- Typo fix in the forms documentation.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9215  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-09 09:19:47 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							72f387d344 
							
						 
					 
					
						
						
							
							Fixed   #9215  -- Added a view/template example of using pagination.  
						
						... 
						
						
						
						Based on a patch from shacker and Matt Dennenbaum.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9193  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-07 11:51:14 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							08c3ad0cd0 
							
						 
					 
					
						
						
							
							Added a link to the "documentation" documentation in the contributing docs.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9192  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-07 11:49:50 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							777aaf0333 
							
						 
					 
					
						
						
							
							Added a note about where custom manager specifications go in a model (for the  
						
						... 
						
						
						
						style guide).
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9191  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-07 11:48:11 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							cd8eeaacf5 
							
						 
					 
					
						
						
							
							Fixed   #5888  -- Added methods to the test client to support HEAD, PUT, DELETE  
						
						... 
						
						
						
						and OPTIONS support. Thanks Scott Barr and Leah Culver.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9188  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-07 09:23:40 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							a928c563e9 
							
						 
					 
					
						
						
							
							Added a lot more explanation about form field validation, including expanded  
						
						... 
						
						
						
						examples. Fixed  #5843 , #6652 , #7428 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9177  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-06 11:21:11 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							49c61ab1ab 
							
						 
					 
					
						
						
							
							Fixed   #7011  -- Clarified what User.is_active really means in the documentation.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9176  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-06 11:20:15 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							870a6ec20c 
							
						 
					 
					
						
						
							
							Fixed   #6979  -- Fixed the documentation cross-reference between the TIME_ZONE  
						
						... 
						
						
						
						setting and manual settings configuration.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9175  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-06 11:18:30 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							452ba4a8f7 
							
						 
					 
					
						
						
							
							Fixed   #8768  -- Clarified that ugettext_lazy() results are unicode proxies and  
						
						... 
						
						
						
						can't be used as bytestrings.
Still a number of markup changes to be made in this file (and in this
changeset). That's intentional for now, since I'm going to rewrite the file
later this week.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9168  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-06 08:32:35 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							fa63f1642d 
							
						 
					 
					
						
						
							
							Fixed   #8975  -- Added a note to the documentation for reverse() that all views  
						
						... 
						
						
						
						must be importable for URL reversing to work correctly.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9167  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-06 08:31:32 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							cddece2db1 
							
						 
					 
					
						
						
							
							Fixed   #9254  -- Added information to the porting guide about the removal of  
						
						... 
						
						
						
						"core" and the new methods on model file- and image-fields.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9166  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-06 08:30:02 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							8cbf5d102c 
							
						 
					 
					
						
						
							
							Fixed   #8688  -- Added a note about using a settings variable for the static  
						
						... 
						
						
						
						media viewer with the development server. Based on a suggestion from trodrigues.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9165  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-06 08:29:05 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							e0a09b7dac 
							
						 
					 
					
						
						
							
							Fixed a couple of markup errors in the documentation.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9164  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-06 08:28:18 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							a011a49457 
							
						 
					 
					
						
						
							
							Fixed   #9047  -- Marked up django.core.urlresolvers.reverse() properly in the  
						
						... 
						
						
						
						docs. It now appears in the index.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9163  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-06 08:27:24 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							5d3b222a59 
							
						 
					 
					
						
						
							
							Fixed   #9212 : Added code to check the xgettext version, and if it is lower than 0.15, undo an incorrect encoding to utf-8 done by xgettext.  This bug was fixed in xgettext 0.15, but the most-easily-installed Windows gettext binaries are older (0.13.1), so we work around it.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9155  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-06 01:36:35 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							b131462d76 
							
						 
					 
					
						
						
							
							Add note to 1.0 porting guide about removal of dictionary access to HTTP request objects  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9153  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-05 16:03:58 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							806ea3a1de 
							
						 
					 
					
						
						
							
							Changed the "write your own settings" recommendation to mention that Django  
						
						... 
						
						
						
						uses tuples, but not making it a recommendation. That might head off the endless
tuples vs. lists debates.
Fixed  #8846 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9146  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-05 08:58:17 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							0995b63b77 
							
						 
					 
					
						
						
							
							Fixed   #8964  -- Added a note that MyISAM may not necessarily be the default  
						
						... 
						
						
						
						storage engine for MySQL. Some packagers seem to like causing confusion.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9143  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-05 06:56:15 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							5cd7af58c9 
							
						 
					 
					
						
						
							
							Fixed a typo and clarified how django.core.mail.outbox works in the testing framework.  Fixed   #9237 .  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9140  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-05 06:39:26 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							7e4d2778e6 
							
						 
					 
					
						
						
							
							Added django.contrib.markup to the docs contents page. Thanks, Marc Fargas.  
						
						... 
						
						
						
						Refs #9237 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9139  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-05 06:38:59 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							e466d2ea53 
							
						 
					 
					
						
						
							
							Fixed   #9257  -- Fixed a small mismatch in text in part 2 of the tutorial.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9134  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-05 06:19:06 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							514fba5b92 
							
						 
					 
					
						
						
							
							Fixed   #9291  -- Tweaked a piece of example code slightly to set a good example  
						
						... 
						
						
						
						for others (now uses an encoding that is guaranteed to work for XML consumers).
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9133  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-05 06:18:41 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							93aec4e44a 
							
						 
					 
					
						
						
							
							Fixed   #9301  -- Correct a markup typo in the docs.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9132  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-05 06:18:08 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							d3c6093645 
							
						 
					 
					
						
						
							
							Fixed   #9300  -- Typo fix in docs.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9131  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-05 06:17:29 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							8d98e70e42 
							
						 
					 
					
						
						
							
							Promoted --verbosity to be a top level option for all management commands. Also added -v as a consistent short form of --verbosity. This is mostly to save Malcolm's poor arthritic fingers.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9110  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-10-02 12:57:13 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							73c0db8e42 
							
						 
					 
					
						
						
							
							Fixed   #9255 : Removed now-obsolete warning about the old semantics of __exact=None vs. __isnull=True  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9105  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-30 22:29:58 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							97087962b1 
							
						 
					 
					
						
						
							
							Rewrote bits of the cycle tag documentation, which was confusing -- it implied 'rowvar' was required  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9101  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-30 17:45:58 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							e9f647e11f 
							
						 
					 
					
						
						
							
							Fixed   #9234  -- Typo fix.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9093  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-29 04:09:39 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							4eb26b1659 
							
						 
					 
					
						
						
							
							Restored documentation about pickling QuerySets (and how to only pickle the  
						
						... 
						
						
						
						details for the query, rather than the results) from r7499.
These were accidentally nuked in the docs refactor. We know who the offenders
were. They will be made to sit in the corner on the naughty mat for a while.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9090  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-28 03:08:30 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							edabc4aca1 
							
						 
					 
					
						
						
							
							Fied  #9169  -- Fixed a typo in a docs example. Thanks, jeremyb.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9085  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-27 03:25:42 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							48d41cf78e 
							
						 
					 
					
						
						
							
							Fixed   #8371 : Added a note warning Windows users about the use of forward slashes when specifying the DATABASE_NAME setting.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9084  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-22 11:10:39 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							54f962c0bf 
							
						 
					 
					
						
						
							
							Fixed   #8967 : Added documentation for the 'through' option on a many-to-many field in the fields reference documentation.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9083  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-22 11:07:35 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							1b733aa10d 
							
						 
					 
					
						
						
							
							Fixed   #9149 : Fixed reST error in syndication docs  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9078  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-21 07:43:58 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							af68a0ccd8 
							
						 
					 
					
						
						
							
							Fixed heading levels in docs/internals/committers  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9072  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-19 19:45:54 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							de9acabf12 
							
						 
					 
					
						
						
							
							Updated contributing documentation to contain the new release process and updated information about branches using DVCSes.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9071  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-19 19:44:10 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							7faa23d69c 
							
						 
					 
					
						
						
							
							Fixed   #9121 : Corrected markup in the form preview docs. Thanks to Jarek Zgoda for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9069  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-18 15:57:47 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							7976817a59 
							
						 
					 
					
						
						
							
							Fixed   #8955 : Modified the sphinx configuration to generate LaTeX documentation. Thanks to simonb for the report and fix.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9068  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-18 15:46:20 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							11e29c887a 
							
						 
					 
					
						
						
							
							Fixed some misordered markup for the ROOT_URLCONF setting in the docs.  
						
						... 
						
						
						
						Fixed  #9098 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9061  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
					
						2008-09-17 07:59:05 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							7a80a9fa7d 
							
						 
					 
					
						
						
							
							Fixed   #8546  -- Fixed error in request-response.txt where we were incorrectly listing HttpResponse.content() in the 'Methods' section instead of the 'Attributes' section. Thanks, schmichael  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9054  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-17 05:18:41 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							c1bed37715 
							
						 
					 
					
						
						
							
							Fixed   #9103  -- Added django.contrib.admin to the docs modindex (I think)  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9051  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-17 04:52:25 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							78999f24ee 
							
						 
					 
					
						
						
							
							Fixed   #9035  -- Reworded 'File uploads' link in docs index.txt to be clearer  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9047  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-16 05:58:53 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							1fcf33095f 
							
						 
					 
					
						
						
							
							Fixed   #9091  -- Rephrased Variable() documentation. Thanks, telenieko  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9044  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-16 05:42:11 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							772639c692 
							
						 
					 
					
						
						
							
							Edited some recent docs changes  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9042  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-16 05:31:00 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							3b0bf9805d 
							
						 
					 
					
						
						
							
							Fixed   #9097  -- Fixed typo in tutorial04.txt. Thanks, zhe  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9041  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-16 05:30:48 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							fdd3cb4930 
							
						 
					 
					
						
						
							
							Edited forms/index.txt changes from [9030]  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9040  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-16 05:22:08 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							fe3a560768 
							
						 
					 
					
						
						
							
							Added mention of inclusion tags to reusable form templates documentation  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9035  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-15 15:44:59 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							b8ba0154b8 
							
						 
					 
					
						
						
							
							Fixed   #9085 : Modified some example form HTML to be XHTML, consistent with Django default rendering. Thanks to Jarek Zgoda for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9034  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-15 12:14:31 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							7617e73c8c 
							
						 
					 
					
						
						
							
							Added documentation on creating reusable form templates; thanks for the suggestion, oggie rob  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9033  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-15 09:30:05 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							6fcdcbd456 
							
						 
					 
					
						
						
							
							Clarified the wording of the section on customizing form.errors within a field loop  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9032  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-15 00:13:25 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							5389c0d2af 
							
						 
					 
					
						
						
							
							Added documentation of the Form class's custom __iter__ method to the forms API reference as well  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9031  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-15 00:07:13 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							7ac86d17c8 
							
						 
					 
					
						
						
							
							Added documentation for looping over a form's fields in a template  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9030  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-14 23:55:09 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							e820b54401 
							
						 
					 
					
						
						
							
							Fixed   #9044 : Corrected mistake in a closing tag in an example template. Thanks to Rick Vanderzwet for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9029  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-14 13:10:36 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							47091ab5b5 
							
						 
					 
					
						
						
							
							Fixed   #9032 : Corrected some minor typos in the admin docs. Thanks to rduffield for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9028  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-14 12:59:39 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							c9f0dd1ed6 
							
						 
					 
					
						
						
							
							Fixed   #9075 : Added a call to close() in the example file upload handler. Thanks to Brendan (bmsleight) for the suggestion.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9027  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-14 10:32:04 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							ea0fe604d8 
							
						 
					 
					
						
						
							
							Fixed   #9078 : Added commas to the example URLconf lines so that they can be easily copied and pasted. Thanks to mo.longman@gmail.com for the suggestion.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9026  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-14 09:39:04 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							83d2cb79cb 
							
						 
					 
					
						
						
							
							Fixed   #9077 : Modified the database installation notes to point to somewhere useful, rather than initd.org's rant page about Trac. Thanks to velo for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9025  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-14 09:34:31 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							e600d00b44 
							
						 
					 
					
						
						
							
							Fixed   #9067 : Added a note that you can register a model with the admin without providing a ModelAdmin object. Thanks to Rob Hudson for the suggestion.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9024  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-14 08:58:16 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							7ab3285f64 
							
						 
					 
					
						
						
							
							Fixed   #9060 : Clarified some language in the description of modelformset_factory. Thanks to gsf for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9023  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-14 08:36:58 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							7931da87ec 
							
						 
					 
					
						
						
							
							Fixed   #9059 : Corrected some markup in tutorial 4 that incorrectly identified a template variable as a function. Thanks to zen for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9022  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-14 08:28:55 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							a8d2810be5 
							
						 
					 
					
						
						
							
							Fixed   #9048 : Corrected markup typo in tutorial 4. Thanks to gkelly for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9021  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-14 08:15:22 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							bc75e912a4 
							
						 
					 
					
						
						
							
							Fixed   #9046 : Corrected a typo in the m2m intermediate docs. Thanks to djoume for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9020  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-14 07:52:45 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							5a4feb9ec2 
							
						 
					 
					
						
						
							
							Fixed   #9052 : Corrected typo in file handling docs. Thanks to KiWiB0RG for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9018  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-14 06:49:28 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Rosner 
							
						 
					 
					
						
						
						
						
							
						
						
							2d8d69f9ae 
							
						 
					 
					
						
						
							
							Fixed   #9050  -- Fixed a typo in the 1.0 porting guide in the admin section. Thanks ahebert.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9017  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-12 16:56:09 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Rosner 
							
						 
					 
					
						
						
						
						
							
						
						
							9ee0b0d384 
							
						 
					 
					
						
						
							
							Fixed   #9027  -- Corrected the documentation about can_delete default value. Thanks gsf for catching this.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9016  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-12 16:52:28 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Rosner 
							
						 
					 
					
						
						
						
						
							
						
						
							1a2296267d 
							
						 
					 
					
						
						
							
							Fixed   #9056  -- Corrected a typo in topic/forms/modelforms.txt documentation. Thanks drozzy for catching this.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9015  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-12 15:52:39 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							1b58b77f0d 
							
						 
					 
					
						
						
							
							Edited docs changes from [9010] and [9011]  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9014  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-11 03:32:28 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							8c6f5c6f05 
							
						 
					 
					
						
						
							
							Edited i18n.txt changes from [9009]  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9013  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-11 03:28:49 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							868748e196 
							
						 
					 
					
						
						
							
							Fixed   #9018  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9012  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-11 02:59:11 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							bc5cddc5c5 
							
						 
					 
					
						
						
							
							Clarified the bit in the tutorial about creating your first admin.py -  fixes   #8891  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9011  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-11 02:57:31 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							1c78bf4b98 
							
						 
					 
					
						
						
							
							Small documentation tweaks,  fixes   #9000  - thanks, ramiro  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9010  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-11 02:43:32 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							b0da050b83 
							
						 
					 
					
						
						
							
							Clarified i18n docs concerning verbose_name and verbose_name_plural -  fixes   #7102  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9009  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-11 02:32:59 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							11fd9f2d84 
							
						 
					 
					
						
						
							
							Fixed   #8858  by correcting typo  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9006  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-11 00:30:31 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							f17f2bfd1f 
							
						 
					 
					
						
						
							
							Re-added docs for QuerySet reverse() and all() methods, refs  #9000  - thanks ramiro  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9005  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-11 00:24:02 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							33c29736bb 
							
						 
					 
					
						
						
							
							Fixed   #9010  -- Fixed typo in custom-file-storage.txt. Thanks, rduffield  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9003  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-10 15:09:53 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							665f9342d3 
							
						 
					 
					
						
						
							
							Reworded a bunch of the links on the docs index to be consistent  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8999  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-10 05:04:24 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							78cb60ab07 
							
						 
					 
					
						
						
							
							Changed the 'Getting help' section of the docs index.txt to have consistent trailing punctuation  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8998  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-10 04:53:44 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							8be80c2380 
							
						 
					 
					
						
						
							
							Fixed   #8996  -- Fixed small typo in documentation.txt. Thanks, rduffield  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8997  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-10 04:04:57 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							1aa8449fb7 
							
						 
					 
					
						
						
							
							Fixed   #9003  -- Fixed awkward wording in querysets.txt  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8996  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-10 03:57:52 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							568b8637bf 
							
						 
					 
					
						
						
							
							Fixed   #8958  -- Fixed typo in cache.txt. Thanks, benwalton@gmail.com  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8995  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-09 19:53:57 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							2dd4b949f5 
							
						 
					 
					
						
						
							
							Fixed   #8986  -- Fixed typo in install.txt. Thanks, rduffield  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8993  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-09 19:09:05 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							646c12f0d4 
							
						 
					 
					
						
						
							
							Fixed   #8985  -- Removed two FAQ questions that have been outdated by the 1.0 release, including 'When will you release Django 1.0?' Good riddance!  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8991  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-09 02:33:14 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							8f78d7f940 
							
						 
					 
					
						
						
							
							Fixed   #8983  -- Removed a funky character from faq/general.txt. Thanks, Fernando Correia  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8988  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-09 01:56:01 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							74f386dba2 
							
						 
					 
					
						
						
							
							Fixed   #8979  -- Made a bunch of typo/formatting fixes to the docs. Thanks, ramiro  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8987  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-09 01:54:20 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							834a041e67 
							
						 
					 
					
						
						
							
							Fixed   #8982  -- Removed funky character from whatsnext.txt. Thanks, Fernando Correia  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8986  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-09 01:43:17 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							a5e0c5b182 
							
						 
					 
					
						
						
							
							Fixed   #8580  -- Hyperlinked some module names in settings.txt. Thanks, msaelices  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8983  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-07 23:08:01 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							908f0a66e3 
							
						 
					 
					
						
						
							
							Small wording improvements to sitemaps.txt  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8981  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-07 22:56:03 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							571f4639a9 
							
						 
					 
					
						
						
							
							Small wording improvements to cache.txt  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8980  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-07 22:55:31 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							acf2600a4c 
							
						 
					 
					
						
						
							
							Fixed   #8911  -- Several corrections for the 1.0 porting documentation, thanks arien.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8979  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-07 19:15:41 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
						
						
							
						
						
							165b55828a 
							
						 
					 
					
						
						
							
							Fixed   #8924  -- Corrected a couple typos in queries documentation, thanks arien.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8978  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-07 18:46:11 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							e97ec4d142 
							
						 
					 
					
						
						
							
							Fixed   #8919  -- Fixed typo in signals.txt. Thanks, jbalogh  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8977  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-07 06:18:59 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							756fa95bd2 
							
						 
					 
					
						
						
							
							Fixed   #8727  -- Fixed broken link to Italian SSN page in localflavor.txt  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8976  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-06 23:44:42 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							c402e3b977 
							
						 
					 
					
						
						
							
							Fixed   #8858  -- Fixed typo in SQLite version information. Also reworded it to be a bit more future-compatible. Thanks, adamv  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8975  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-06 16:54:25 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							a0875bcc89 
							
						 
					 
					
						
						
							
							Fixed   #8883  -- Fixed some glitches in model reference. Thanks, arien  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8974  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-06 16:51:24 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							83dd70fddb 
							
						 
					 
					
						
						
							
							Fixed   #8909  -- Fixed typo in contenttypes docs. Thanks, arien  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8973  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-06 16:49:31 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							5f83e0488a 
							
						 
					 
					
						
						
							
							Fixed   #8894  -- Fixed typo in modelforms.txt. Thanks, koblaid@web.de  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8972  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-06 00:09:17 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							698dbb63e0 
							
						 
					 
					
						
						
							
							I am not a lolcat  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8970  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-05 17:40:30 +00:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
						
						
							
						
						
							7982519477 
							
						 
					 
					
						
						
							
							Added bio for myself  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8969  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-05 15:39:58 +00:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
						
						
							
						
						
							a5bf0af67c 
							
						 
					 
					
						
						
							
							Fixed typo in my name  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8967  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-05 14:07:17 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
						
						
							
						
						
							6008485b80 
							
						 
					 
					
						
						
							
							Made a bunch of edits and typo corrections to 1.0-porting-guide.txt  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8966  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-05 00:48:34 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							3239849174 
							
						 
					 
					
						
						
							
							Correct bad target in middleware documentation  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8964  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-04 09:50:45 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							36b120c23a 
							
						 
					 
					
						
						
							
							Fixed   #8867 : Corrected a couple typos in the signals documentation  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8963  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-04 07:29:27 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							ca422fd89b 
							
						 
					 
					
						
						
							
							Now that the 1.0 release is finalized, we can fill in the revision number for it.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8962  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-04 05:26:09 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							58fad7f9fd 
							
						 
					 
					
						
						
							
							Added the last notes about 1.0, including the inevitable (short!) list of known issues.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8959  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 23:10:07 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							7c2e2d2b5e 
							
						 
					 
					
						
						
							
							Added a note about queryset.query being opaque.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8955  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 21:47:57 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							c19d2dd8f7 
							
						 
					 
					
						
						
							
							Cleaned up some whitespace  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8953  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 21:22:49 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							00dcd49ffb 
							
						 
					 
					
						
						
							
							I'm not working for the Guardian just yet - not until October  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8952  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 21:21:24 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							d7e37b661c 
							
						 
					 
					
						
						
							
							Added a note about SQLite versions before 3.3.6. Refs  #7570 . Thanks, ramiro.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8950  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 21:10:42 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							cdffe90c8a 
							
						 
					 
					
						
						
							
							And now we don't need that redundant extra sentence  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8949  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 20:57:46 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							d6f94676cb 
							
						 
					 
					
						
						
							
							Fix my bio  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8948  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 20:56:26 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							7b0b992a87 
							
						 
					 
					
						
						
							
							Fixed   #8849 : added some more "new in 1.0" flags. Thanks, ramiro.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8947  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 20:55:04 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							ee28ee9311 
							
						 
					 
					
						
						
							
							Fixes   #8847  - a bunch of cleanups to the i18n docs. Thanks, ramiro!  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8946  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 20:52:20 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							8df158048c 
							
						 
					 
					
						
						
							
							Typo fixes.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8945  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 20:41:21 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Rosner 
							
						 
					 
					
						
						
						
						
							
						
						
							dd75469d4f 
							
						 
					 
					
						
						
							
							Added my location to the committer details.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8944  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 20:35:31 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Rosner 
							
						 
					 
					
						
						
						
						
							
						
						
							26dd79c8aa 
							
						 
					 
					
						
						
							
							Updated my entry on the committers documentation.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8943  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 20:30:52 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							62fc155343 
							
						 
					 
					
						
						
							
							Fixed   #8848 : clarified custom file storage backend docs in light of the more clear code comments.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8942  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 20:27:54 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							5697f87914 
							
						 
					 
					
						
						
							
							Fixed   #8701 , a couple of bad links in the docs.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8941  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 20:23:18 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							d302be429b 
							
						 
					 
					
						
						
							
							Corrected some minor typos in the committers details.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8940  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 20:21:31 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							c5d56be365 
							
						 
					 
					
						
						
							
							Fixed a small typo in docs/internals/committers.txt  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8939  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 20:14:57 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							e62ab77054 
							
						 
					 
					
						
						
							
							A collection of improvements and cleanups to the 1.0 release notes and porting guide.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8937  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 19:58:34 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							9d5e77d26d 
							
						 
					 
					
						
						
							
							Cleaned up the list of authors/contributors so that people actually working on Django get some props.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8936  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 19:58:21 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							cd5a00b4e4 
							
						 
					 
					
						
						
							
							Fixed   #8838  - two typos in model field docs. Thanks, arien  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8927  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 15:35:58 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							fd1d986bb1 
							
						 
					 
					
						
						
							
							Fixed   #8802  -- Documented MySQL's usage of 1/0 instead of True/False for model  
						
						... 
						
						
						
						BooleanFields.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8910  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 06:14:13 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							aea34087ef 
							
						 
					 
					
						
						
							
							Fixed   #8811 : Corrected URL example in tutorial part 2  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8906  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 04:43:57 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							a92d511a17 
							
						 
					 
					
						
						
							
							Fixed   #8804 : corrected URL example in sitemaps docs  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8905  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 04:42:49 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							87da9cd759 
							
						 
					 
					
						
						
							
							Fixed   #8829 : Corrected typo in docs/topics/forms/index.txt  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8904  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 04:40:52 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							d8b56ecbf6 
							
						 
					 
					
						
						
							
							Added a stability note about template tag names.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8887  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 00:09:52 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							c30494b616 
							
						 
					 
					
						
						
							
							Added two items (django.utils.translation and django.utils.http) to the API  
						
						... 
						
						
						
						stability document and removed a duplicate mention of django.utils.encoding.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8886  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-03 00:09:45 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							ecb5f4c693 
							
						 
					 
					
						
						
							
							Fixed the documentation HTML writer to not apply smartypants to literal blocks.  Fixes   #8696 ; thanks, ramiro.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8875  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 19:49:23 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							b13276b1ff 
							
						 
					 
					
						
						
							
							Fixed another typo in 1.0 notes.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8874  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 19:45:06 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							0a7e454fa2 
							
						 
					 
					
						
						
							
							Fixed a typo in 1.0 notes.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8873  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 19:34:20 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							f6a3652eb2 
							
						 
					 
					
						
						
							
							Fixed   #8788 : fixed a few typoes in [8805]. Thanks, Matthew Flanagan and mir.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8872  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 19:33:56 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							e997a1c3df 
							
						 
					 
					
						
						
							
							Rough draft of 1.0 release notes. Not in any way finished.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8870  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 19:19:20 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Rosner 
							
						 
					 
					
						
						
						
						
							
						
						
							6656642d36 
							
						 
					 
					
						
						
							
							Use a lower case 's' in URLS in the 1.0 porting guide.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8869  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 19:08:31 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Rosner 
							
						 
					 
					
						
						
						
						
							
						
						
							5ff51f6bb3 
							
						 
					 
					
						
						
							
							Corrected a minor typo in the 1.0 porting guide.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8868  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 19:04:33 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							58e3ef76db 
							
						 
					 
					
						
						
							
							Updated API stability document for 1.0.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8866  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 18:45:33 +00:00 
						 
				 
			
				
					
						
							
							
								Simon Willison 
							
						 
					 
					
						
						
						
						
							
						
						
							e00aa16e24 
							
						 
					 
					
						
						
							
							Fixed spelling typo in porting guide and added __str__ to __unicode__ to the model example  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8865  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 18:38:55 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Rosner 
							
						 
					 
					
						
						
						
						
							
						
						
							a658d45a6c 
							
						 
					 
					
						
						
							
							Improved the docs even more.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8864  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 17:57:18 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Rosner 
							
						 
					 
					
						
						
						
						
							
						
						
							7163fe4d96 
							
						 
					 
					
						
						
							
							Added some docs on model formsets in views.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8863  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 17:57:02 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							bc768e2b47 
							
						 
					 
					
						
						
							
							A bunch of cleanups to file documentation. Along the way some references to the old file methods were removed - thanks, varikin.  
						
						... 
						
						
						
						Fixes  #8642 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8862  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
					
						2008-09-02 17:33:51 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Rosner 
							
						 
					 
					
						
						
						
						
							
						
						
							c1de41f4d2 
							
						 
					 
					
						
						
							
							Fixed   #7973  -- Added exclude to BaseModelAdmin to make everything consistent with the form/formset factories. Refs  #8071  to make it easier to get at exclude. Thanks julien for the patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8861  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 17:26:24 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							24d7b49849 
							
						 
					 
					
						
						
							
							Fixed   #8496 : added a note about admindocs to the project template and the tutorial. Thanks, ericvw.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8859  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 16:52:42 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							b1f5ed00cb 
							
						 
					 
					
						
						
							
							Fixed   #7943 : added documentation on overriding admin templates. Thanks, mwdiers  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8858  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 16:47:45 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							23f012dbfa 
							
						 
					 
					
						
						
							
							Cleaned up a bunch of minor doc stuff:  
						
						... 
						
						
						
						* Removed flatpages/redirects README; no other contrib apps have those.
  * Cleaned up top-level README to be more readable.
  * Removed outdated references to old docs (Fixes  #8701 )
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8857  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 16:42:13 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							1156db790a 
							
						 
					 
					
						
						
							
							Added a rough draft of the 1.0 porting guide, and an obviously incomplete placeholder for the 1.0 release notes. Thanks to daonb, patrickf, and ramiro for contributions to this porting guide. Refs  #8438 .  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8856  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 16:27:47 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							f31425e8e2 
							
						 
					 
					
						
						
							
							Fixed   #7154  -- Inherit all model managers from abstract base classes.  
						
						... 
						
						
						
						Also added documentation describing how manager inheritance works (and when
manager aren't inherited). Based on some patches from sebastian_noack and
emulbreh.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8851  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 09:04:54 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							64a9469127 
							
						 
					 
					
						
						
							
							Fixed   #8753 : converted "new in ..." callouts to proper Sphinx "versionadded/versionchanged" directives. Thanks to Marc Fargas for all the heavy lifting here.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8843  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 03:40:42 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							c7a10b677d 
							
						 
					 
					
						
						
							
							Fixed   #8786 : Moved phone number field docs to localflavor  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8830  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-02 00:26:28 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							a47bffad17 
							
						 
					 
					
						
						
							
							Fixed   #8757 : Corrected formatting of inclusion tag example  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8828  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-01 23:57:55 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Rosner 
							
						 
					 
					
						
						
						
						
							
						
						
							502fc3ae56 
							
						 
					 
					
						
						
							
							Fixed   #8759  -- Corrected a typo in example code. Thanks James Tauber for the find.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8826  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-01 23:06:39 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							3a18002bbd 
							
						 
					 
					
						
						
							
							Fixed   #8210  and  #8664 : moved USStateField and PhoneNumberField to django.contrib.localflavor.us. This is a backwards-incompatible change, albeit a minor one; just add an aditional import and go on your way.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8819  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-01 22:15:35 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							ea05e61b2b 
							
						 
					 
					
						
						
							
							Fixed   #8209 : ModelForms now validate unique constraints. Alex Gaynor did much of this work, and Brian Rosner helped as well.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8805  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-01 19:08:08 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							a72eae0be7 
							
						 
					 
					
						
						
							
							Fixed   #8728 : Corrected some broken links in the documentation  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8792  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-01 09:45:30 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							82e2f9bb98 
							
						 
					 
					
						
						
							
							Fixed   #8698 : Updated overview docs for cache middleware to show that it's been split into two classes  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8791  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-01 09:42:15 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							f88fb967bd 
							
						 
					 
					
						
						
							
							Fixed   #8705 : Corrected some formatting issues in models documentation  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8788  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-01 09:35:07 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							b085ccce6c 
							
						 
					 
					
						
						
							
							Fixed   #8730 : Incorporated (with minor changes) additions/enhancements to one-to-one docs  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8787  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-09-01 09:32:41 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							4ae746b574 
							
						 
					 
					
						
						
							
							Added a TypedChoiceField which acts just like ChoiceField, except that it  
						
						... 
						
						
						
						returns a value coerced by some provided function. Refs #6967 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8771  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-08-31 20:10:50 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
						
						
							
						
						
							a63a83e5d8 
							
						 
					 
					
						
						
							
							A rewrite of the reverse URL parsing: the reverse() call and the "url" template tag.  
						
						... 
						
						
						
						This is fully backwards compatible, but it fixes a bunch of little bugs. Thanks
to SmileyChris and Ilya Semenov for some early patches in this area that were
incorporated into this change.
Fixed  #2977 , #4915 , #6934 , #7206 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8760  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-08-31 11:11:20 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							84ef4a9b1d 
							
						 
					 
					
						
						
							
							Fixed   #8641 : Documented the fact that file-saving methods must receive a File instance  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8759  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-08-31 10:37:44 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							ce24a1f81d 
							
						 
					 
					
						
						
							
							Fixed   #7654 : Documented the fact that file upload handlers must be modified before reading request.POST  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8758  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-08-31 10:23:36 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							78ca7a6c07 
							
						 
					 
					
						
						
							
							Fixed   #8533 : restored model inheritance docs, and updated one-to-one docs to match  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8757  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-08-31 10:13:32 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							f2c80f93d9 
							
						 
					 
					
						
						
							
							Fixed   #8658 : Added cross-references to signals docs from Model.save() docs  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8755  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-08-31 09:03:18 +00:00 
						 
				 
			
				
					
						
							
							
								James Bennett 
							
						 
					 
					
						
						
						
						
							
						
						
							6ba55eee30 
							
						 
					 
					
						
						
							
							Fixed   #8679 : use full signature of Model.save() in docs and remove no-longer-used 'raw' argument  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8754  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2008-08-31 08:55:08 +00:00