diff --git a/draft/application/cms/cms-safe.ecf b/draft/application/cms/cms-safe.ecf index ae3fa3e0..03be6e2f 100644 --- a/draft/application/cms/cms-safe.ecf +++ b/draft/application/cms/cms-safe.ecf @@ -1,7 +1,7 @@ - + - + /EIFGENs$ /CVS$ @@ -10,9 +10,8 @@ - - + @@ -24,7 +23,6 @@ - - + diff --git a/draft/application/cms/cms.ecf b/draft/application/cms/cms.ecf index c8139825..43bdba7d 100644 --- a/draft/application/cms/cms.ecf +++ b/draft/application/cms/cms.ecf @@ -1,7 +1,7 @@ - + /EIFGENs$ /CVS$ diff --git a/draft/application/cms/src/kernel/cms_css.e b/draft/application/cms/src/kernel/cms_css.e index f6f89777..d3cc9ff3 100644 --- a/draft/application/cms/src/kernel/cms_css.e +++ b/draft/application/cms/src/kernel/cms_css.e @@ -49,13 +49,13 @@ feature -- Conversion if not s_selectors.is_empty then s_selectors.append_character (',') end - s_selectors.append (cs.item) + s_selectors.append (cs.item.string) end if not s_selectors.is_empty then a_target.append (s_selectors) a_target.append_character (' ') a_target.append_character ('{') - a_target.append (c.item.style) + c.item.style.append_text_to (a_target) a_target.append_character ('}') a_target.append_character ('%N') end diff --git a/draft/application/cms/src/modules/user/user_login_cms_execution.e b/draft/application/cms/src/modules/user/user_login_cms_execution.e index 56f1a4f0..9fd23483 100644 --- a/draft/application/cms/src/modules/user/user_login_cms_execution.e +++ b/draft/application/cms/src/modules/user/user_login_cms_execution.e @@ -17,9 +17,7 @@ feature -- Status valid_credential (u,p: READABLE_STRING_32): BOOLEAN do - if attached service.storage.user_by_name (u) as l_user then - Result := attached l_user.encoded_password as l_pass and then l_pass.same_string (service.storage.encoded_password (p)) - end + Result := service.storage.is_valid_credential (u, p) end feature -- Execution diff --git a/examples/tutorial/step_4/hello/src/hello_application.e b/examples/tutorial/step_4/hello/src/hello_application.e index 2dfbaeb1..3d0024a5 100644 --- a/examples/tutorial/step_4/hello/src/hello_application.e +++ b/examples/tutorial/step_4/hello/src/hello_application.e @@ -59,12 +59,6 @@ feature -- Helper: mapping feature -- Execution - execute_default (req: WSF_REQUEST; res: WSF_RESPONSE) - -- Default request handler if no other are relevant - do - res.redirect_now_with_content (req.script_url ("/hello"), "Redirection to " + req.script_url ("/hello"), "text/html") - end - execute_hello (req: WSF_REQUEST; res: WSF_RESPONSE) -- Computed response message. local diff --git a/library/network/http_client/tests/test-safe.ecf b/library/network/http_client/tests/test-safe.ecf index 6c32920a..5b2c90d0 100644 --- a/library/network/http_client/tests/test-safe.ecf +++ b/library/network/http_client/tests/test-safe.ecf @@ -1,5 +1,5 @@ - + diff --git a/library/network/http_client/tests/test_http_client.e b/library/network/http_client/tests/test_http_client.e index a5cf2228..0000f8d8 100644 --- a/library/network/http_client/tests/test_http_client.e +++ b/library/network/http_client/tests/test_http_client.e @@ -48,7 +48,7 @@ feature -- Test routines res: HTTP_CLIENT_RESPONSE h: STRING do - create res.make + create res.make ("http://example.com/") create h.make_empty h.append ("normal: NORMAL%R%N") h.append ("concat: ABC%R%N") diff --git a/library/server/ewf_support/ewf_support.ecf b/library/server/ewf_support/ewf_support.ecf index b3e7d50b..e95a3590 100644 --- a/library/server/ewf_support/ewf_support.ecf +++ b/library/server/ewf_support/ewf_support.ecf @@ -10,6 +10,17 @@ - + + + + + + + + + + + +