Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: filters/datesort.py

Issue 29334171: Issue 3410 - Added date sort / format for press releases (Closed)
Patch Set: Changing sort filters and utf8 charaters in release hrefs Created Feb. 2, 2016, 4:44 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | filters/humanize_dates.py » ('j') | filters/humanize_dates.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 import datetime, random
2
3 def datesort(value, basedate="1970-01-01", column=0):
4 base = datetime.datetime.strptime(basedate, "%Y-%m-%d")
5 def randdiff(entry):
6 date = datetime.datetime.strptime(entry[column], "%Y-%m-%d")
7 diff = (date - base).days
8 return diff * 0.2 + random.randrange(diff) * 0.8
9 return sorted(value, key=randdiff)
OLDNEW
« no previous file with comments | « no previous file | filters/humanize_dates.py » ('j') | filters/humanize_dates.py » ('J')

Powered by Google App Engine
This is Rietveld