Merge pull request #18 from oligot/fix_ise_wizard

Fix ise_wizard
This commit is contained in:
Jocelyn Fiat
2012-12-04 03:01:41 -08:00
2 changed files with 2 additions and 8 deletions

View File

@@ -26,8 +26,6 @@ feature -- Execution
-- Default request handler if no other are relevant -- Default request handler if no other are relevant
local local
mesg: WSF_HTML_PAGE_RESPONSE mesg: WSF_HTML_PAGE_RESPONSE
s: STRING_8
l_user_name: READABLE_STRING_32
do do
create mesg.make create mesg.make
mesg.set_title ("Hello World!") mesg.set_title ("Hello World!")
@@ -44,9 +42,6 @@ feature {NONE} -- Initialization
--| If you don't need any custom options, you are not obliged to redefine `initialize' --| If you don't need any custom options, you are not obliged to redefine `initialize'
Precursor Precursor
--| Initialize router
initialize_router
end end
end end

View File

@@ -119,15 +119,14 @@ feature -- Form
tfn.add_extension ("ecf") tfn.add_extension ("ecf")
copy_resource_template ("template.ecf", tfn.string) copy_resource_template ("template.ecf", tfn.string)
create res.make (tfn.string, d.name)
create tfn.make_from_string (dn.string) create tfn.make_from_string (dn.string)
tfn.set_file_name ("ewf") tfn.set_file_name ("ewf")
tfn.add_extension ("ini") tfn.add_extension ("ini")
copy_resource_template ("ewf.ini", tfn.string) copy_resource_template ("ewf.ini", tfn.string)
create res.make (tfn.string, d.name)
create dn.make_from_string (pdn) create dn.make_from_string (pdn)
dn.extend (pn) dn.extend (pn)
dn.extend ("src") dn.extend ("src")