Georg Bauer 
							
						 
					 
					
						
						
							
						
						e19112b47c 
					 
					
						
						
							
							fixed   #2198 : updated argentinan translations  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3208  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-26 12:24:22 +00:00 
						 
				 
			
				
					
						
							
							
								Georg Bauer 
							
						 
					 
					
						
						
							
						
						b5a8169f8e 
					 
					
						
						
							
							fixed   #1560 : javascript translations for zh_CN  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3207  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-26 12:22:04 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						db366b4a78 
					 
					
						
						
							
							Fixed   #1796  -- implemented more robust normalisation for module filenames  
						
						... 
						
						
						
						before comparing them. Ivan Saglaev found a case where r3202 did not work
properly.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3206  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-26 09:01:07 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						25ffce4c83 
					 
					
						
						
							
							Fixed   #2235  -- corrected a couple of typos pointed out by jvinet@zeroflux.org.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3205  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-26 03:02:42 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						2211eddb36 
					 
					
						
						
							
							More proofreading to docs/fastcgi.txt. Still not finished.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3204  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-26 01:18:56 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						2837455878 
					 
					
						
						
							
							Fixed   #2168  -- Made comment templates more accessible  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3203  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-26 00:48:12 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						fd702fe034 
					 
					
						
						
							
							Fixed   #1796  -- only load a single copy of each model, even when it is  
						
						... 
						
						
						
						referenced via different import paths. Solves a problem with many-to-many
relations being set up incorrectly. Thanks to Curtis Thompson, Luke Plant and
Simon Willison for some excellent debugging of the problem. Refs #2232  (may
also have fixed that).
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3202  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-25 14:49:34 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						23c24fc08b 
					 
					
						
						
							
							Fixes   #1812  -- Added model validity checks to ensure that models.py exists, and has been successfully imported for all INSTALLED_APPS. Previous behaviour was to silently ignore empty/problem models, which resulted in the display of an admin page that doesn't display a supposedly installed model. Thanks to Ian Holsman for the original report.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3201  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-25 04:24:15 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						dc473309ef 
					 
					
						
						
							
							Fixed   #1661  -- Added logic for string-form model references in the 'to' argument of OneToOneFields. Includes regression test.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3197  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-23 08:16:36 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						6cbdbffc80 
					 
					
						
						
							
							Added comments to clarify the string->field name resolution logic.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3196  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-23 07:43:33 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						0d4b5b9b4a 
					 
					
						
						
							
							Fixed   #1662  -- Added resolver for string-form model references for models that have already been loaded, with tests to validate both forward and backward referenced model names. Light refactoring of model loading to make regression tests behave more like normal model loading. Also clarifies the text of some validation errors.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3195  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-23 04:37:00 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
							
						
						bc2d8cdbc6 
					 
					
						
						
							
							Fixed   #2199 : deleting objects with generic foreign keys in the admin now works.  Thanks, Jay Parlar  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3194  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-22 18:44:06 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						10229c4a1e 
					 
					
						
						
							
							Changed default 500 view NOT to use RequestContext, to lessen the chance that the 500 view would raise an error in itself  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3193  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-22 16:28:40 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						d8acac975a 
					 
					
						
						
							
							Fixed typo in docs/request_response.txt  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3192  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-22 04:56:35 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
							
						
						a490d6b4f6 
					 
					
						
						
							
							Fixed a few small rst errors in request/response and fastcgi docs.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3191  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-21 23:06:24 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						a159f660fe 
					 
					
						
						
							
							Reverted [3184]. There's no such thing as models.PasswordField.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3189  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-21 14:42:52 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						68cfd446a3 
					 
					
						
						
							
							Fixed the "timeuntil" and "timesince" tests so that they don't fail on a  
						
						... 
						
						
						
						machine under heavy load.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3188  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-21 12:11:00 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						3465a4f6f4 
					 
					
						
						
							
							Fixed   #1240  -- Updated bash completion file to accomodate changes in r3174.  
						
						... 
						
						
						
						Thanks, Paolo.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3187  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-21 11:15:01 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						ae1234f2a2 
					 
					
						
						
							
							Fixed   #2163  -- Corrected typo when handling datetimes with timezones in the timesince filter. Thanks, Alex Dedul.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3186  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-21 11:11:03 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						239adf83d3 
					 
					
						
						
							
							Fixed   #2053  -- added an optional comparison argument to the "timesince" filter.  
						
						... 
						
						
						
						Added a "timeuntil" filter that works analogously. Thanks, john@sneeu.com .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3185  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-21 06:56:08 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						c4fa8a158a 
					 
					
						
						
							
							Fixed   #2071  -- documented the PasswordField (including cavaets). Thanks to  
						
						... 
						
						
						
						asmodai for the initial patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3184  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-21 04:49:12 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						b70a687777 
					 
					
						
						
							
							Fixed   #2031  -- Don't try to remove microseconds on date objects (only datetime)  
						
						... 
						
						
						
						for MySQL. Refs #316 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3183  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-21 04:13:48 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						ba22f55aa2 
					 
					
						
						
							
							Fixed   #1928  -- Correctly create foreign key references when there are multiple  
						
						... 
						
						
						
						keys on multiple models. Based on a patch from Geert Vanderkelen and some
