Remove WikiPage.info refs #148

This commit is contained in:
Chase Sterling 2016-07-07 17:54:15 -04:00
parent 242e317e65
commit 0bcfaba807
4 changed files with 7 additions and 15 deletions

View file

@ -30,10 +30,12 @@ def rebuild_index():
continue
name = filename_to_cname(page['path'])
# TODO add email?
# TODO I have concens about indexing the commit info from latest revision, see #148
info = next(page.history)
body = dict(name=name,
content=page.data,
message=page.info['message'],
username=page.info['author'],
message=info['message'],
username=info['author'],
updated_on=entry['mtime'],
created_on=entry['ctime'])
search.index_wiki(name, body)