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 
							
						 
					 
					
						
						
						
						
							
						
						
							1aac357d34 
							
						 
					 
					
						
						
							
							Fixed   #9303 : comment templatetags no longer assume the built-in comment model.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9891  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-23 22:46:32 +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 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							7d4a954836 
							
						 
					 
					
						
						
							
							Refactored CommentForm.get_comment_object into a handful of separete methods to make it easier for subclasses to provide custom models and data. Refs  #8630 .  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9889  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-23 22:16:00 +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 
						 
				 
			
				
					
						
							
							
								Brian Rosner 
							
						 
					 
					
						
						
						
						
							
						
						
							4bd24474c0 
							
						 
					 
					
						
						
							
							Fixed   #10274  -- Fixed an embarrassing mistake in BaseGenericInlineFormSet.get_queryset. Thanks Zak Johnson for the report and akaihola for the patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9886  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-23 04:30:38 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							13d3d9d93f 
							
						 
					 
					
						
						
							
							Added Tomáš Ehrlich to the AUTHORS list (Elvard from r9876)  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9882  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-22 10:13:37 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							5f7c6a8d29 
							
						 
					 
					
						
						
							
							Fixed   #9031  -- Clarified the error message when the label used to run a specific test case method doesn't name a valid test case class. Thanks to Thomas Guettler for the suggestion and patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9879  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-22 08:34:51 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							8569157664 
							
						 
					 
					
						
						
							
							Fixed   #9276  -- Corrected the way the CSS class is rolled out in a stacked edit-inline template. Thanks to creecode@gmail.com for the report and fix.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9877  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-22 08:05:40 +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 
							
						 
					 
					
						
						
						
						
							
						
						
							39dd44570c 
							
						 
					 
					
						
						
							
							Fixed   #10025  -- Corrected two minor typos in source documentation. Thanks to Tarken for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9861  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-22 06:08:37 +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 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							8242735405 
							
						 
					 
					
						
						
							
							Fixed   #10307  -- Removed references to FM/Federated States of Micronesia from the US localflavor STATES_NORMALIZED setting. Thanks to mnd for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9855  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-21 10:10:13 +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 
							
						 
					 
					
						
						
						
						
							
						
						
							cd0611bd83 
							
						 
					 
					
						
						
							
							Fixed   #8551  -- Added REMOTE_ADDR to the default Test Client environment. Thanks to schmichael for the report and patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9847  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-21 07:19:12 +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 
							
						 
					 
					
						
						
						
						
							
						
						
							fc02370cee 
							
						 
					 
					
						
						
							
							Fixed   #10289  -- Corrected typo that produced oversensitive rejection of Postgres versions. Thanks to Ian Kelly for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9845  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-17 23:33:30 +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 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							fd28d04c39 
							
						 
					 
					
						
						
							
							Merge branch 'master' into upstream-trunk  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9843  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-16 21:03:09 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
						
						
							
						
						
							8ada8d7c03 
							
						 
					 
					
						
						
							
							Fixed   #9214 : EmailMessage now respects the From header instead of blindly using from_email. Thanks, Tai Lee.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9842  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-16 20:47:39 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							ecc55503f4 
							
						 
					 
					
						
						
							
							Fixed   #10196 : Restored setting of image file width and height fields lost in r9766, and added tests for this function.  Thanks to vicvicvic for the ticket and patch and for Alex for reminding me not to break non-PIL-boxes with the new tests.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9841  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-16 18:34:28 +00:00 
						 
				 
			
				
					
						
							
							
								Karen Tracey 
							
						 
					 
					
						
						
						
						
							
						
						
							11bfe72366 
							
						 
					 
					
						
						
							
							Fixed   #10121 : Restored code lost in r9766 that prevented overwriting an already-set blank=True FileField with blank.  This would happen, for instance, in the admin if an object with a FileField was edited/saved but the file not re-uploaded, resulting in the association to the previously-uploaded file being lost.  Adding the ability to re-blank FileFields when they are once set is the subject of a different ticket ( #7048 ), for now the pre-9766 behavior here has just been restored in order to avoid unexpected data loss.  Thanks to Alex for help in understanding how to fix this without un-doing the intent of r9766.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9840  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-16 17:30:12 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							2b1bb716ff 
							
						 
					 
					
						
						
							
							Fixed   #10248  -- Corrected handling of the GROUP BY clause when using a DateQuerySet. Thanks to Alex Gaynor for the report and patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9839  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-16 12:38:11 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							fb64ea7896 
							
						 
					 
					
						
						
							
							Fixed   #10132  -- Corrected the interaction of extra() queries with the values() clause. Thanks to Glen Maynard for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9838  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-16 12:29:31 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							58ea6d4561 
							
						 
					 
					
						
						
							
							Fixed   #10256  -- Corrected the interaction of extra(select=) with values() and values_list() where an explicit list of columns is requested.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9837  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-16 12:28:37 +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 
						 
				 
			
				
					
						
							
							
								Marc Fargas 
							
						 
					 
					
						
						
						
						
							
						
						
							bfbd62752a 
							
						 
					 
					
						
						
							
							Closes   #8836 , Updated translation for Slovenian.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9832  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-13 11:04:19 +00:00 
						 
				 
			
				
					
						
							
							
								Marc Fargas 
							
						 
					 
					
						
						
						
						
							
						
						
							5ff216b40f 
							
						 
					 
					
						
						
							
							Updated Spanish translation.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9828  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-13 10:57:31 +00:00 
						 
				 
			
				
					
						
							
							
								Marc Fargas 
							
						 
					 
					
						
						
						
						
							
						
						
							739ae2b04b 
							
						 
					 
					
						
						
							
							Updated Catalan translation  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9827  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-13 10:57:06 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Rosner 
							
						 
					 
					
						
						
						
						
							
						
						
							e4e964510c 
							
						 
					 
					
						
						
							
							Fixed   #10240  -- Restored YAML serialization with Decimal objects that broke with r9823. Thanks Alex Gaynor for the report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9825  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-12 02:54:39 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Rosner 
							
						 
					 
					
						
						
						
						
							
						
						
							e5cd43e588 
							
						 
					 
					
						
						
							
							Fixed   #5903  -- DecimalField.get_default() now correctly returns a Decimal object when the model instance was not retrieved from the database. Thanks Justin Driscoll and pigletto.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9823  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-11 20:13:17 +00:00 
						 
				 
			
				
					
						
							
							
								Ian Kelly 
							
						 
					 
					
						
						
						
						
							
						
						
							e9af96de1e 
							
						 
					 
					
						
						
							
							Fixed   #10224 : Don't attempt to decode binary string data in the Oracle backend.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9821  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-11 00:15:23 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							f0a7470e40 
							
						 
					 
					
						
						
							
							Fixed   #10160  -- Modified evaluation of F() expressions to protect against potential SQL injection attacks. Thanks to Ian Kelly for the suggestion and patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9820  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-08 11:14:56 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
						
						
							
						
						
							d4a3a4b0ca 
							
						 
					 
					
						
						
							
							Fixed   #10199  -- Modified aggregate() calls to clone the base query so that the base query can be reused. Thanks to Alex Gaynor for the report and patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9819  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-08 11:14:07 +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 
							
						 
					 
					
						
						
						
						
							
						
						
							0326574d0e 
							
						 
					 
					
						
						
							
							Fixed tabs in source, stupid emacs.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9817  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-07 19:32:37 +00:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
						
						
							
						
						
							95ed07e888 
							
						 
					 
					
						
						
							
							Fixed some function name errors in code doc.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@9816  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
					 
					
						2009-02-07 18:06:32 +00:00