|
a/Allura/allura/lib/macro.py |
|
b/Allura/allura/lib/macro.py |
|
... |
|
... |
92 |
output = ((dict(
|
92 |
output = ((dict(
|
93 |
href=item.link,
|
93 |
href=item.link,
|
94 |
title=item.title,
|
94 |
title=item.title,
|
95 |
author=item.author_name,
|
95 |
author=item.author_name,
|
96 |
ago=h.ago(item.pubdate),
|
96 |
ago=h.ago(item.pubdate),
|
97 |
description=item.description))
|
97 |
description=g.markdown.convert(item.description)))
|
98 |
for item in feed)
|
98 |
for item in feed)
|
99 |
feeds = NeighborhoodFeeds(feeds=output)
|
99 |
feeds = NeighborhoodFeeds(feeds=output)
|
100 |
g.resource_manager.register(feeds)
|
100 |
g.resource_manager.register(feeds)
|
101 |
response = feeds.display(feeds=output)
|
101 |
response = feeds.display(feeds=output)
|
102 |
return response
|
102 |
return response
|