Adopted convention name and value or values for WSF_VALUE and descendant (WSF_STRING ...)

kept `key' as redirection, and also string as obsolete redirection.
Router: provide a way to pass the request methods without using manifest string, thanks to WSF_ROUTER_METHODS
  so instead of using manifest array or manifest strings, just create an instance of WSF_ROUTER_METHODS
  for convenience, WSF_ROUTER provides a few `methods_...' returning prebuilt WSF_ROUTER_METHODS objects
Improved code related to unicode handling in URL, and parameters (before the framework was doing too much)
This commit is contained in:
Jocelyn Fiat
2012-06-11 14:58:13 +02:00
parent 36ed6f525c
commit 8a58d62a7e
29 changed files with 790 additions and 198 deletions

View File

@@ -1,6 +1,7 @@
note
description: "Summary description for {WSF_ANY}."
author: ""
description: "[
{WSF_ANY} represents a parameter holding any object.
]"
date: "$Date$"
revision: "$Revision$"
@@ -15,11 +16,11 @@ create
feature {NONE} -- Initialization
make (a_name: READABLE_STRING_8; a_value: like item)
make (a_name: READABLE_STRING_8; a_value: like value)
do
name := url_decoded_string (a_name)
url_encoded_name := a_name
item := a_value
value := a_value
end
feature -- Access
@@ -28,7 +29,7 @@ feature -- Access
url_encoded_name: READABLE_STRING_8
item: detachable ANY
value: detachable ANY
feature -- Element change
@@ -50,8 +51,8 @@ feature -- Query
-- String representation of Current
-- if possible
do
if attached item as i then
Result := i.generating_type
if attached value as v then
Result := v.generating_type
else
Result := "Void"
end