fixed various indentations
Removed useless dependencies for ewf_ise_wizard project.
This commit is contained in:
2013-04-05 12:12:26 +02:00
parent aee512a316
commit 5fc34d947a
3 changed files with 18 additions and 17 deletions

View File

@@ -22,13 +22,16 @@ feature -- Access
local local
l_version: WSF_HTTP_PROTOCOL_VERSION l_version: WSF_HTTP_PROTOCOL_VERSION
do do
--| This default version just replies True for HTTP/1.0. --| This default version just replies True for HTTP/1.0.
--| For HTTP/0.9 or other protocols, we hope --| For HTTP/0.9 or other protocols, we hope
--| that the connector has already rejected the request. Anyway, a --| that the connector has already rejected the request. Anyway, a
--| proxy server won't help us (? - is that correct?) --| proxy server won't help us (? - is that correct?)
create l_version.make (req.server_protocol) create l_version.make (req.server_protocol)
if l_version.is_valid and then l_version.major = 1 and then if
l_version.minor = 0 then l_version.is_valid and then
l_version.major = 1 and then
l_version.minor = 0
then
Result := True Result := True
end end
end end

View File

@@ -1,13 +1,12 @@
note note
description: "Summary description for {WSF_ROUTED_SERVICE}." description: "Summary description for {WSF_ROUTED_SKELETON_SERVICE}."
author: ""
date: "$Date$" date: "$Date$"
revision: "$Revision$" revision: "$Revision$"
deferred class WSF_ROUTED_SKELETON_SERVICE deferred class
WSF_ROUTED_SKELETON_SERVICE
inherit inherit
WSF_ROUTED_SERVICE WSF_ROUTED_SERVICE
redefine redefine
execute execute
@@ -252,12 +251,12 @@ feature {NONE} -- Implementation
local local
h: HTTP_HEADER h: HTTP_HEADER
do do
create h.make create h.make
h.put_content_type_text_plain h.put_content_type_text_plain
h.put_current_date h.put_current_date
h.put_location (proxy_server (req).string) h.put_location (proxy_server (req).string)
h.put_content_length (0) h.put_content_length (0)
res.set_status_code ({HTTP_STATUS_CODE}.use_proxy) res.set_status_code ({HTTP_STATUS_CODE}.use_proxy)
ensure ensure
response_status_is_set: res.status_is_set response_status_is_set: res.status_is_set
response_code_use_proxy: res.status_code = {HTTP_STATUS_CODE}.use_proxy response_code_use_proxy: res.status_code = {HTTP_STATUS_CODE}.use_proxy

View File

@@ -12,7 +12,6 @@
<setting name="concurrency" value="none"/> <setting name="concurrency" value="none"/>
<library name="base" location="$ISE_LIBRARY\library\base\base-safe.ecf"/> <library name="base" location="$ISE_LIBRARY\library\base\base-safe.ecf"/>
<library name="uuid" location="$ISE_LIBRARY\library\uuid\uuid-safe.ecf"/> <library name="uuid" location="$ISE_LIBRARY\library\uuid\uuid-safe.ecf"/>
<library name="vision2" location="$ISE_LIBRARY\library\vision2\vision2-safe.ecf"/>
<cluster name="src" location=".\src\" recursive="true"/> <cluster name="src" location=".\src\" recursive="true"/>
</target> </target>
<target name="custom_wizard" extends="wizard"> <target name="custom_wizard" extends="wizard">