Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/lib/support/bobot_server/butia/butia_http.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lib/support/bobot_server/butia/butia_http.lua')
-rw-r--r--lib/support/bobot_server/butia/butia_http.lua32
1 files changed, 0 insertions, 32 deletions
diff --git a/lib/support/bobot_server/butia/butia_http.lua b/lib/support/bobot_server/butia/butia_http.lua
deleted file mode 100644
index 6a0b1ff..0000000
--- a/lib/support/bobot_server/butia/butia_http.lua
+++ /dev/null
@@ -1,32 +0,0 @@
-module(..., package.seeall);
-
---local devices=devices
-local process = require("bobot-server-process").process
-local util = require("http-util")
-
-local parse_params = util.parse_params
-local load_template = util.load_file
-
-local butia_template=load_template('butia/butia.htm') or "Error loading template butia.htm"
-local header_template=load_template('butia/header.htm') or "Error loading template header.htm"
-
-function init (get_page)
- get_page["/butia.htm"] = function (p)
- local params=parse_params(p)
- local rep = {
- ['DATA1'] = params['campo'],
- ['DATA2'] = tostring(params['unboton'])..', '..tostring(params['otroboton']),
- }
- local page=string.gsub(butia_template, '<!%-%-(%w+)%-%->', rep)
- return "HTTP/1.1 200/OK\r\nContent-Type:text/html\r\nContent-Length: "..#page.."\r\n\r\n"..page
- end
-
- get_page["/header.htm"] = function (p)
- local params=parse_params(p)
- local rep = {
- }
- local page=string.gsub(header_template, '<!%-%-(%w+)%-%->', rep)
- return "HTTP/1.1 200/OK\r\nContent-Type:text/html\r\nContent-Length: "..#page.."\r\n\r\n"..page
- end
-
-end