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:
parent
0dd43e3868
commit
f92ae75a23
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue