Web form:

- Improvement about web form manipulation (remove a field, set a text value to input fields by name, ...)
 - Improved web form html generation, especially for select and type checkbox
 - Updated the date input field interface with a new set_date_value .

File response:
 - "application/force-download" is not a standard MIME content type, so use "application_octet_stream" instead as default.

Standalone connector:
 - Added expected creation procedure for the service launcher.
 - Added new "secure_port" configuration variable, for SSL standalone service.
   This way, if `is_secure` is True, the server will use `secure_port` (overrides `port` value).

Date:
 - Improved support for RFC 3339 (a profile of ISO 8601)

Removed obsolete and warnings:
 - removed usage of FILE_NAME
 - updated code to avoid implicit conversion from STRING_32 to STRING_8
 - avoid uneed conversion to STRING_8 (when possible)
This commit is contained in:
2020-10-02 15:02:06 +02:00
parent 75380a27fe
commit 30a5e087ae
80 changed files with 444 additions and 260 deletions

View File

@@ -72,8 +72,11 @@ feature {NONE} -- Initialization
if attached {READABLE_STRING_GENERAL} opts.option ("server_name") as l_server_name then
server_name := l_server_name.to_string_8
end
if attached {READABLE_STRING_GENERAL} opts.option ("base") as l_base_str then
base_url := l_base_str.as_string_8
if
attached {READABLE_STRING_GENERAL} opts.option ("base") as l_base_str and then
l_base_str.is_valid_as_string_8
then
base_url := l_base_str.to_string_8
end
verbose := opts.option_boolean_value ("verbose", verbose)
@@ -130,6 +133,11 @@ feature {NONE} -- Initialization
then
secure_settings := [ssl_prot, opts.option_string_32_value ("ssl_ca_crt", Void), opts.option_string_32_value ("ssl_ca_key", Void)]
end
if is_secure then
if opts.has_integer_option ("secure_port") then
port_number := opts.option_integer_value ("secure_port", port_number)
end
end
end
create conn.make

View File

@@ -11,6 +11,15 @@ class
inherit
WSF_SERVICE_LAUNCHER_OPTIONS
create
default_create,
make,
make_from_array,
make_from_iterable
convert
make_from_array ({ARRAY [TUPLE [name: READABLE_STRING_GENERAL; value: detachable ANY]]})
feature -- Status report
is_secure_connection_supported: BOOLEAN