webmcp

view framework/env/encode/html.lua @ 369:3995f9d2d610

Reverted previous changeset (6ad9f6113c52, Support for primary keys in JSON documents)
author jbe
date Wed Aug 05 01:02:26 2015 +0200 (2015-08-05)
parents 9fdfb27f8e67
children
line source
1 --[[--
2 result = -- encoded string
3 encode.html(
4 str -- original string
5 )
7 This function replaces the special characters '<', '>', '&' and '"' by their HTML entities '&lt;', '&rt;', '&amp;' and '&quot;'.
9 NOTE: ACCELERATED FUNCTION
10 Do not change unless also you also update webmcp_accelerator.c
12 --]]--
14 function encode.html(text)
15 -- TODO: perhaps filter evil control characters?
16 return (
17 string.gsub(
18 text, '[<>&"]',
19 function(char)
20 if char == '<' then
21 return "&lt;"
22 elseif char == '>' then
23 return "&gt;"
24 elseif char == '&' then
25 return "&amp;"
26 elseif char == '"' then
27 return "&quot;"
28 end
29 end
30 )
31 )
32 end

Impressum / About Us