In Files

  • webrick/httpservlet/erbhandler.rb

WEBrick::HTTPServlet::ERBHandler

Public Class Methods

new(server, name) click to toggle source
 
               # File webrick/httpservlet/erbhandler.rb, line 19
def initialize(server, name)
  super(server, name)
  @script_filename = name
end
            

Public Instance Methods

do_GET(req, res) click to toggle source
 
               # File webrick/httpservlet/erbhandler.rb, line 24
def do_GET(req, res)
  unless defined?(ERB)
    @logger.warn "#{self.class}: ERB not defined."
    raise HTTPStatus::Forbidden, "ERBHandler cannot work."
  end
  begin
    data = open(@script_filename){|io| io.read }
    res.body = evaluate(ERB.new(data), req, res)
    res['content-type'] =
      HTTPUtils::mime_type(@script_filename, @config[:MimeTypes])
  rescue StandardError => ex
    raise
  rescue Exception => ex
    @logger.error(ex)
    raise HTTPStatus::InternalServerError, ex.message
  end
end
            
Also aliased as: do_POST
do_POST(req, res) click to toggle source
Alias for: do_GET

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.

blog comments powered by Disqus