#3311: New humanize filter "naturalday" (yesterday, today, tomorrow)
--------------------------------+-------------------------------------------
   Reporter:  [EMAIL PROTECTED]  |                Owner:  adrian         
     Status:  new               |            Component:  Template system
    Version:                    |           Resolution:                 
   Keywords:                    |                Stage:  Accepted       
  Has_patch:  1                 |           Needs_docs:  0              
Needs_tests:  0                 |   Needs_better_patch:  0              
--------------------------------+-------------------------------------------
Comment (by Brian Beck <[EMAIL PROTECTED]>):

 This is pretty minor, but I have a hunch it would be a little quicker to
 do:
 
 {{{
 delta = value - today
 if delta.days == 0:
     return _('today')
 if delta.days == 1:
     return _('tomorrow')
 elif delta.days == -1:
     return _('yesterday')
 }}}
 
 ...so that only one delta is calculated and less comparisons will happen
 (no {{{date.__eq__/__cmp__}}}).
 
 P.S. Awesome job on the patches Jyrki!

-- 
Ticket URL: <http://code.djangoproject.com/ticket/3311#comment:7>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to