Removing unused local variables.

Fixed .ecf location for cms related libraries.
This commit is contained in:
2015-06-29 18:42:11 +02:00
parent bb3e3b992f
commit e45dac84c8
4 changed files with 10 additions and 11 deletions

View File

@@ -67,7 +67,7 @@ feature {NONE} -- Implementation: routes
create l_bal_handler.make (api)
create l_methods
l_methods.enable_get
a_router.handle_with_request_methods ("/basic_auth_login", l_bal_handler, l_methods)
a_router.handle ("/basic_auth_login", l_bal_handler, l_methods)
end
configure_api_logoff (api: CMS_API; a_router: WSF_ROUTER)
@@ -78,7 +78,7 @@ feature {NONE} -- Implementation: routes
create l_bal_handler.make (api)
create l_methods
l_methods.enable_get
a_router.handle_with_request_methods ("/basic_auth_logoff", l_bal_handler, l_methods)
a_router.handle ("/basic_auth_logoff", l_bal_handler, l_methods)
end
feature -- Hooks configuration
@@ -109,7 +109,7 @@ feature -- Hooks
-- Hook execution on collection of menu contained by `a_menu_system'
-- for related response `a_response'.
local
lnk: CMS_LOCAL_LINK
-- lnk: CMS_LOCAL_LINK
do
-- if attached a_response.current_user (a_response.request) as u then
-- create lnk.make (u.name + " (Logout)", "basic_auth_logoff?destination=" + a_response.request.request_uri)