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
11require 'webrick/httpservlet/abstract'
12require 'webrick/httpservlet/filehandler'
13require 'webrick/httpservlet/cgihandler'
14require 'webrick/httpservlet/erbhandler'
15require 'webrick/httpservlet/prochandler'
16
17module WEBrick
18  module HTTPServlet
19    FileHandler.add_handler("cgi", CGIHandler)
20    FileHandler.add_handler("rhtml", ERBHandler)
21  end
22end
23