Compare commits

..

2 Commits

Author SHA1 Message Date
Jocelyn Fiat
97fe16b4c2 Code cleaning. 2017-09-21 10:26:29 +02:00
Jocelyn Fiat
cdada71f7e Corrected wsf_compression.ecf which was missing a few libraries.
The -safe.ecf was correct.
2017-09-02 21:49:41 +02:00
3 changed files with 4 additions and 3 deletions

View File

@@ -376,7 +376,7 @@ feature -- Execution
if ct = Void then if ct = Void then
ct := {HTTP_MIME_TYPES}.application_force_download ct := {HTTP_MIME_TYPES}.application_force_download
end end
create fres.make_with_content_type (ct, f.path.name) create fres.make_with_content_type_and_path (ct, f.path)
fres.set_status_code ({HTTP_STATUS_CODE}.ok) fres.set_status_code ({HTTP_STATUS_CODE}.ok)
-- cache control -- cache control

View File

@@ -12,7 +12,10 @@
<setting name="concurrency" value="scoop"/> <setting name="concurrency" value="scoop"/>
<library name="base" location="$ISE_LIBRARY\library\base\base.ecf"/> <library name="base" location="$ISE_LIBRARY\library\base\base.ecf"/>
<library name="conneg" location="..\..\network\protocol\content_negotiation\conneg.ecf"/> <library name="conneg" location="..\..\network\protocol\content_negotiation\conneg.ecf"/>
<library name="http" location="..\..\network\protocol\http\http.ecf"/>
<library name="wsf" location="wsf.ecf"/> <library name="wsf" location="wsf.ecf"/>
<library name="time" location="$ISE_LIBRARY\library\time\time.ecf"/>
<library name="zlib" location="$ISE_LIBRARY\unstable\library\compression\zlib\zlib.ecf" readonly="false"/>
<cluster name="compression" location=".\compression\" recursive="true"/> <cluster name="compression" location=".\compression\" recursive="true"/>
</target> </target>
</system> </system>

View File

@@ -69,8 +69,6 @@ feature -- Process
process_group (g: ERROR_GROUP) process_group (g: ERROR_GROUP)
-- <Precursor> -- <Precursor>
local
l_errors: LIST [ERROR]
do do
across across
g.sub_errors as s g.sub_errors as s