From e9376b5d16d3cbe469e10421cf29888516a3552f Mon Sep 17 00:00:00 2001 From: Olivier Ligot Date: Mon, 3 Dec 2012 17:37:26 +0100 Subject: [PATCH] Fix ise_wizard * ewf.ini was used instead of template.ecf as configuration file * remove initialize_router otherwise the compilation failed * remove unused variables --- tools/ise_wizard/resources/ewf_application.e | 5 ----- tools/ise_wizard/src/ewf_wizard.e | 5 ++--- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/tools/ise_wizard/resources/ewf_application.e b/tools/ise_wizard/resources/ewf_application.e index af64909d..929cd433 100644 --- a/tools/ise_wizard/resources/ewf_application.e +++ b/tools/ise_wizard/resources/ewf_application.e @@ -26,8 +26,6 @@ feature -- Execution -- Default request handler if no other are relevant local mesg: WSF_HTML_PAGE_RESPONSE - s: STRING_8 - l_user_name: READABLE_STRING_32 do create mesg.make 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' Precursor - - --| Initialize router - initialize_router end end diff --git a/tools/ise_wizard/src/ewf_wizard.e b/tools/ise_wizard/src/ewf_wizard.e index 9d6f08a6..09bcdd21 100644 --- a/tools/ise_wizard/src/ewf_wizard.e +++ b/tools/ise_wizard/src/ewf_wizard.e @@ -119,15 +119,14 @@ feature -- Form tfn.add_extension ("ecf") copy_resource_template ("template.ecf", tfn.string) + create res.make (tfn.string, d.name) + create tfn.make_from_string (dn.string) tfn.set_file_name ("ewf") tfn.add_extension ("ini") copy_resource_template ("ewf.ini", tfn.string) - - create res.make (tfn.string, d.name) - create dn.make_from_string (pdn) dn.extend (pn) dn.extend ("src")