webmcp
view framework/cgi-bin/webmcp-wrapper.lua @ 40:ed00b972f40e
Allow mondelefant.connect to be called with an explicit "conninfo" string
| author | jbe | 
|---|---|
| date | Sat Oct 16 17:49:11 2010 +0200 (2010-10-16) | 
| parents | 9fdfb27f8e67 | 
| children | 
 line source
     1 #!/usr/bin/env lua
     3 local func, errmsg = loadfile('webmcp.lua')
     5 if func then
     6   local result
     7   result, errmsg = pcall(func)
     8   if result then
     9     errmsg = nil
    10   end
    11 end
    13 if errmsg and not (cgi and cgi.data_sent) then
    14   print('Status: 500 Internal Server Error')
    15   print('Content-type: text/plain')
    16   print()
    17   print('500 Internal Server Error')
    18   print()
    19   print(errmsg)
    20   print()
    21   print('(caught by webmcp-wrapper.lua)')
    22   os.exit(1)
    23 end
