1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Removed Fancy Indexing as a default option on the WEBrick servlet as it made it harder to use various caching schemes

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@337 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-01-04 22:50:15 +00:00
parent 0dd43e3868
commit f92ae75a23
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
*SVN*
* Removed Fancy Indexing as a default option on the WEBrick servlet as it made it harder to use various caching schemes
*0.9.3* (January 4th, 2005)
* Added support for SQLite in the auto-dumping/importing of schemas for development -> test #416

View file

@ -21,7 +21,7 @@ class DispatchServlet < WEBrick::HTTPServlet::AbstractServlet
def initialize(server, options)
@server_options = options
@file_handler = WEBrick::HTTPServlet::FileHandler.new(server, options[:server_root], {:FancyIndexing => true })
@file_handler = WEBrick::HTTPServlet::FileHandler.new(server, options[:server_root])
super
end