diff options
| author | Philipp Gesang <phg42.2a@gmail.com> | 2013-11-03 12:58:28 +0100 | 
|---|---|---|
| committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-11-03 12:58:28 +0100 | 
| commit | 137c28853effaf60c5c20884417643f671c79514 (patch) | |
| tree | 28f6dcb7faf598e9d548f91d1a1ad5d170a17c7f /lualibs-util-tpl.lua | |
| parent | d96d015887e6fcbe1ca8defcec44cb794421785d (diff) | |
| download | lualibs-137c28853effaf60c5c20884417643f671c79514.tar.gz | |
sync with Context as of 2013-11-03
Diffstat (limited to 'lualibs-util-tpl.lua')
| -rw-r--r-- | lualibs-util-tpl.lua | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/lualibs-util-tpl.lua b/lualibs-util-tpl.lua index e0c405a..67d0582 100644 --- a/lualibs-util-tpl.lua +++ b/lualibs-util-tpl.lua @@ -17,8 +17,8 @@ local trace_template  = false  trackers.register("templates.trace",function(v) t  local report_template = logs.reporter("template")  local tostring = tostring -local format, sub = string.format, string.sub -local P, C, Cs, Carg, lpegmatch, lpegpatterns = lpeg.P, lpeg.C, lpeg.Cs, lpeg.Carg, lpeg.match, lpeg.patterns +local format, sub, byte = string.format, string.sub, string.byte +local P, C, R, Cs, Cc, Carg, lpegmatch, lpegpatterns = lpeg.P, lpeg.C, lpeg.R, lpeg.Cs, lpeg.Cc, lpeg.Carg, lpeg.match, lpeg.patterns  -- todo: make installable template.new @@ -71,7 +71,7 @@ lpegpatterns.sqlquoted = sqlquoted  --     }  --  -- slightly faster: --- +  -- local luaescape = Cs ((  --     P('"' ) / [[\"]] +  --     P('\\') / [[\\]] + @@ -81,11 +81,11 @@ lpegpatterns.sqlquoted = sqlquoted  --     P(1)  -- )^0) --- local xmlescape = lpegpatterns.xmlescape --- local texescape = lpegpatterns.texescape --- local luaescape = lpegpatterns.luaescape --- local sqlquoted = lpegpatterns.sqlquoted --- local luaquoted = lpegpatterns.luaquoted +----- xmlescape = lpegpatterns.xmlescape +----- texescape = lpegpatterns.texescape +local luaescape = lpegpatterns.luaescape +----- sqlquoted = lpegpatterns.sqlquoted +----- luaquoted = lpegpatterns.luaquoted  local escapers = {      lua = function(s) | 
