liquid_feedback_frontend

view lib/mldap/convert_errorcodes.lua @ 1196:5f9cf5a1d12f

Added missing "lf_update_suggestion_order" file to "cp" command in INSTALL.mkd and INSTALL.html
author jbe
date Mon Jun 01 15:11:32 2015 +0200 (2015-06-01)
parents 58f48a8a202a
children
line source
1 #!/usr/bin/env lua
2 for line in io.lines() do
3 local ident, code = line:match("^#define[ \t]+LDAP_([A-Z][A-Z_]*)[ \t]+([^ \t/]+)")
4 if ident then
5 io.stdout:write(' {"', ident:lower(), '", ', tonumber(code) or code, '},\n')
6 end
7 end

Impressum / About Us