method
search_servlet
v1_8_7_72 -
Show latest stable
- Class:
WEBrick::HTTPServer
search_servlet(path)public
No documentation available.
# File lib/webrick/httpserver.rb, line 128
def search_servlet(path)
script_name, path_info = @mount_tab.scan(path)
servlet, options = @mount_tab[script_name]
if servlet
[ servlet, options, script_name, path_info ]
end
end