liquid_feedback_frontend
view app/main/issue/show.rss.lua @ 11:77d58efe99fd
Version beta7
Important security fixes:
- Added missing HTML encoding to postal address of member
- Link to discussion URL only if it starts with http(s)://
Other bugfixes:
- Fixed wrong display of 2nd level delegating voters for an initiative
- Do not display invited initiators as initiators while voting
- Added missing translation
New features:
- Public message of the day
- Both direct and indirect supporter count is shown in tab heads
- Support shown in initiative lists
Language chooser at the login page has been added (again)
Important security fixes:
- Added missing HTML encoding to postal address of member
- Link to discussion URL only if it starts with http(s)://
Other bugfixes:
- Fixed wrong display of 2nd level delegating voters for an initiative
- Do not display invited initiators as initiators while voting
- Added missing translation
New features:
- Public message of the day
- Both direct and indirect supporter count is shown in tab heads
- Support shown in initiative lists
Language chooser at the login page has been added (again)
| author | bsw |
|---|---|
| date | Fri Jan 22 12:00:00 2010 +0100 (2010-01-22) |
| 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
