From 55e4602fafc5f279dbc4f3c49bbac44de25e1b99 Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Thu, 4 Oct 2012 14:52:28 +0200 Subject: [PATCH] Fixed compilation for STARTS_WITH_ handler --- .../helpers/wsf_starts_with_routing_handler.e | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/library/server/wsf/router/support/starts_with/helpers/wsf_starts_with_routing_handler.e b/library/server/wsf/router/support/starts_with/helpers/wsf_starts_with_routing_handler.e index c2539545..b247c358 100644 --- a/library/server/wsf/router/support/starts_with/helpers/wsf_starts_with_routing_handler.e +++ b/library/server/wsf/router/support/starts_with/helpers/wsf_starts_with_routing_handler.e @@ -11,13 +11,25 @@ inherit WSF_ROUTING_HANDLER WSF_STARTS_WITH_HANDLER + rename + execute as starts_with_execute + end create make, make_with_router +feature -- Execution + + starts_with_execute (a_start_path: READABLE_STRING_8; req: WSF_REQUEST; res: WSF_RESPONSE) + -- + --| For such routing handler, the previous `a_start_path' is lost + do + execute (req, res) + end + note - copyright: "2011-2012, Jocelyn Fiat, Javier Velilla, Eiffel Software and others" + copyright: "2011-2012, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software