liquid_feedback_frontend
view app/main/issue/show.rss.lua @ 41:53a45356c107
Several bugfixes, including bugfix in timeline
- Fixed grouping of multiple new drafts in timeline
- Do not allow to add suggestions when issue is half frozen
- Do not show initiator invitations for (half-)frozen or closed issues
- Fixed problem with duplicates in display of vote-later requests
- Clarified german "member is participating" info text in delegation chain
- Hide inactive members from member listing
- Fixed grouping of multiple new drafts in timeline
- Do not allow to add suggestions when issue is half frozen
- Do not show initiator invitations for (half-)frozen or closed issues
- Fixed problem with duplicates in display of vote-later requests
- Clarified german "member is participating" info text in delegation chain
- Hide inactive members from member listing
author | bsw |
---|---|
date | Sun Mar 07 15:36:54 2010 +0100 (2010-03-07) |
parents | 3bfb2fcf7ab9 |
children |
line source
1 slot.set_layout("rss")
3 local function rss_channel(channel)
4 for key, val in pairs(channel) do
5 slot.put("<", key, ">", encode.html(val), "</", key, ">")
6 end
7 end
9 local function rss_item(item)
10 slot.put("<item>")
11 for key, val in pairs(item) do
12 slot.put("<", key, ">", encode.html(val), "</", key, ">")
13 end
14 slot.put("</item>")
15 end
18 local issue = Issue:by_id(param.get_id())
20 rss_channel{
21 title = issue.area.name .. " :: Issue #" .. tostring(issue.id),
22 language = "de",
23 pubDate = "Tue, 8 Jul 2008 2:43:19"
24 }
26 for i, initiative in ipairs(issue.initiatives) do
27 rss_item{
28 title = initiative.name,
29 description = initiative.current_draft.content,
30 link = "http://localhost/lf/initiative/show/" .. tostring(initiative.id) .. ".html",
31 author = initiative.current_draft.author.name,
32 guid = "guid",
33 pubDate = "Tue, 8 Jul 2008 2:43:19"
34 }
35 end