bbangert / Kai
Kai is a Pylons web app that runs the PylonsHQ.com site. It has a simple blog, RSS feeds, pastebin, traceback repository, snippets, and documentation.
| commit 260: | 4b01bd0c0a7b |
| parent 259: | 22f7046f8150 |
| branch: | default |
Fix snippets feed
Changed (Δ8 bytes):
raw changeset »
kai/controllers/snippets.py (1 lines added, 1 lines removed)
Up to file-list kai/controllers/snippets.py:
| … | … | @@ -34,7 +34,7 @@ class SnippetsController(BaseController, |
34 |
34 |
if format in ['atom', 'rss']: |
35 |
35 |
response.content_type = 'application/atom+xml' |
36 |
36 |
return render_feed( |
37 |
title="PylonsHQ Snippet Feed", link=url |
|
37 |
title="PylonsHQ Snippet Feed", link=url.current(qualified=True), |
|
38 |
38 |
description="Recent PylonsHQ snippets", objects=c.snippets, |
39 |
39 |
pub_date='created') |
40 |
40 |
