3 class HttpPlugin < Plugin
9 @http_server = HTTPServer.new(
12 @http_server.mount_proc("/") { |req, resp|
13 resp['content-type'] = 'text/html'
14 resp.body = "<html><head><title>rbot httpd plugin</title></head><body>"
15 resp.body += "#{@bot.status} <br />"
16 resp.body += "hello from rbot."
17 resp.body += "</body>"
28 def help(plugin, topic="")
35 plugin = HttpPlugin.new
36 plugin.register("http")