liquid_feedback_frontend

view env/util/put_highlighted_string.lua @ 81:134fce4bede3

Cache for rendered wiki texts; Accountless API keys; Reverse id order for initiative API
- Support for caching html version of drafts
- Using pre-rendered html versions of help messages
- Added Support for api keys not connected to an account
- Added order option "id_desc" to initiative API
author bsw
date Sat Jul 24 17:22:05 2010 +0200 (2010-07-24)
parents 3bfb2fcf7ab9
children
line source
1 function util.put_highlighted_string(string)
2 local highlight_string = param.get("highlight_string")
3 if highlight_string then
4 local highlighted_string = slot.use_temporary(function()
5 ui.tag{
6 tag = "span",
7 attr = { class = "highlighted" },
8 content = highlight_string
9 }
10 end)
11 string = string:gsub(highlight_string, highlighted_string)
12 end
13 slot.put(string)
14 end

Impressum / About Us