diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/webrick/httpservlet/erbhandler.rb | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,9 @@ +Mon Aug 9 15:03:20 2004 GOTOU Yuuzou <[email protected]> + + * lib/webrick/httpservlet/erbhandler.rb + (WEBrick::HTTPServlet::ERBHandler#do_GET): should select media type + by suffix of script filename. + Mon Aug 9 12:51:43 2004 Dave Thomas <[email protected]> * dir.c (dir_s_glob): Roll in Austin Ziegler's Dir.glob and diff --git a/lib/webrick/httpservlet/erbhandler.rb b/lib/webrick/httpservlet/erbhandler.rb index 40b7a57610..b9d5e65b65 100644 --- a/lib/webrick/httpservlet/erbhandler.rb +++ b/lib/webrick/httpservlet/erbhandler.rb @@ -29,7 +29,8 @@ module WEBrick begin data = open(@script_filename){|io| io.read } res.body = evaluate(ERB.new(data), req, res) - res['content-type'] = "text/html" + res['content-type'] = + HTTPUtils::mime_type(@script_filename, @config[:MimeTypes]) rescue StandardError => ex raise rescue Exception => ex |