liquid_feedback_frontend

view app/main/_filter_view/33_help_hidden.lua @ 4:80c215dbf076

Version alpha5

Many optical changes and improved usability

Support for different wiki-formatting-engines

Help system
author bsw/jbe
date Thu Dec 10 12:00:00 2009 +0100 (2009-12-10)
parents
children 00d1004545f1
line source
1 execute.inner()
3 if util._hidden_helps ~= nil then
4 slot.select("help_hidden", function()
5 for i, help in ipairs(util._hidden_helps) do
6 ui.link{
7 attr = {
8 class = "help_hidden",
9 title = _("Help for: #{text}", { text = help.title })
10 },
11 module = "help",
12 action = "update",
13 params = {
14 help_ident = help.id,
15 hide = false
16 },
17 routing = {
18 default = {
19 mode = "redirect",
20 module = request.get_module(),
21 view = request.get_view(),
22 id = param.get_id_cgi(),
23 params = param.get_all_cgi()
24 }
25 },
26 content = function()
27 ui.image{
28 attr = { class = "help_icon" },
29 static = "icons/16/help.png"
30 }
31 end
32 }
33 end
34 end)
35 end

Impressum / About Us