File: webrick/httpservlet.rb

Overview
Module Structure
Code

Overview

Module Structure

  module: <Toplevel Module>
  module: WEBrick#17
module: HTTPServlet    #18

Code

   1  #
   2  # httpservlet.rb -- HTTPServlet Utility File
   3  #
   4  # Author: IPR -- Internet Programming with Ruby -- writers
   5  # Copyright (c) 2000, 2001 TAKAHASHI Masayoshi, GOTOU Yuuzou
   6  # Copyright (c) 2002 Internet Programming with Ruby writers. All rights
   7  # reserved.
   8  #
   9  # $IPR: httpservlet.rb,v 1.21 2003/02/23 12:24:46 gotoyuzo Exp $
  10 
  11  require 'webrick/httpservlet/abstract'
  12  require 'webrick/httpservlet/filehandler'
  13  require 'webrick/httpservlet/cgihandler'
  14  require 'webrick/httpservlet/erbhandler'
  15  require 'webrick/httpservlet/prochandler'
  16 
  17  module WEBrick
  18    module HTTPServlet
  19      FileHandler.add_handler("cgi", CGIHandler)
  20      FileHandler.add_handler("rhtml", ERBHandler)
  21    end
  22  end