diff options
author | Tom Gilbert <tom@linuxbrit.co.uk> | 2005-08-05 22:55:36 +0000 |
---|---|---|
committer | Tom Gilbert <tom@linuxbrit.co.uk> | 2005-08-05 22:55:36 +0000 |
commit | 6878f1d98ae3038d5512818b6b00b6c3bc380862 (patch) | |
tree | e76a5ce4c5124c06949307964d5ee0f95d66f4fc /data/rbot/plugins/httpd.rb.disabled | |
parent | 83fd5d3b11539a07b740048ad93c09e31e8d6701 (diff) |
Fri Aug 05 23:55:20 BST 2005 Tom Gilbert <tom@linuxbrit.co.uk>
* few more tweaks preparing to release 0.9.9
Diffstat (limited to 'data/rbot/plugins/httpd.rb.disabled')
-rw-r--r-- | data/rbot/plugins/httpd.rb.disabled | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/data/rbot/plugins/httpd.rb.disabled b/data/rbot/plugins/httpd.rb.disabled new file mode 100644 index 00000000..92fe3a80 --- /dev/null +++ b/data/rbot/plugins/httpd.rb.disabled @@ -0,0 +1,35 @@ +require 'webrick' + +class HttpPlugin < Plugin + include WEBrick + + + def initialize + super + @http_server = HTTPServer.new( + :Port => 5555 + ) + @http_server.mount_proc("/") { |req, resp| + resp['content-type'] = 'text/html' + resp.body = "<html><head><title>rbot httpd plugin</title></head><body>" + resp.body += "#{@bot.status} <br />" + resp.body += "hello from rbot." + resp.body += "</body>" + raise HTTPStatus::OK + } + Thread.new { + @http_server.start + } + end + def cleanup + @http_server.shutdown + end + def help(plugin, topic="") + "no help yet" + end + def privmsg(m) + end +end + +plugin = HttpPlugin.new +plugin.register("http") |