diagnosis from hornero.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3182  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-21 03:39:47 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						0e92f70602 
					 
					
						
						
							
							Fixed runtests.py problem from [3177] where it assumed you were running the tests from within the tests directory  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3181  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 14:27:44 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						5f47161831 
					 
					
						
						
							
							Added semicolon test to regressiontests/initial_sql_regress/sql/simple.sql  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3180  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 14:11:59 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						dc4f726df9 
					 
					
						
						
							
							Fixed   #688  -- Changed default 404 and 500 views to use RequestContext  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3179  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 14:07:48 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						92571b0d48 
					 
					
						
						
							
							Fixed   #2119  -- fixed problems with splitting SQL statements into separate  
						
						... 
						
						
						
						statements. Uses a patch from eaw@woudy.org  and some contributions from
jpellerin@gmail.com . Also fixes  #2034  and #1935 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3178  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 08:00:44 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						3e97535907 
					 
					
						
						
							
							Fixed   #2161  -- handle trailing newlines in initial SQL data. Includes  
						
						... 
						
						
						
						regression test. Thanks to russellm.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3177  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 07:12:45 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						a513fcb455 
					 
					
						
						
							
							Added regressions tests to ensure that one-to-one and many-to-many fields  
						
						... 
						
						
						
						continue to interact properly. Refs #1064 . Refs #1506 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3176  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 05:29:19 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						76448d0c4b 
					 
					
						
						
							
							Added draft of docs/fastcgi.txt. Haven't finished editing this yet.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3175  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 05:25:02 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						32228d2031 
					 
					
						
						
							
							Added django/core/servers/fastcgi.py and manage.py 'runfcgi' option. Thanks, jcrasta@gmail.com  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3174  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 05:24:19 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						a4b11826a7 
					 
					
						
						
							
							Tightened up code in django.contrib.contenttypes.models.ContentTypeManager.get_for_model() to use get_or_create()  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3173  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 04:47:07 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						fb1c01b103 
					 
					
						
						
							
							Fixed   #1802  -- Fixed database integrity error when creating permission objects after renaming a model  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3172  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 04:44:27 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						37addba352 
					 
					
						
						
							
							Converted request.META['REQUEST_METHOD'] calls to request.method, throughout the Django codebase  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3171  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 04:34:13 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						b93de6a2cb 
					 
					
						
						
							
							Fixed bad formatting in 'lookup' model tests from [3157]  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3170  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 04:16:11 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						f67b629ada 
					 
					
						
						
							
							Fixed comma splice in auth.User model docstring  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3169  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 04:14:10 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						f2aab5b913 
					 
					
						
						
							
							Fixed   #1964  -- Fixed bug in fetching the dimensions of an ImageField. Thanks, Armin Ronacher  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3168  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 04:12:27 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						b2e5c4ef02 
					 
					
						
						
							
							Fixed   #1422  -- Docstring improvements for the models in the admin app. Thanks  
						
						... 
						
						
						
						akaihola.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3167  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 04:07:32 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						7aec348677 
					 
					
						
						
							
							Fixed   #2078  -- Improved HttpResponseRedirect and HttpResponsePermanentRedirect to percent-encode non-ASCII characters in the Location header. Thanks, Andrey  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3166  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 04:06:16 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						6b730e1e92 
					 
					
						
						
							
							Fixed   #2102  -- Template system 'for' loops now support generators. Thanks, dbm-django@mclachlan.com.au  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3165  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 03:58:16 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						136752ca9a 
					 
					
						
						
							
							Added 'method' attribute to HttpRequest objects  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3164  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 03:48:31 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						a09682fd63 
					 
					
						
						
							
							Fixed   #2185  -- Changed django.views.decorators.http.require_http_methods decorator to use HttpResponseNotAllowed instead of HttpResponseForbidden  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3163  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 03:17:57 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						551a0272e6 
					 
					
						
						
							
							Fixed   #2189  -- Optimized auth.User.get_all_permissions() to use select_related behind the scenes to avoid multiple queries. Thanks, konrad@gwu.edu  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3162  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 03:08:48 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						496d651546 
					 
					
						
						
							
							Fixed   #2190  -- Now allowing NullBooleanField to be given None  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3161  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 03:06:14 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						15cbc67ea2 
					 
					
						
						
							
							Fixed   #2195  -- Fixed spelling error in generic_relations model test. Other errors were fixed earlier today. Thanks, Tom Tobin  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3160  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 03:03:43 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						b10149b08a 
					 
					
						
						
							
							Fixed ReST error in [3158]. I think.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3159  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 02:57:19 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						5bd6b322a9 
					 
					
						
						
							
							Added 'Why is Django leaking memory?' to docs/faq.txt  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3158  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 02:52:15 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						a8a133cc6c 
					 
					
						
						
							
							Fixed   #1857  -- Fixed get_previous_by_FIELD and get_next_by_FIELD to work  
						
						... 
						
						
						
						properly with keyword arguments. Patch from tom@jerakeen.org .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3157  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-20 02:17:14 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						ed6d7285dd 
					 
					
						
						
							
							Fixed some small typos in generic_relations model tests  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3156  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-19 20:19:01 +00:00 
						 
				 
			
				
					
						
							
							
								Georg Bauer 
							
						 
					 
					
						
						
							
						
						1a1b1aa5db 
					 
					
						
						
							
							fixed   #2172 : updated russian translation  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@3151  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2006-06-19 13:48:11 +00:00