Reverted change that made WSF_URI_HANDLER and WSF_URI_TEMPLATE_HANDLER inheriting from WSF_EXECUTE_HANDLER, as it breaks existing project using EiffelWeb.

This commit is contained in:
Jocelyn Fiat
2017-11-07 23:05:22 +01:00
parent f91a676f41
commit 6ca3cca88b
8 changed files with 76 additions and 8 deletions

View File

@@ -8,7 +8,7 @@ deferred class
WSF_ROUTING_HANDLER
inherit
WSF_EXECUTE_HANDLER
WSF_HANDLER
feature {NONE} -- Initialization
@@ -48,7 +48,10 @@ feature -- Element change
feature -- Execution
execute (req: WSF_REQUEST; res: WSF_RESPONSE)
-- Execute request handler
-- Execute `req' responding in `res'.
require
req_attached: req /= Void
res_attached: res /= Void
local
sess: WSF_ROUTER_SESSION
do
@@ -60,7 +63,7 @@ feature -- Execution
end
note
copyright: "2011-2013, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Eiffel Software and others"
copyright: "2011-2017, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Colin Adams, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[
Eiffel Software