Aymeric Augustin 
							
						 
					 
					
						
						
							
						
						d9061c01a9 
					 
					
						
						
							
							Fixed   #5964  -- Added unicode-aware versions of urlunquote and urlunquote_plus.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@17407  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2012-01-29 09:00:12 +00:00 
						 
				 
			
				
					
						
							
							
								Alex Gaynor 
							
						 
					 
					
						
						
							
						
						43920cd32e 
					 
					
						
						
							
							Remove a handful of import * from the tests.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@16973  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-10-13 12:53:02 +00:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						b0d274dbd5 
					 
					
						
						
							
							Added missing future imports missed in r16167.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@16169  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-05-06 19:49:06 +00:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						7dd72360a2 
					 
					
						
						
							
							Make use of new translation and settings context manager in the tests.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@16167  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-05-06 13:29:44 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						afd040d4d3 
					 
					
						
						
							
							Updated test assertions that have been deprecated by the move to unittest2. In summary, this means:  
						
						... 
						
						
						
						assert_ -> assertTrue
 assertEquals -> assertEqual
 failUnless -> assertTrue
For full details, see http://www.voidspace.org.uk/python/articles/unittest2.shtml#deprecations 
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15728  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-03-03 15:04:39 +00:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						462d3115a3 
					 
					
						
						
							
							Fixed   #5672  -- Allow the separator in the get_text_list utility function to be translated. Thanks, Claude.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@14876  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2010-12-12 22:53:49 +00:00 
						 
				 
			
				
					
						
							
							
								Russell Keith-Magee 
							
						 
					 
					
						
						
							
						
						1bcde8d6b4 
					 
					
						
						
							
							Migrated text doctests. Thanks to Stephan Jaekel.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@13894  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2010-09-27 15:17:08 +00:00 
						 
				 
			
				
					
						
							
							
								Joseph Kocherhans 
							
						 
					 
					
						
						
							
						
						c8cd8b80aa 
					 
					
						
						
							
							Fixed   #12119 . Changed smart_split to stop splitting on whitespace in quotes. Thanks, emulbreh.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@12581  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2010-02-24 20:52:14 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						be4a83c448 
					 
					
						
						
							
							Fixed   #9315  -- Handle spaces in URL tag arguments.  
						
						... 
						
						
						
						Thanks Natalia Bidart and Matías Bordese for most of this patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10462  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2009-04-10 04:13:27 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						a6f429e37e 
					 
					
						
						
							
							Added consistent support for double- and single-quote delimiters in templates.  
						
						... 
						
						
						
						Some template filters and tags understood single-quoted arguments, others
didn't. This makes everything consistent. Based on a patch from akaihola.
Fixed  #7295 .
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10118  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2009-03-23 09:40:25 +00:00 
						 
				 
			
				
					
						
							
							
								Gary Wilson Jr 
							
						 
					 
					
						
						
							
						
						8c442f21dc 
					 
					
						
						
							
							Fixed   #5816  -- Fixed a regression from [6333] that generates incorrect cookie "expires" dates when using a locale other than English.  Introduced http_date and cookie_date utility functions.  Thanks for the report Michael Lemaire.  Thanks for the patch Karen Tracey and SmileyChris.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@6634  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2007-10-31 03:59:40 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						bece031772 
					 
					
						
						
							
							Fixed   #5734  -- Fixed an omission where we weren't passing the "safe" argument  
						
						... 
						
						
						
						upstream in django.utils.http.urlquote(). Thanks, Thomas Güttler.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6554  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2007-10-20 08:38:59 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						953badbea5 
					 
					
						
						
							
							Merged Unicode branch into trunk (r4952:5608). This should be fully  
						
						... 
						
						
						
						backwards compatible for all practical purposes.
Fixed  #2391 , #2489 , #2996 , #3322 , #3344 , #3370 , #3406 , #3432 , #3454 , #3492 , #3582 , #3690 , #3878 , #3891 , #3937 , #4039 , #4141 , #4227 , #4286 , #4291 , #4300 , #4452 , #4702 
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2007-07-04 12:11:04 +00:00 
						 
				 
			
				
					
						
							
							
								Malcolm Tredinnick 
							
						 
					 
					
						
						
							
						
						5e739219de 
					 
					
						
						
							
							Fixed   #3733  -- Fixed up quote parsing in smart_split(). Thanks, Ivan Chelubeev.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@4870  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2007-03-30 11:57:50 +00:00