From 0f5ae7e153538818b4fc280ac899b91085be7f8b Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Mon, 31 Oct 2011 09:14:43 -0700 Subject: [PATCH 1/2] fixed path to cURL.ecf file, using the correct uppercase --- library/client/http_client/http_client-safe.ecf | 4 ++-- library/client/http_client/http_client.ecf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/library/client/http_client/http_client-safe.ecf b/library/client/http_client/http_client-safe.ecf index b5c3a2c6..8bc13e78 100644 --- a/library/client/http_client/http_client-safe.ecf +++ b/library/client/http_client/http_client-safe.ecf @@ -10,12 +10,12 @@ - + - + diff --git a/library/client/http_client/http_client.ecf b/library/client/http_client/http_client.ecf index b130180b..9fbf1763 100644 --- a/library/client/http_client/http_client.ecf +++ b/library/client/http_client/http_client.ecf @@ -10,12 +10,12 @@ - + - + From 4a81d02d127ab4f94d123cb89bb04eb9d312b255 Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Mon, 31 Oct 2011 18:42:44 +0100 Subject: [PATCH 2/2] Fixed obsolete calls, and compilation error. --- library/server/wsf/tests/src/test_wsf_request.e | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/server/wsf/tests/src/test_wsf_request.e b/library/server/wsf/tests/src/test_wsf_request.e index 3ddcf576..d7d4f85a 100644 --- a/library/server/wsf/tests/src/test_wsf_request.e +++ b/library/server/wsf/tests/src/test_wsf_request.e @@ -8,7 +8,7 @@ note testing: "type/manual" class - TEST_EWSGI_REQUEST + TEST_WSF_REQUEST inherit EQA_TEST_SET @@ -91,7 +91,7 @@ feature {NONE} -- Events across - req.form_data_parameters as fcur + req.form_parameters as fcur loop if not q.is_empty then q.append_character ('&') @@ -198,7 +198,7 @@ feature -- Test routines get_http_session if attached http_session as sess then create ctx.make - ctx.add_form_data_parameter ("id", "123") + ctx.add_form_parameter ("id", "123") test_post_request ("post/01", ctx, "post-01 : id=123") test_post_request ("post/01/?foo=bar", ctx, "post-01(foo=bar) : id=123") test_post_request ("post/01/?foo=bar&abc=def", ctx, "post-01(foo=bar&abc=def) : id=123")