Jon Dufresne 
							
						 
					 
					
						
						
							
						
						9e38ed0536 
					 
					
						
						
							
							Fixed   #27486  -- Fixed Python 3.7 DeprecationWarning in intword and filesizeformat filters.  
						
						... 
						
						
						
						intword and filesizeformat passed floats to ngettext() which is
deprecated in Python 3.7. The rationale for this warning is documented
in BPO-28692: https://bugs.python.org/issue28692 .
For filesizeformat, the filesize value is expected to be an int -- it
fills %d string formatting placeholders. It was likely coerced to a
float to ensure floating point division on Python 2. Python 3 always
does floating point division, so coerce to an int instead of a float to
fix the warning.
For intword, the number may contain a decimal component. In English, a
decimal component makes the noun plural. A helper function,
round_away_from_one(), was added to convert the float to an integer that
is appropriate for ngettext(). 
						
						
					 
					
						2019-06-11 20:34:59 +02:00 
						 
				 
			
				
					
						
							
							
								Jon Dufresne 
							
						 
					 
					
						
						
							
						
						175656e166 
					 
					
						
						
							
							Fixed intword example in docs/ref/contrib/humanize.txt.  
						
						
						
						
					 
					
						2019-06-11 20:18:36 +02:00 
						 
				 
			
				
					
						
							
							
								Mads Jensen 
							
						 
					 
					
						
						
							
						
						398a859642 
					 
					
						
						
							
							Fixed   #27652  -- Doc'd that intcomma works with floats.  
						
						
						
						
					 
					
						2016-12-30 13:43:40 -05:00 
						 
				 
			
				
					
						
							
							
								rowanv 
							
						 
					 
					
						
						
							
						
						a6ef025dfb 
					 
					
						
						
							
							Fixed   #26124  -- Added missing code formatting to docs headers.  
						
						
						
						
					 
					
						2016-02-01 10:42:05 -05:00 
						 
				 
			
				
					
						
							
							
								Elif T. Kus 
							
						 
					 
					
						
						
							
						
						bca9faae95 
					 
					
						
						
							
							Fixed   #26020  -- Normalized header stylings in docs.  
						
						
						
						
					 
					
						2016-01-22 12:12:17 -05:00 
						 
				 
			
				
					
						
							
							
								Collin Anderson 
							
						 
					 
					
						
						
							
						
						7353e26d5d 
					 
					
						
						
							
							Fixed   #23340  -- Corrected naturaltime docs to match behavior.  
						
						... 
						
						
						
						Thanks zachborboa for the report and blackguest for the patch. 
						
						
					 
					
						2014-09-06 07:47:56 -04:00 
						 
				 
			
				
					
						
							
							
								Aymeric Augustin 
							
						 
					 
					
						
						
							
						
						7ee7599ab3 
					 
					
						
						
							
							Removed versionadded/changed annotations dating back to 1.4.  
						
						
						
						
					 
					
						2012-12-29 21:59:08 +01:00 
						 
				 
			
				
					
						
							
							
								Tim Graham 
							
						 
					 
					
						
						
							
						
						07e10fbe9f 
					 
					
						
						
							
							Fixed   #16941  - Clarified naturaltime output when the time is more than a day old.  
						
						... 
						
						
						
						Thanks antoviaque for the patch. 
						
						
					 
					
						2012-08-02 07:54:07 -04:00 
						 
				 
			
				
					
						
							
							
								Luke Plant 
							
						 
					 
					
						
						
							
						
						d1e5c55258 
					 
					
						
						
							
							Fixed many more ReST indentation errors, somehow accidentally missed from [16955]  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@16983  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-10-14 00:12:01 +00:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						6cae2a550d 
					 
					
						
						
							
							Fixed   #16878  -- Improved intword filter to support numbers up to decillion and googol. Thanks to crodjer for the initial patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@16897  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-09-23 16:45:40 +00:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						578a31fea3 
					 
					
						
						
							
							Fixed   #15921  -- Refined naturaltime filter added in r16071 to use timesince and timeuntil filters as fallbacks instead of date filter.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@16233  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-05-17 10:16:12 +00:00 
						 
				 
			
				
					
						
							
							
								Adrian Holovaty 
							
						 
					 
					
						
						
							
						
						c2ba96d8a9 
					 
					
						
						
							
							Tweaked weird wording of docs/ref/contrib/humanize.txt 'naturaltime' section from [16071]  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@16226  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-05-14 17:44:10 +00:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						8f3e1c1c63 
					 
					
						
						
							
							Fixed   #6392  -- Made django.contrib.humanize template tags locale aware. Thanks, Dave McLain.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@16168  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-05-06 13:29:58 +00:00 
						 
				 
			
				
					
						
							
							
								Ramiro Morales 
							
						 
					 
					
						
						
							
						
						13cfdb0d8b 
					 
					
						
						
							
							Fixed a couple of small documentation typos.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@16086  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-04-22 14:08:31 +00:00 
						 
				 
			
				
					
						
							
							
								Jannis Leidel 
							
						 
					 
					
						
						
							
						
						ea248f0107 
					 
					
						
						
							
							Fixed   #12771  -- Added naturaltime filter to humanize contrib app. Thanks, phinpho, djansoft and xtrqt.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@16071  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2011-04-22 12:02:47 +00:00 
						 
				 
			
				
					
						
							
							
								Timo Graham 
							
						 
					 
					
						
						
							
						
						2ea93f9327 
					 
					
						
						
							
							Fixed   #14000  - remove versionadded/changed tags for Django 1.0 and 1.1  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@15055  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2010-12-26 00:37:14 +00:00 
						 
				 
			
				
					
						
							
							
								Gabriel Hurley 
							
						 
					 
					
						
						
							
						
						a0b3306349 
					 
					
						
						
							
							Fixed   #14804  -- Metadata improvement, broken link fix, and alphabetization of template filters in contrib.humanize reference docs. Thanks to adamv for the patch.  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@14746  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2010-11-29 05:30:11 +00:00 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
							
						
						728effcfbd 
					 
					
						
						
							
							Fixed   #14141 : docs now use the :doc: construct for links between documents.  
						
						... 
						
						
						
						Thanks, Ramiro Morales.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13608  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2010-08-19 19:27:44 +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 
						 
				 
			
				
					
						
							
							
								Jacob Kaplan-Moss 
							
						 
					 
					
						
						
							
						
						97cb07c3a1 
					 
					
						
						
							
							Massive reorganization of the docs. See the new docs online at  http://docs.djangoproject.com/ .  
						
						... 
						
						
						
						git-svn-id: http://code.djangoproject.com/svn/django/trunk@8506  bcc190cf-cafb-0310-a4f2-bffc1f526a37 
						
						
					 
					
						2008-08-23 22:25:40 +00:00