2 # httpservlet.rb -- HTTPServlet Utility File
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
9 # $IPR: httpservlet.rb,v 1.21 2003/02/23 12:24:46 gotoyuzo Exp $
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'
19 FileHandler.add_handler("cgi", CGIHandler)
20 FileHandler.add_handler("rhtml", ERBHandler)