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

@@ -47,6 +47,9 @@ feature -- Status
Result := (create {RAW_FILE}.make_with_path (executable_path)).exists
end
last_succeed: BOOLEAN
-- Last notification succeed?
feature -- Change
set_parameters (cmd: READABLE_STRING_GENERAL; args: detachable ITERABLE [READABLE_STRING_GENERAL])
@@ -84,7 +87,9 @@ feature -- Basic operation
args: like arguments
p: detachable PROCESS
retried: INTEGER
err: BOOLEAN
do
last_succeed := False
if retried = 0 then
create l_factory
if stdin_mode_set then
@@ -111,15 +116,22 @@ feature -- Basic operation
f.close
create args.make (1)
args.force (f.path.name)
else
err := True
-- FAILURE !
check should_not_occur: False end
end
end
p := l_factory.process_launcher (executable_path.name, args, Void)
p.set_hidden (True)
p.set_separate_console (False)
if not err then
p := l_factory.process_launcher (executable_path.name, args, Void)
p.set_hidden (True)
p.set_separate_console (False)
p.launch
p.launch
end
end
if p.launched and not p.has_exited then
if p /= Void and then p.launched and then not p.has_exited then
last_succeed := True
execution_environment.sleep (1_000)
p.wait_for_exit
if not p.has_exited then
@@ -146,55 +158,37 @@ feature -- Basic operation
feature {NONE} -- Implementation
new_temporary_file (a_extension: detachable READABLE_STRING_8): RAW_FILE
new_temporary_file (a_prefix: detachable READABLE_STRING_8): detachable RAW_FILE
-- Create file with temporary name.
-- With concurrent execution, noting ensures that {FILE_NAME}.make_temporary_name is unique
-- So using `a_extension' may help
local
bn: STRING_32
fn: PATH
s: STRING_32
f: detachable like new_temporary_file
i: INTEGER
retried: INTEGER
l_prefix: READABLE_STRING_GENERAL
do
-- With concurrent execution, nothing ensures that {FILE_NAME}.make_temporary_name is unique
-- So let's try to find
from
create bn.make_from_string_general ((create {FILE_NAME}.make_temporary_name).string)
create s.make_empty
until
f /= Void or i > 1000
loop
create fn.make_from_string (bn)
s.make_empty
if i > 0 then
s.append_character ('-')
s.append_integer (i)
fn := fn.appended (s)
if retried <= 3 then
-- Try 3 times...
if attached {EXECUTION_ENVIRONMENT}.temporary_directory_path as tmp then
if a_prefix /= Void then
l_prefix := tmp.extended (a_prefix).name
else
l_prefix := tmp.extended ("tmp-").name
end
create Result.make_open_temporary_with_prefix (l_prefix)
elseif a_prefix /= Void then
create Result.make_open_temporary_with_prefix (a_prefix)
else
create Result.make_open_temporary
end
if a_extension /= Void then
fn := fn.appended_with_extension (a_extension)
end
create f.make_with_path (fn)
if f.exists then
i := i + 1
f := Void
end
end
if f = Void then
Result := new_temporary_file (Void)
else
Result := f
check not_temporary_file_exists: not Result.exists end
check temporary_creatable: Result.is_creatable end
end
ensure
not_result_exists: not Result.exists
result_creatable: Result.is_creatable
new_temporary_file_exists: Result /= Void implies Result.exists
result_is_open_write: Result /= Void implies Result.is_open_write
rescue
retried := retried + 1
retry
end
note
copyright: "2011-2017, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Eiffel Software and others"
copyright: "2011-2020, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[
Eiffel Software

View File

@@ -2,9 +2,9 @@ note
description: "[
Component responsible to send email
]"
author: "$Author: jfiat $"
date: "$Date: 2015-06-30 11:07:17 +0200 (mar., 30 juin 2015) $"
revision: "$Revision: 97586 $"
author: "$Author$"
date: "$Date$"
revision: "$Revision$"
deferred class
NOTIFICATION_MAILER

View File

@@ -1,7 +1,7 @@
note
description: "Mailer that does nothing."
date: "$Date: 2015-06-30 15:49:56 +0200 (mar., 30 juin 2015) $"
revision: "$Revision: 97588 $"
date: "$Date$"
revision: "$Revision$"
class
NOTIFICATION_NULL_MAILER

View File

@@ -2,9 +2,9 @@ note
description : "[
NOTIFICATION_MAILER using sendmail as mailtool
]"
author: "$Author: jfiat $"
date: "$Date: 2015-06-30 15:49:56 +0200 (mar., 30 juin 2015) $"
revision: "$Revision: 97588 $"
author: "$Author$"
date: "$Date$"
revision: "$Revision$"
class
NOTIFICATION_SENDMAIL_MAILER

View File

@@ -1,8 +1,8 @@
note
description: "Summary description for {NOTIFICATION_STORAGE_MAILER}."
author: ""
date: "$Date: 2015-06-30 15:49:56 +0200 (mar., 30 juin 2015) $"
revision: "$Revision: 97588 $"
date: "$Date$"
revision: "$Revision$"
class
NOTIFICATION_STORAGE_MAILER

View File

@@ -93,7 +93,7 @@ feature -- Basic operation
-- Process the sending of `a_email'
local
l_email: EMAIL
h: STRING
h: STRING_8
i: INTEGER
lst: LIST [READABLE_STRING_8]
do
@@ -143,7 +143,7 @@ feature -- Basic operation
across
l_lines as ic
loop
h := ic.item
h := ic.item.to_string_8
i := h.index_of (':', 1)
if i > 0 then
l_email.add_header_entry (h.head (i - 1), h.substring (i + 1, h.count))
@@ -199,7 +199,7 @@ feature {NONE} -- Implementation
end
note
copyright: "2011-2017, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Eiffel Software and others"
copyright: "2011-2020, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[
Eiffel Software

View File

@@ -1,7 +1,7 @@
note
description: "Store email in specific file (could also be stderr, ...)."
date: "$Date: 2017-03-08 10:34:57 +0100 (mer., 08 mars 2017) $"
revision: "$Revision: 99935 $"
date: "$Date$"
revision: "$Revision$"
class
NOTIFICATION_EMAIL_FILE_STORAGE

View File

@@ -1,7 +1,7 @@
note
description: "Abtract interface of email storage."
date: "$Date: 2015-06-30 15:49:56 +0200 (mar., 30 juin 2015) $"
revision: "$Revision: 97588 $"
date: "$Date$"
revision: "$Revision$"
deferred class
NOTIFICATION_EMAIL_STORAGE